5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland/*
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * CDDL HEADER START
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland *
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * The contents of this file are subject to the terms of the
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * Common Development and Distribution License (the "License").
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * You may not use this file except in compliance with the License.
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland *
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * or http://www.opensolaris.org/os/licensing.
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * See the License for the specific language governing permissions
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * and limitations under the License.
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland *
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * When distributing Covered Code, include this CDDL HEADER in each
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * If applicable, add the following below this CDDL HEADER, with the
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * fields enclosed by brackets "[]" replaced with your own identifying
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * information: Portions Copyright [yyyy] [name of copyright owner]
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland *
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * CDDL HEADER END
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland */
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland/*
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland * Use is subject to license terms.
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland */
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland/* All Rights Reserved */
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland#include <stdio.h>
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland#include <sys/types.h>
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland#include <termio.h>
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland#include <sys/stermio.h>
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland#include <sys/termiox.h>
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland#include "stty.h"
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterlandconst struct speeds speeds[] = {
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "0", B0,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "50", B50,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "75", B75,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "110", B110,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "134", B134,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "134.5", B134,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "150", B150,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "200", B200,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "300", B300,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "600", B600,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "1200", B1200,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "1800", B1800,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "2400", B2400,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "4800", B4800,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "9600", B9600,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "19200", B19200,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "19.2", B19200,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "exta", EXTA,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "38400", B38400,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "38.4", B38400,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "extb", EXTB,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "57600", B57600,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "76800", B76800,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "115200", B115200,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "153600", B153600,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "230400", B230400,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "307200", B307200,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "460800", B460800,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland "921600", B921600,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland 0,
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland};
5c51f1241dbbdf2656d0e10011981411ed0c9673Moriah Waterland /* Control Modes */
const struct mds cmodes[] = {
"-parity", CS8, PARENB|CSIZE,
"-evenp", CS8, PARENB|CSIZE,
"-even", CS8, PARENB|CSIZE,
"-oddp", CS8, PARENB|PARODD|CSIZE,
"-odd", CS8, PARENB|PARODD|CSIZE,
"parity", PARENB|CS7, PARODD|CSIZE,
"evenp", PARENB|CS7, PARODD|CSIZE,
"even", PARENB|CS7, PARODD|CSIZE,
"oddp", PARENB|PARODD|CS7, CSIZE,
"odd", PARENB|PARODD|CS7, CSIZE,
"parenb", PARENB, 0,
"-parenb", 0, PARENB,
"parodd", PARODD, 0,
"-parodd", 0, PARODD,
"cs8", CS8, CSIZE,
"cs7", CS7, CSIZE,
"cs6", CS6, CSIZE,
"cs5", CS5, CSIZE,
"cstopb", CSTOPB, 0,
"-cstopb", 0, CSTOPB,
"hupcl", HUPCL, 0,
"hup", HUPCL, 0,
"-hupcl", 0, HUPCL,
"-hup", 0, HUPCL,
"clocal", CLOCAL, 0,
"-clocal", 0, CLOCAL,
"loblk", LOBLK, 0,
"-loblk", 0, LOBLK,
"cread", CREAD, 0,
"-cread", 0, CREAD,
"litout", CS8, (CSIZE|PARENB),
"-litout", (CS7|PARENB), CSIZE,
"pass8", CS8, (CSIZE|PARENB),
"-pass8", (CS7|PARENB), CSIZE,
"raw", CS8, (CSIZE|PARENB),
"-raw", (CS7|PARENB), CSIZE,
"cooked", (CS7|PARENB), CSIZE,
"sane", (CS7|PARENB|CREAD), (CSIZE|PARODD|CLOCAL),
0
};
const struct mds ncmodes[] = {
"parext", PAREXT, 0,
"-parext", 0, PAREXT,
"markp", (PARENB|PARODD|CS7|PAREXT), CSIZE,
"-markp", CS8, (PARENB|PARODD|CSIZE|PAREXT),
"spacep", (PARENB|CS7|PAREXT), PARODD|CSIZE,
"-spacep", CS8, (PARENB|CSIZE|PAREXT),
0
};
/* Input Modes */
const struct mds imodes[] = {
"ignbrk", IGNBRK, 0,
"-ignbrk", 0, IGNBRK,
"brkint", BRKINT, 0,
"-brkint", 0, BRKINT,
"ignpar", IGNPAR, 0,
"-ignpar", 0, IGNPAR,
"parmrk", PARMRK, 0,
"-parmrk", 0, PARMRK,
"inpck", INPCK, 0,
"-inpck", 0, INPCK,
"istrip", ISTRIP, 0,
"-istrip", 0, ISTRIP,
"inlcr", INLCR, 0,
"-inlcr", 0, INLCR,
"igncr", IGNCR, 0,
"-igncr", 0, IGNCR,
"icrnl", ICRNL, 0,
"-icrnl", 0, ICRNL,
"-nl", ICRNL, (INLCR|IGNCR),
"nl", 0, ICRNL,
"iuclc", IUCLC, 0,
"-iuclc", 0, IUCLC,
"lcase", IUCLC, 0,
"-lcase", 0, IUCLC,
"LCASE", IUCLC, 0,
"-LCASE", 0, IUCLC,
"ixon", IXON, 0,
"-ixon", 0, IXON,
"ixany", IXANY, 0,
"-ixany", 0, IXANY,
"decctlq", 0, IXANY,
"-decctlq", IXANY, 0,
"ixoff", IXOFF, 0,
"-ixoff", 0, IXOFF,
"tandem", IXOFF, 0,
"-tandem", 0, IXOFF,
"pass8", 0, ISTRIP,
"-pass8", ISTRIP, 0,
"raw", 0, -1,
"-raw", (BRKINT|IGNPAR|ISTRIP|ICRNL|IXON|IMAXBEL), 0,
"cooked", (BRKINT|IGNPAR|ISTRIP|ICRNL|IXON), 0,
"sane", (BRKINT|IGNPAR|ISTRIP|ICRNL|IXON|IMAXBEL),
(IGNBRK|PARMRK|INPCK|INLCR|IGNCR|IUCLC|IXOFF),
0
};
const struct mds nimodes[] = {
"imaxbel", IMAXBEL, 0,
"-imaxbel", 0, IMAXBEL,
0
};
/* Local Modes */
const struct mds lmodes[] = {
"isig", ISIG, 0,
"-isig", 0, ISIG,
"icanon", ICANON, 0,
"-icanon", 0, ICANON,
"cbreak", 0, ICANON,
"-cbreak", ICANON, 0,
"xcase", XCASE, 0,
"-xcase", 0, XCASE,
"lcase", XCASE, 0,
"-lcase", 0, XCASE,
"LCASE", XCASE, 0,
"-LCASE", 0, XCASE,
"echo", ECHO, 0,
"-echo", 0, ECHO,
"echoe", ECHOE, 0,
"-echoe", 0, ECHOE,
"crterase", ECHOE, 0,
"-crterase", 0, ECHOE,
"echok", ECHOK, 0,
"-echok", 0, ECHOK,
"lfkc", ECHOK, 0,
"-lfkc", 0, ECHOK,
"echonl", ECHONL, 0,
"-echonl", 0, ECHONL,
"noflsh", NOFLSH, 0,
"-noflsh", 0, NOFLSH,
"raw", 0, (ISIG|ICANON|XCASE|IEXTEN),
"-raw", (ISIG|ICANON|IEXTEN), 0,
"cooked", (ISIG|ICANON), 0,
"sane", (ISIG|ICANON|IEXTEN|ECHO|ECHOK|ECHOE|ECHOCTL|ECHOKE),
(XCASE|ECHONL|NOFLSH|STFLUSH|STWRAP|STAPPL),
"stflush", STFLUSH, 0,
"-stflush", 0, STFLUSH,
"stwrap", STWRAP, 0,
"-stwrap", 0, STWRAP,
"stappl", STAPPL, 0,
"-stappl", 0, STAPPL,
0,
};
const struct mds nlmodes[] = {
"tostop", TOSTOP, 0,
"-tostop", 0, TOSTOP,
"echoctl", ECHOCTL, 0,
"-echoctl", 0, ECHOCTL,
"ctlecho", ECHOCTL, 0,
"-ctlecho", 0, ECHOCTL,
"echoprt", ECHOPRT, 0,
"-echoprt", 0, ECHOPRT,
"prterase", ECHOPRT, 0,
"-prterase", 0, ECHOPRT,
"echoke", ECHOKE, 0,
"-echoke", 0, ECHOKE,
"crtkill", ECHOKE, 0,
"-crtkill", 0, ECHOKE,
"defecho", DEFECHO, 0,
"-defecho", 0, DEFECHO,
"flusho", FLUSHO, 0,
"-flusho", 0, FLUSHO,
"pendin", PENDIN, 0,
"-pendin", 0, PENDIN,
"iexten", IEXTEN, 0,
"-iexten", 0, IEXTEN,
0
};
/* Output Modes */
const struct mds omodes[] = {
"opost", OPOST, 0,
"-opost", 0, OPOST,
"olcuc", OLCUC, 0,
"-olcuc", 0, OLCUC,
"lcase", OLCUC, 0,
"-lcase", 0, OLCUC,
"LCASE", OLCUC, 0,
"-LCASE", 0, OLCUC,
"onlcr", ONLCR, 0,
"-onlcr", 0, ONLCR,
"-nl", ONLCR, (OCRNL|ONLRET),
"nl", 0, ONLCR,
"ocrnl", OCRNL, 0,
"-ocrnl", 0, OCRNL,
"onocr", ONOCR, 0,
"-onocr", 0, ONOCR,
"onlret", ONLRET, 0,
"-onlret", 0, ONLRET,
"fill", OFILL, OFDEL,
"-fill", 0, OFILL|OFDEL,
"nul-fill", OFILL, OFDEL,
"del-fill", OFILL|OFDEL, 0,
"ofill", OFILL, 0,
"-ofill", 0, OFILL,
"ofdel", OFDEL, 0,
"-ofdel", 0, OFDEL,
"cr0", CR0, CRDLY,
"cr1", CR1, CRDLY,
"cr2", CR2, CRDLY,
"cr3", CR3, CRDLY,
"tab0", TAB0, TABDLY,
"tabs", TAB0, TABDLY,
"tab1", TAB1, TABDLY,
"tab2", TAB2, TABDLY,
"tab3", TAB3, TABDLY,
"-tabs", TAB3, TABDLY,
"nl0", NL0, NLDLY,
"nl1", NL1, NLDLY,
"ff0", FF0, FFDLY,
"ff1", FF1, FFDLY,
"vt0", VT0, VTDLY,
"vt1", VT1, VTDLY,
"bs0", BS0, BSDLY,
"bs1", BS1, BSDLY,
"litout", 0, OPOST,
"-litout", OPOST, 0,
"raw", 0, OPOST,
"-raw", OPOST, 0,
"cooked", OPOST, 0,
"tty33", CR1, (CRDLY|TABDLY|NLDLY|FFDLY|VTDLY|BSDLY),
"tn300", CR1, (CRDLY|TABDLY|NLDLY|FFDLY|VTDLY|BSDLY),
"ti700", CR2, (CRDLY|TABDLY|NLDLY|FFDLY|VTDLY|BSDLY),
"vt05", NL1, (CRDLY|TABDLY|NLDLY|FFDLY|VTDLY|BSDLY),
"tek", FF1, (CRDLY|TABDLY|NLDLY|FFDLY|VTDLY|BSDLY),
"tty37", (FF1|VT1|CR2|TAB1|NL1), (NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY),
"sane", (OPOST|ONLCR), (OLCUC|OCRNL|ONOCR|ONLRET|OFILL|OFDEL|
NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY),
0,
};
const struct mds hmodes[] = {
"-rtsxoff", 0, RTSXOFF,
"rtsxoff", RTSXOFF, 0,
"-ctsxon", 0, CTSXON,
"ctsxon", CTSXON, 0,
"-dterxoff", 0, DTRXOFF,
"dterxoff", DTRXOFF, 0,
"-rlsdxon", 0, CDXON,
"rlsdxon", CDXON, 0,
"-isxoff", 0, ISXOFF,
"isxoff", ISXOFF, 0,
0,
};
const struct mds clkmodes[] = {
"xcibrg", XCIBRG, XMTCLK,
"xctset", XCTSET, XMTCLK,
"xcrset", XCRSET, XMTCLK,
"rcibrg", RCIBRG, RCVCLK,
"rctset", RCTSET, RCVCLK,
"rcrset", RCRSET, RCVCLK,
"tsetcoff", TSETCOFF, TSETCLK,
"tsetcrc", TSETCRBRG, TSETCLK,
"tsetcxc", TSETCTBRG, TSETCLK,
"rsetcoff", RSETCOFF, RSETCLK,
"rsetcrc", RSETCRBRG, RSETCLK,
"rsetcxc", RSETCTBRG, RSETCLK,
"async",
XCIBRG|RCIBRG|TSETCOFF|RSETCOFF, XMTCLK|RCVCLK|TSETCLK|RSETCLK,
0,
};