old-cross-binutils/gdb/gdbserver
Pedro Alves bd99dc8583 Non-stop mode support.
* server.h (non_stop): Declare.
	(gdb_client_data, handler_func): Declare.
	(delete_file_handler, add_file_handler, start_event_loop):
	Declare.
	(handle_serial_event, handle_target_event, push_event)
	(putpkt_notif): Declare.
	* target.h (enum resume_kind): New.
	(struct thread_resume): Replace `step' field by `kind' field.
	(TARGET_WNOHANG): Define.
	(struct target_ops) <wait>: Add `options' argument.
	<supports_non_stop, async, start_non_stop>: New fields.
	(target_supports_non_stop, target_async): New.
	(start_non_stop): Declare.
	(mywait): Add `options' argument.
	* target.c (mywait): Add `options' argument.  Print child exit
	notifications here.
	(start_non_stop): New.
	* server.c (non_stop, own_buf, mem_buf): New globals.
	(struct vstop_notif): New.
	(notif_queue): New global.
	(queue_stop_reply, push_event, discard_queued_stop_replies)
	(send_next_stop_reply): New.
	(start_inferior): Adjust to use resume_kind.  Adjust to mywait
	interface changes.
	(attach_inferior): In non-stop mode, don't wait for the target
	here.
	(handle_general_set): Handle QNonStop.
	(handle_query): When handling qC, return the current general
	thread, instead of the first thread of the list.
	(handle_query): If the backend supports non-stop mode, include
	QNonStop+ in the qSupported query response.
	(handle_v_cont): Adjust to use resume_kind.  Handle resume_stop
	and non-stop mode.
	(handle_v_attach, handle_v_run): Handle non-stop mode.
	(handle_v_stopped): New.
	(handle_v_requests): Report support for vCont;t.  Handle vStopped.
	(myresume): Adjust to use resume_kind.  Handle non-stop.
	(queue_stop_reply_callback): New.
	(handle_status): Handle non-stop mode.
	(main): Clear non_stop flag on reconnection.  Use the event-loop.
	Refactor serial protocol handling from here ...
	(process_serial_event): ... to this new function.  When GDB
	selects any thread, select one here.  In non-stop mode, wait until
	GDB acks all pending events before exiting.
	(handle_serial_event, handle_target_event): New.
	* remote-utils.c (remote_open): Install remote_desc in the event
	loop.
	(remote_close): Remove remote_desc from the event loop.
	(putpkt_binary): Rename to...
	(putpkt_binary_1): ... this.  Add `is_notic' argument.  Handle it.
	(putpkt_binary): New as wrapper around putpkt_binary_1.
	(putpkt_notif): New.
	(prepare_resume_reply): In non-stop mode, don't change the
	general_thread.
	* event-loop.c: New.
	* Makefile.in (OBJ): Add event-loop.o.
	(event-loop.o): New rule.

	* linux-low.h (pid_of): Moved here.
	(lwpid_of): New.
	(get_lwp_thread): Use lwpid_of.
	(struct lwp_info): Delete `lwpid' field.  Add `suspended' field.
	* linux-low.c (pid_of): Delete.
	(inferior_pid): Use lwpid_of.
	(linux_event_pipe): New.
	(target_is_async_p): New.
	(delete_lwp): New.
	(handle_extended_wait): Use lwpid_of.
	(add_lwp): Don't set lwpid field.
	(linux_attach_lwp): Adjust debug output.  Use lwpid_of.
	(linux_kill_one_lwp): If killing a running lwp, stop it first.
	Use lwpid_of.  Adjust to linux_wait_for_event interface changes.
	(linux_detach_one_lwp): If detaching from a running lwp, stop it
	first.  Adjust to linux_wait_for_event interface changes.  Use
	lwpid_of.
	(linux_detach): Don't delete the main lwp here.
	(linux_join): Use my_waitpid.  Avoid signal_pid.  Use lwpid_of.
	(status_pending_p): Don't consider explicitly suspended lwps.
	(linux_wait_for_lwp): Take an integer pid instead of a lwp_info
	pointer.  Add OPTIONS argument.  Change return type to int.  Use
	my_waitpid instead of sleeping.  Handle WNOHANG.  Use lwpid_of.
	(linux_wait_for_event): Take an integer pid instead of a lwp_info
	pointer.  Add status pointer argument.  Return a pid instead of a
	status.  Use lwpid_of.  Adjust to linux_wait_for_lwp interface
	changes.  In non-stop mode, don't switch to a random thread.
	(linux_wait): Rename to...
	(linux_wait_1): ... this.  Add target_options argument, and handle
	it.  Adjust to use resume_kind.  Use lwpid_of.  In non-stop mode,
	don't handle the continue thread.  Handle TARGET_WNOHANG.  Merge
	clean exit and signal exit code.  Don't stop all threads in
	non-stop mode.  In all-stop mode, only stop all threads when
	reporting a stop to GDB.  Handle explicit thread stop requests.
	(async_file_flush, async_file_mark): New.
	(linux_wait): New.
	(send_sigstop): Use lwpid_of.
	(wait_for_sigstop): Use lwpid_of.  Adjust to linux_wait_for_event
	interface changes.  In non-stop mode, don't switch to a random
	thread.
	(linux_resume_one_lwp): Use lwpid_of.
	(linux_continue_one_thread, linux_queue_one_thread): Merge into ...
	(linux_resume_one_thread): ... this.  Handle resume_stop.  In
	non-stop mode, don't look for pending flag in all threads.
	(resume_status_pending_p): Don't consider explicitly suspended
	threads.
	(my_waitpid): Reimplement.  Emulate __WALL.
	(linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
	Use lwpid_of.
	(sigchld_handler, linux_supports_non_stop, linux_async)
	(linux_start_non_stop): New.
	(linux_target_ops): Register linux_supports_non_stop, linux_async
	and linux_start_non_stop.
	(initialize_low): Install SIGCHLD handler.
	* thread-db.c (thread_db_create_event, find_one_thread)
	(thread_db_get_tls_address): Use lwpid_of.
	* win32-low.c (win32_detach): Adjust to use resume_kind.
	(win32_wait): Add `options' argument.
	* spu-low.c (spu_resume): Adjust to use resume_kind.
	(spu_wait): Add `options' argument.
2009-04-01 22:48:05 +00:00
..
acinclude.m4 2008-06-05 Vladimir Prus <vladimir@codesourcery.com> 2008-06-05 22:36:57 +00:00
aclocal.m4 * acinclude.m4: Correct quoting. 2005-09-17 23:14:37 +00:00
ChangeLog Non-stop mode support. 2009-04-01 22:48:05 +00:00
config.in * configure.ac: Check for memmem declaration. 2008-07-31 17:46:33 +00:00
configure * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
configure.ac * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
configure.srv gdb/ 2008-11-18 21:48:48 +00:00
event-loop.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
gdb_proc_service.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
gdbreplay.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
gdbserver.1 * linux-arm-low.c: 2005-12-23 18:11:55 +00:00
hostio-errno.c * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to 2009-03-13 07:57:47 +00:00
hostio.c * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to 2009-03-13 07:57:47 +00:00
i387-fp.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
i387-fp.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
inferiors.c * inferiors.c (find_inferior): Make it safe for the callback 2009-03-22 22:34:04 +00:00
linux-arm-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-cris-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-crisv32-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-i386-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-ia64-low.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
linux-low.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
linux-low.h Non-stop mode support. 2009-04-01 22:48:05 +00:00
linux-m32r-low.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
linux-m68k-low.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
linux-mips-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-ppc-low.c gdb/ 2009-03-25 21:15:04 +00:00
linux-s390-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-sh-low.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
linux-sparc-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-x86-64-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
linux-xtensa-low.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
Makefile.in Non-stop mode support. 2009-04-01 22:48:05 +00:00
mem-break.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
mem-break.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
proc-service.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
README * linux-low.c (linux_attach_lwp): Do not _exit after errors. 2008-01-30 00:51:50 +00:00
regcache.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00
regcache.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
remote-utils.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
server.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
server.h Non-stop mode support. 2009-04-01 22:48:05 +00:00
spu-low.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
target.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
target.h Non-stop mode support. 2009-04-01 22:48:05 +00:00
terminal.h Switch the license of all .c files to GPLv3. 2007-08-23 18:08:50 +00:00
thread-db.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
utils.c * regcache.c (new_register_cache): No need to check result of xcalloc. 2009-01-19 00:16:46 +00:00
win32-arm-low.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
win32-i386-low.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
win32-low.c Non-stop mode support. 2009-04-01 22:48:05 +00:00
win32-low.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
wincecompat.c Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
wincecompat.h Updated copyright notices for most files. 2009-01-03 05:58:08 +00:00
xtensa-xtregs.c * i387-fp.c, linux-arm-low.c, linux-cris-low.c, 2009-03-22 23:57:10 +00:00

		   README for GDBserver & GDBreplay
		    by Stu Grossman and Fred Fish

Introduction:

This is GDBserver, a remote server for Un*x-like systems.  It can be used to
control the execution of a program on a target system from a GDB on a different
host.  GDB and GDBserver communicate using the standard remote serial protocol
implemented in remote.c, and various *-stub.c files.  They communicate via
either a serial line or a TCP connection.

For more information about GDBserver, see the GDB manual.

Usage (server (target) side):

First, you need to have a copy of the program you want to debug put onto
the target system.  The program can be stripped to save space if needed, as
GDBserver doesn't care about symbols.  All symbol handling is taken care of by
the GDB running on the host system.

To use the server, you log on to the target system, and run the `gdbserver'
program.  You must tell it (a) how to communicate with GDB, (b) the name of
your program, and (c) its arguments.  The general syntax is:

	target> gdbserver COMM PROGRAM [ARGS ...]

For example, using a serial port, you might say:

	target> gdbserver /dev/com1 emacs foo.txt

This tells gdbserver to debug emacs with an argument of foo.txt, and to
communicate with GDB via /dev/com1.  Gdbserver now waits patiently for the
host GDB to communicate with it.

To use a TCP connection, you could say:

	target> gdbserver host:2345 emacs foo.txt

This says pretty much the same thing as the last example, except that we are
going to communicate with the host GDB via TCP.  The `host:2345' argument means
that we are expecting to see a TCP connection from `host' to local TCP port
2345.  (Currently, the `host' part is ignored.)  You can choose any number you
want for the port number as long as it does not conflict with any existing TCP
ports on the target system.  This same port number must be used in the host
GDBs `target remote' command, which will be described shortly.  Note that if
you chose a port number that conflicts with another service, gdbserver will
print an error message and exit.

On some targets, gdbserver can also attach to running programs.  This is
accomplished via the --attach argument.  The syntax is:

	target> gdbserver --attach COMM PID

PID is the process ID of a currently running process.  It isn't necessary
to point gdbserver at a binary for the running process.

Usage (host side):

You need an unstripped copy of the target program on your host system, since
GDB needs to examine it's symbol tables and such.  Start up GDB as you normally
would, with the target program as the first argument.  (You may need to use the
--baud option if the serial line is running at anything except 9600 baud.)
Ie: `gdb TARGET-PROG', or `gdb --baud BAUD TARGET-PROG'.  After that, the only
new command you need to know about is `target remote'.  It's argument is either
a device name (usually a serial device, like `/dev/ttyb'), or a HOST:PORT
descriptor.  For example:

	(gdb) target remote /dev/ttyb

communicates with the server via serial line /dev/ttyb, and:

	(gdb) target remote the-target:2345

communicates via a TCP connection to port 2345 on host `the-target', where
you previously started up gdbserver with the same port number.  Note that for
TCP connections, you must start up gdbserver prior to using the `target remote'
command, otherwise you may get an error that looks something like
`Connection refused'.

Building gdbserver:

The supported targets as of November 2006 are:
	arm-*-linux*
	crisv32-*-linux*
	cris-*-linux*
	i[34567]86-*-cygwin*
	i[34567]86-*-linux*
	i[34567]86-*-mingw*
	ia64-*-linux*
	m32r*-*-linux*
	m68*-*-linux*
	m68*-*-uclinux*
	mips*64*-*-linux*
	mips*-*-linux*
	powerpc[64]-*-linux*
	s390[x]-*-linux*
	sh-*-linux*
	spu*-*-*
	x86_64-*-linux*
	xscale*-*-linux*

Configuring gdbserver you should specify the same machine for host and
target (which are the machine that gdbserver is going to run on.  This
is not the same as the machine that gdb is going to run on; building
gdbserver automatically as part of building a whole tree of tools does
not currently work if cross-compilation is involved (we don't get the
right CC in the Makefile, to start with)).

Building gdbserver for your target is very straightforward.  If you build
GDB natively on a target which gdbserver supports, it will be built
automatically when you build GDB.  You can also build just gdbserver:

	% mkdir obj
	% cd obj
	% path-to-gdbserver-sources/configure
	% make

If you prefer to cross-compile to your target, then you can also build
gdbserver that way.  In a Bourne shell, for example:

	% export CC=your-cross-compiler
	% path-to-gdbserver-sources/configure your-target-name
	% make

Using GDBreplay:

A special hacked down version of gdbserver can be used to replay remote
debug log files created by gdb.  Before using the gdb "target" command to
initiate a remote debug session, use "set remotelogfile <filename>" to tell
gdb that you want to make a recording of the serial or tcp session.  Note
that when replaying the session, gdb communicates with gdbreplay via tcp,
regardless of whether the original session was via a serial link or tcp.

Once you are done with the remote debug session, start gdbreplay and
tell it the name of the log file and the host and port number that gdb
should connect to (typically the same as the host running gdb):

	$ gdbreplay logfile host:port

Then start gdb (preferably in a different screen or window) and use the
"target" command to connect to gdbreplay:

	(gdb) target remote host:port

Repeat the same sequence of user commands to gdb that you gave in the
original debug session.  Gdb should not be able to tell that it is talking
to gdbreplay rather than a real target, all other things being equal.  Note
that gdbreplay echos the command lines to stderr, as well as the contents of
the packets it sends and receives.  The last command echoed by gdbreplay is
the next command that needs to be typed to gdb to continue the session in
sync with the original session.