Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

140 lines
6.6KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1988-2020 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with the
  7. Invariant Sections being "Free Software" and "Free Software Needs
  8. Free Documentation", with the Front-Cover Texts being "A GNU Manual,"
  9. and with the Back-Cover Texts as in (a) below.
  10. (a) The FSF's Back-Cover Text is: "You are free to copy and modify
  11. this GNU Manual. Buying copies from GNU Press supports the FSF in
  12. developing GNU and promoting software freedom." -->
  13. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  14. <head>
  15. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  16. <title>Protocol Basics (Debugging with GDB)</title>
  17. <meta name="description" content="Protocol Basics (Debugging with GDB)">
  18. <meta name="keywords" content="Protocol Basics (Debugging with GDB)">
  19. <meta name="resource-type" content="document">
  20. <meta name="distribution" content="global">
  21. <meta name="Generator" content="makeinfo">
  22. <link href="index.html#Top" rel="start" title="Top">
  23. <link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index">
  24. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  25. <link href="File_002dI_002fO-Remote-Protocol-Extension.html#File_002dI_002fO-Remote-Protocol-Extension" rel="up" title="File-I/O Remote Protocol Extension">
  26. <link href="The-F-Request-Packet.html#The-F-Request-Packet" rel="next" title="The F Request Packet">
  27. <link href="File_002dI_002fO-Overview.html#File_002dI_002fO-Overview" rel="prev" title="File-I/O Overview">
  28. <style type="text/css">
  29. <!--
  30. a.summary-letter {text-decoration: none}
  31. blockquote.indentedblock {margin-right: 0em}
  32. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  33. blockquote.smallquotation {font-size: smaller}
  34. div.display {margin-left: 3.2em}
  35. div.example {margin-left: 3.2em}
  36. div.lisp {margin-left: 3.2em}
  37. div.smalldisplay {margin-left: 3.2em}
  38. div.smallexample {margin-left: 3.2em}
  39. div.smalllisp {margin-left: 3.2em}
  40. kbd {font-style: oblique}
  41. pre.display {font-family: inherit}
  42. pre.format {font-family: inherit}
  43. pre.menu-comment {font-family: serif}
  44. pre.menu-preformatted {font-family: serif}
  45. pre.smalldisplay {font-family: inherit; font-size: smaller}
  46. pre.smallexample {font-size: smaller}
  47. pre.smallformat {font-family: inherit; font-size: smaller}
  48. pre.smalllisp {font-size: smaller}
  49. span.nolinebreak {white-space: nowrap}
  50. span.roman {font-family: initial; font-weight: normal}
  51. span.sansserif {font-family: sans-serif; font-weight: normal}
  52. ul.no-bullet {list-style: none}
  53. -->
  54. </style>
  55. </head>
  56. <body lang="en">
  57. <a name="Protocol-Basics"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="The-F-Request-Packet.html#The-F-Request-Packet" accesskey="n" rel="next">The F Request Packet</a>, Previous: <a href="File_002dI_002fO-Overview.html#File_002dI_002fO-Overview" accesskey="p" rel="prev">File-I/O Overview</a>, Up: <a href="File_002dI_002fO-Remote-Protocol-Extension.html#File_002dI_002fO-Remote-Protocol-Extension" accesskey="u" rel="up">File-I/O Remote Protocol Extension</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
  61. </div>
  62. <hr>
  63. <a name="Protocol-Basics-1"></a>
  64. <h4 class="subsection">E.13.2 Protocol Basics</h4>
  65. <a name="index-protocol-basics_002c-file_002di_002fo"></a>
  66. <p>The File-I/O protocol uses the <code>F</code> packet as the request as well
  67. as reply packet. Since a File-I/O system call can only occur when
  68. <small>GDB</small> is waiting for a response from the continuing or stepping target,
  69. the File-I/O request is a reply that <small>GDB</small> has to expect as a result
  70. of a previous &lsquo;<samp>C</samp>&rsquo;, &lsquo;<samp>c</samp>&rsquo;, &lsquo;<samp>S</samp>&rsquo; or &lsquo;<samp>s</samp>&rsquo; packet.
  71. This <code>F</code> packet contains all information needed to allow <small>GDB</small>
  72. to call the appropriate host system call:
  73. </p>
  74. <ul>
  75. <li> A unique identifier for the requested system call.
  76. </li><li> All parameters to the system call. Pointers are given as addresses
  77. in the target memory address space. Pointers to strings are given as
  78. pointer/length pair. Numerical values are given as they are.
  79. Numerical control flags are given in a protocol-specific representation.
  80. </li></ul>
  81. <p>At this point, <small>GDB</small> has to perform the following actions.
  82. </p>
  83. <ul>
  84. <li> If the parameters include pointer values to data needed as input to a
  85. system call, <small>GDB</small> requests this data from the target with a
  86. standard <code>m</code> packet request. This additional communication has to be
  87. expected by the target implementation and is handled as any other <code>m</code>
  88. packet.
  89. </li><li> <small>GDB</small> translates all value from protocol representation to host
  90. representation as needed. Datatypes are coerced into the host types.
  91. </li><li> <small>GDB</small> calls the system call.
  92. </li><li> It then coerces datatypes back to protocol representation.
  93. </li><li> If the system call is expected to return data in buffer space specified
  94. by pointer parameters to the call, the data is transmitted to the
  95. target using a <code>M</code> or <code>X</code> packet. This packet has to be expected
  96. by the target implementation and is handled as any other <code>M</code> or <code>X</code>
  97. packet.
  98. </li></ul>
  99. <p>Eventually <small>GDB</small> replies with another <code>F</code> packet which contains all
  100. necessary information for the target to continue. This at least contains
  101. </p>
  102. <ul>
  103. <li> Return value.
  104. </li><li> <code>errno</code>, if has been changed by the system call.
  105. </li><li> &ldquo;Ctrl-C&rdquo; flag.
  106. </li></ul>
  107. <p>After having done the needed type and value coercion, the target continues
  108. the latest continue or step action.
  109. </p>
  110. <hr>
  111. <div class="header">
  112. <p>
  113. Next: <a href="The-F-Request-Packet.html#The-F-Request-Packet" accesskey="n" rel="next">The F Request Packet</a>, Previous: <a href="File_002dI_002fO-Overview.html#File_002dI_002fO-Overview" accesskey="p" rel="prev">File-I/O Overview</a>, Up: <a href="File_002dI_002fO-Remote-Protocol-Extension.html#File_002dI_002fO-Remote-Protocol-Extension" accesskey="u" rel="up">File-I/O Remote Protocol Extension</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
  114. </div>
  115. </body>
  116. </html>