]> granicus.if.org Git - strace/blobdiff - term.c
unwind: fix a bug in range updating of binary search
[strace] / term.c
diff --git a/term.c b/term.c
index 4cf10a925c3be890128d7ec7c1f155a1dfcb2c67..d1c9b6530a6d31d61d66a30214ede29f288a5979 100644 (file)
--- a/term.c
+++ b/term.c
  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- *     $Id$
  */
 
 #include "defs.h"
-
-#ifdef HAVE_TERMIO_H
-#include <termio.h>
-#endif /* HAVE_TERMIO_H */
-
-#include <termios.h>
-
+/*
+ * The C library's definition of struct termios might differ from
+ * the kernel one, and we need to use the kernel layout.
+ */
+#include <linux/termios.h>
 #ifdef HAVE_SYS_FILIO_H
-#include <sys/filio.h>
+# include <sys/filio.h>
 #endif
 
-static struct xlat tcxonc_options[] = {
-       { TCOOFF,       "TCOOFF"        },
-       { TCOON,        "TCOON"         },
-       { TCIOFF,       "TCIOFF"        },
-       { TCION,        "TCION"         },
-       { 0,            NULL            },
-};
-
-static struct xlat tcflsh_options[] = {
-       { TCIFLUSH,     "TCIFLUSH"      },
-       { TCOFLUSH,     "TCOFLUSH"      },
-       { TCIOFLUSH,    "TCIOFLUSH"     },
-       { 0,            NULL            },
-};
+#include "xlat/tcxonc_options.h"
 
-static struct xlat baud_options[] = {
-       { B0,           "B0"            },
-       { B50,          "B50"           },
-       { B75,          "B75"           },
-       { B110,         "B110"          },
-       { B134,         "B134"          },
-       { B150,         "B150"          },
-       { B200,         "B200"          },
-       { B300,         "B300"          },
-       { B600,         "B600"          },
-       { B1200,        "B1200"         },
-       { B1800,        "B1800"         },
-       { B2400,        "B2400"         },
-       { B4800,        "B4800"         },
-       { B9600,        "B9600"         },
-#ifdef B19200
-       { B19200,       "B19200"        },
-#endif
-#ifdef B38400
-       { B38400,       "B38400"        },
-#endif
-#ifdef B57600
-       { B57600,       "B57600"        },
-#endif
-#ifdef B115200
-       { B115200,      "B115200"       },
-#endif
-#ifdef B230400
-       { B230400,      "B230400"       },
-#endif
-#ifdef B460800
-       { B460800,      "B460800"       },
-#endif
-#ifdef B500000
-       { B500000,      "B500000"       },
-#endif
-#ifdef B576000
-       { B576000,      "B576000"       },
+#ifdef TCLFLSH
+#include "xlat/tcflsh_options.h"
 #endif
-#ifdef B921600
-       { B921600,      "B921600"       },
-#endif
-#ifdef B1000000
-       { B1000000,     "B1000000"      },
-#endif
-#ifdef B1152000
-       { B1152000,     "B1152000"      },
-#endif
-#ifdef B1500000
-       { B1500000,     "B1500000"      },
-#endif
-#ifdef B2000000
-       { B2000000,     "B2000000"      },
-#endif
-#ifdef B2500000
-       { B2500000,     "B2500000"      },
-#endif
-#ifdef B3000000
-       { B3000000,     "B3000000"      },
-#endif
-#ifdef B3500000
-       { B3500000,     "B3500000"      },
-#endif
-#ifdef B4000000
-       { B4000000,     "B4000000"      },
-#endif
-#ifdef EXTA
-       { EXTA,         "EXTA"          },
-#endif
-#ifdef EXTB
-       { EXTB,         "EXTB"          },
-#endif
-       { 0,            NULL            },
-};
-
-static struct xlat modem_flags[] = {
-#ifdef TIOCM_LE
-       { TIOCM_LE,     "TIOCM_LE",     },
-#endif
-#ifdef TIOCM_DTR
-       { TIOCM_DTR,    "TIOCM_DTR",    },
-#endif
-#ifdef TIOCM_RTS
-       { TIOCM_RTS,    "TIOCM_RTS",    },
-#endif
-#ifdef TIOCM_ST
-       { TIOCM_ST,     "TIOCM_ST",     },
-#endif
-#ifdef TIOCM_SR
-       { TIOCM_SR,     "TIOCM_SR",     },
-#endif
-#ifdef TIOCM_CTS
-       { TIOCM_CTS,    "TIOCM_CTS",    },
-#endif
-#ifdef TIOCM_CAR
-       { TIOCM_CAR,    "TIOCM_CAR",    },
-#endif
-#ifdef TIOCM_CD
-       { TIOCM_CD,     "TIOCM_CD",     },
-#endif
-#ifdef TIOCM_RNG
-       { TIOCM_RNG,    "TIOCM_RNG",    },
-#endif
-#ifdef TIOCM_RI
-       { TIOCM_RI,     "TIOCM_RI",     },
-#endif
-#ifdef TIOCM_DSR
-       { TIOCM_DSR,    "TIOCM_DSR",    },
-#endif
-       { 0,            NULL,           },
-};
 
+#include "xlat/baud_options.h"
+#include "xlat/modem_flags.h"
 
-int
-term_ioctl(tcp, code, arg)
-struct tcb *tcp;
-long code, arg;
+int term_ioctl(struct tcb *tcp, long code, long arg)
 {
        struct termios tios;
        struct termio tio;
@@ -197,7 +71,7 @@ long code, arg;
                if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
                        return 0;
                if (abbrev(tcp)) {
-                       tprintf(", {");
+                       tprints(", {");
                        printxval(baud_options, tios.c_cflag & CBAUD, "B???");
                        tprintf(" %sopost %sisig %sicanon %secho ...}",
                                (tios.c_oflag & OPOST) ? "" : "-",
@@ -210,9 +84,7 @@ long code, arg;
                        (long) tios.c_iflag, (long) tios.c_oflag);
                tprintf("c_cflags=%#lx, c_lflags=%#lx, ",
                        (long) tios.c_cflag, (long) tios.c_lflag);
-#ifndef SVR4
                tprintf("c_line=%u, ", tios.c_line);
-#endif
                if (!(tios.c_lflag & ICANON))
                        tprintf("c_cc[VMIN]=%d, c_cc[VTIME]=%d, ",
                                tios.c_cc[VMIN], tios.c_cc[VTIME]);
@@ -233,7 +105,7 @@ long code, arg;
                if (!verbose(tcp) || umove(tcp, arg, &tio) < 0)
                        return 0;
                if (abbrev(tcp)) {
-                       tprintf(", {");
+                       tprints(", {");
                        printxval(baud_options, tio.c_cflag & CBAUD, "B???");
                        tprintf(" %sopost %sisig %sicanon %secho ...}",
                                (tio.c_oflag & OPOST) ? "" : "-",
@@ -290,15 +162,23 @@ long code, arg;
 #endif
 
        /* ioctls with a direct decodable arg */
-
+#ifdef TCXONC
        case TCXONC:
-               tprintf(", ");
+               tprints(", ");
                printxval(tcxonc_options, arg, "TC???");
                return 1;
+#endif
+#ifdef TCLFLSH
        case TCFLSH:
-               tprintf(", ");
+               tprints(", ");
                printxval(tcflsh_options, arg, "TC???");
                return 1;
+#endif
+#ifdef TIOCSCTTY
+       case TIOCSCTTY:
+               tprintf(", %ld", arg);
+               return 1;
+#endif
 
        /* ioctls with an indirect parameter displayed as modem flags */
 
@@ -307,12 +187,11 @@ long code, arg;
        case TIOCMBIS:
        case TIOCMBIC:
        case TIOCMSET:
-               if (umove(tcp, arg, &arg) < 0)
+               if (umove(tcp, arg, &i) < 0)
                        return 0;
-               tprintf(", [");
-               if (!printflags(modem_flags, arg))
-                       tprintf("0");
-               tprintf("]");
+               tprints(", [");
+               printflags(modem_flags, i, "TIOCM_???");
+               tprints("]");
                return 1;
 #endif /* TIOCMGET */
 
@@ -384,32 +263,21 @@ long code, arg;
 #ifdef TIOCGPTN
        case TIOCGPTN:
 #endif
-               tprintf(", ");
-               printnum(tcp, arg, "%d");
+               tprints(", ");
+               printnum_int(tcp, arg, "%d");
                return 1;
 
-#if 0
-       /* ioctls with an indirect parameter displayed in hex */
-
-               tprintf(", ");
-               printnum(tcp, arg, "%#x");
-               return 1;
-#endif
-
        /* ioctls with an indirect parameter displayed as a char */
 
 #ifdef TIOCSTI
        case TIOCSTI:
 #endif
-               tprintf(", ");
+               tprints(", ");
                printstr(tcp, arg, 1);
                return 1;
 
        /* ioctls with no parameters */
 
-#ifdef TIOCSCTTY
-       case TIOCSCTTY:
-#endif
 #ifdef TIOCNOTTY
        case TIOCNOTTY:
 #endif
@@ -430,4 +298,3 @@ long code, arg;
                return 0;
        }
 }
-