1*8785398fSHiroki Sato /*- 2*8785398fSHiroki Sato * Copyright (c) 2010, Oracle America, Inc. 375b63130SGarrett Wollman * 4*8785398fSHiroki Sato * Redistribution and use in source and binary forms, with or without 5*8785398fSHiroki Sato * modification, are permitted provided that the following conditions are 6*8785398fSHiroki Sato * met: 775b63130SGarrett Wollman * 8*8785398fSHiroki Sato * * Redistributions of source code must retain the above copyright 9*8785398fSHiroki Sato * notice, this list of conditions and the following disclaimer. 10*8785398fSHiroki Sato * * Redistributions in binary form must reproduce the above 11*8785398fSHiroki Sato * copyright notice, this list of conditions and the following 12*8785398fSHiroki Sato * disclaimer in the documentation and/or other materials 13*8785398fSHiroki Sato * provided with the distribution. 14*8785398fSHiroki Sato * * Neither the name of the "Oracle America, Inc." nor the names of its 15*8785398fSHiroki Sato * contributors may be used to endorse or promote products derived 16*8785398fSHiroki Sato * from this software without specific prior written permission. 1775b63130SGarrett Wollman * 18*8785398fSHiroki Sato * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19*8785398fSHiroki Sato * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20*8785398fSHiroki Sato * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 21*8785398fSHiroki Sato * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 22*8785398fSHiroki Sato * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 23*8785398fSHiroki Sato * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24*8785398fSHiroki Sato * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 25*8785398fSHiroki Sato * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26*8785398fSHiroki Sato * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 27*8785398fSHiroki Sato * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 28*8785398fSHiroki Sato * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29*8785398fSHiroki Sato * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 3075b63130SGarrett Wollman */ 3175b63130SGarrett Wollman 3275b63130SGarrett Wollman /* 3375b63130SGarrett Wollman * Remote execution (rex) protocol specification 3475b63130SGarrett Wollman */ 3575b63130SGarrett Wollman 3675b63130SGarrett Wollman const STRINGSIZE = 1024; 3775b63130SGarrett Wollman typedef string rexstring<1024>; 3875b63130SGarrett Wollman 3975b63130SGarrett Wollman /* 4075b63130SGarrett Wollman * values to pass to REXPROC_SIGNAL 4175b63130SGarrett Wollman */ 4275b63130SGarrett Wollman const SIGINT = 2; /* interrupt */ 4375b63130SGarrett Wollman 4475b63130SGarrett Wollman /* 4575b63130SGarrett Wollman * Values for rst_flags, below 4675b63130SGarrett Wollman */ 4775b63130SGarrett Wollman const REX_INTERACTIVE = 1; /* interactive mode */ 4875b63130SGarrett Wollman 4975b63130SGarrett Wollman struct rex_start { 5075b63130SGarrett Wollman rexstring rst_cmd<>; /* list of command and args */ 5175b63130SGarrett Wollman rexstring rst_host; /* working directory host name */ 5275b63130SGarrett Wollman rexstring rst_fsname; /* working directory file system name */ 5375b63130SGarrett Wollman rexstring rst_dirwithin;/* working directory within file system */ 5475b63130SGarrett Wollman rexstring rst_env<>; /* list of environment */ 5575b63130SGarrett Wollman unsigned int rst_port0; /* port for stdin */ 5675b63130SGarrett Wollman unsigned int rst_port1; /* port for stdout */ 5775b63130SGarrett Wollman unsigned int rst_port2; /* port for stderr */ 5875b63130SGarrett Wollman unsigned int rst_flags; /* options - see const above */ 5975b63130SGarrett Wollman }; 6075b63130SGarrett Wollman 6175b63130SGarrett Wollman struct rex_result { 6275b63130SGarrett Wollman int rlt_stat; /* integer status code */ 6375b63130SGarrett Wollman rexstring rlt_message; /* string message for human consumption */ 6475b63130SGarrett Wollman }; 6575b63130SGarrett Wollman 6675b63130SGarrett Wollman 6775b63130SGarrett Wollman struct sgttyb { 6875b63130SGarrett Wollman unsigned four; /* always equals 4 */ 6975b63130SGarrett Wollman opaque chars[4]; 7075b63130SGarrett Wollman /* chars[0] == input speed */ 7175b63130SGarrett Wollman /* chars[1] == output speed */ 7275b63130SGarrett Wollman /* chars[2] == kill character */ 7375b63130SGarrett Wollman /* chars[3] == erase character */ 7475b63130SGarrett Wollman unsigned flags; 7575b63130SGarrett Wollman }; 7675b63130SGarrett Wollman /* values for speeds above (baud rates) */ 7775b63130SGarrett Wollman const B0 = 0; 7875b63130SGarrett Wollman const B50 = 1; 7975b63130SGarrett Wollman const B75 = 2; 8075b63130SGarrett Wollman const B110 = 3; 8175b63130SGarrett Wollman const B134 = 4; 8275b63130SGarrett Wollman const B150 = 5; 8375b63130SGarrett Wollman const B200 = 6; 8475b63130SGarrett Wollman const B300 = 7; 8575b63130SGarrett Wollman const B600 = 8; 8675b63130SGarrett Wollman const B1200 = 9; 8775b63130SGarrett Wollman const B1800 = 10; 8875b63130SGarrett Wollman const B2400 = 11; 8975b63130SGarrett Wollman const B4800 = 12; 9075b63130SGarrett Wollman const B9600 = 13; 9175b63130SGarrett Wollman const B19200 = 14; 9275b63130SGarrett Wollman const B38400 = 15; 9375b63130SGarrett Wollman 9475b63130SGarrett Wollman /* values for flags above */ 9575b63130SGarrett Wollman const TANDEM = 0x00000001; /* send stopc on out q full */ 9675b63130SGarrett Wollman const CBREAK = 0x00000002; /* half-cooked mode */ 9775b63130SGarrett Wollman const LCASE = 0x00000004; /* simulate lower case */ 9875b63130SGarrett Wollman const ECHO = 0x00000008; /* echo input */ 9975b63130SGarrett Wollman const CRMOD = 0x00000010; /* map \r to \r\n on output */ 10075b63130SGarrett Wollman const RAW = 0x00000020; /* no i/o processing */ 10175b63130SGarrett Wollman const ODDP = 0x00000040; /* get/send odd parity */ 10275b63130SGarrett Wollman const EVENP = 0x00000080; /* get/send even parity */ 10375b63130SGarrett Wollman const ANYP = 0x000000c0; /* get any parity/send none */ 10475b63130SGarrett Wollman const NLDELAY = 0x00000300; /* \n delay */ 10575b63130SGarrett Wollman const NL0 = 0x00000000; 10675b63130SGarrett Wollman const NL1 = 0x00000100; /* tty 37 */ 10775b63130SGarrett Wollman const NL2 = 0x00000200; /* vt05 */ 10875b63130SGarrett Wollman const NL3 = 0x00000300; 10975b63130SGarrett Wollman const TBDELAY = 0x00000c00; /* horizontal tab delay */ 11075b63130SGarrett Wollman const TAB0 = 0x00000000; 11175b63130SGarrett Wollman const TAB1 = 0x00000400; /* tty 37 */ 11275b63130SGarrett Wollman const TAB2 = 0x00000800; 11375b63130SGarrett Wollman const XTABS = 0x00000c00; /* expand tabs on output */ 11475b63130SGarrett Wollman const CRDELAY = 0x00003000; /* \r delay */ 11575b63130SGarrett Wollman const CR0 = 0x00000000; 11675b63130SGarrett Wollman const CR1 = 0x00001000; /* tn 300 */ 11775b63130SGarrett Wollman const CR2 = 0x00002000; /* tty 37 */ 11875b63130SGarrett Wollman const CR3 = 0x00003000; /* concept 100 */ 11975b63130SGarrett Wollman const VTDELAY = 0x00004000; /* vertical tab delay */ 12075b63130SGarrett Wollman const FF0 = 0x00000000; 12175b63130SGarrett Wollman const FF1 = 0x00004000; /* tty 37 */ 12275b63130SGarrett Wollman const BSDELAY = 0x00008000; /* \b delay */ 12375b63130SGarrett Wollman const BS0 = 0x00000000; 12475b63130SGarrett Wollman const BS1 = 0x00008000; 12575b63130SGarrett Wollman const CRTBS = 0x00010000; /* do backspacing for crt */ 12675b63130SGarrett Wollman const PRTERA = 0x00020000; /* \ ... / erase */ 12775b63130SGarrett Wollman const CRTERA = 0x00040000; /* " \b " to wipe out char */ 12875b63130SGarrett Wollman const TILDE = 0x00080000; /* hazeltine tilde kludge */ 12975b63130SGarrett Wollman const MDMBUF = 0x00100000; /* start/stop output on carrier intr */ 13075b63130SGarrett Wollman const LITOUT = 0x00200000; /* literal output */ 13175b63130SGarrett Wollman const TOSTOP = 0x00400000; /* SIGTTOU on background output */ 13275b63130SGarrett Wollman const FLUSHO = 0x00800000; /* flush output to terminal */ 13375b63130SGarrett Wollman const NOHANG = 0x01000000; /* no SIGHUP on carrier drop */ 13475b63130SGarrett Wollman const L001000 = 0x02000000; 13575b63130SGarrett Wollman const CRTKIL = 0x04000000; /* kill line with " \b " */ 13675b63130SGarrett Wollman const PASS8 = 0x08000000; 13775b63130SGarrett Wollman const CTLECH = 0x10000000; /* echo control chars as ^X */ 13875b63130SGarrett Wollman const PENDIN = 0x20000000; /* tp->t_rawq needs reread */ 13975b63130SGarrett Wollman const DECCTQ = 0x40000000; /* only ^Q starts after ^S */ 14075b63130SGarrett Wollman const NOFLSH = 0x80000000; /* no output flush on signal */ 14175b63130SGarrett Wollman 14275b63130SGarrett Wollman struct tchars { 14375b63130SGarrett Wollman unsigned six; /* always equals 6 */ 14475b63130SGarrett Wollman opaque chars[6]; 14575b63130SGarrett Wollman /* chars[0] == interrupt char */ 14675b63130SGarrett Wollman /* chars[1] == quit char */ 14775b63130SGarrett Wollman /* chars[2] == start output char */ 14875b63130SGarrett Wollman /* chars[3] == stop output char */ 14975b63130SGarrett Wollman /* chars[4] == end-of-file char */ 15075b63130SGarrett Wollman /* chars[5] == input delimeter (like nl) */ 15175b63130SGarrett Wollman }; 15275b63130SGarrett Wollman 15375b63130SGarrett Wollman struct ltchars { 15475b63130SGarrett Wollman unsigned six; /* always equals 6 */ 15575b63130SGarrett Wollman opaque chars[6]; 15675b63130SGarrett Wollman /* chars[0] == stop process signal */ 15775b63130SGarrett Wollman /* chars[1] == delayed stop process signal */ 15875b63130SGarrett Wollman /* chars[2] == reprint line */ 15975b63130SGarrett Wollman /* chars[3] == flush output */ 16075b63130SGarrett Wollman /* chars[4] == word erase */ 16175b63130SGarrett Wollman /* chars[5] == literal next character */ 16275b63130SGarrett Wollman unsigned mode; 16375b63130SGarrett Wollman }; 16475b63130SGarrett Wollman 16575b63130SGarrett Wollman struct rex_ttysize { 16675b63130SGarrett Wollman int ts_lines; 16775b63130SGarrett Wollman int ts_cols; 16875b63130SGarrett Wollman }; 16975b63130SGarrett Wollman 17075b63130SGarrett Wollman struct rex_ttymode { 17175b63130SGarrett Wollman sgttyb basic; /* standard unix tty flags */ 17275b63130SGarrett Wollman tchars more; /* interrupt, kill characters, etc. */ 17375b63130SGarrett Wollman ltchars yetmore; /* special Berkeley characters */ 17475b63130SGarrett Wollman unsigned andmore; /* and Berkeley modes */ 17575b63130SGarrett Wollman }; 17675b63130SGarrett Wollman 17775b63130SGarrett Wollman /* values for andmore above */ 17875b63130SGarrett Wollman const LCRTBS = 0x0001; /* do backspacing for crt */ 17975b63130SGarrett Wollman const LPRTERA = 0x0002; /* \ ... / erase */ 18075b63130SGarrett Wollman const LCRTERA = 0x0004; /* " \b " to wipe out char */ 18175b63130SGarrett Wollman const LTILDE = 0x0008; /* hazeltine tilde kludge */ 18275b63130SGarrett Wollman const LMDMBUF = 0x0010; /* start/stop output on carrier intr */ 18375b63130SGarrett Wollman const LLITOUT = 0x0020; /* literal output */ 18475b63130SGarrett Wollman const LTOSTOP = 0x0040; /* SIGTTOU on background output */ 18575b63130SGarrett Wollman const LFLUSHO = 0x0080; /* flush output to terminal */ 18675b63130SGarrett Wollman const LNOHANG = 0x0100; /* no SIGHUP on carrier drop */ 18775b63130SGarrett Wollman const LL001000 = 0x0200; 18875b63130SGarrett Wollman const LCRTKIL = 0x0400; /* kill line with " \b " */ 18975b63130SGarrett Wollman const LPASS8 = 0x0800; 19075b63130SGarrett Wollman const LCTLECH = 0x1000; /* echo control chars as ^X */ 19175b63130SGarrett Wollman const LPENDIN = 0x2000; /* needs reread */ 19275b63130SGarrett Wollman const LDECCTQ = 0x4000; /* only ^Q starts after ^S */ 19375b63130SGarrett Wollman const LNOFLSH = 0x8000; /* no output flush on signal */ 19475b63130SGarrett Wollman 19575b63130SGarrett Wollman program REXPROG { 19675b63130SGarrett Wollman version REXVERS { 19775b63130SGarrett Wollman 19875b63130SGarrett Wollman /* 19975b63130SGarrett Wollman * Start remote execution 20075b63130SGarrett Wollman */ 20175b63130SGarrett Wollman rex_result 20275b63130SGarrett Wollman REXPROC_START(rex_start) = 1; 20375b63130SGarrett Wollman 20475b63130SGarrett Wollman /* 20575b63130SGarrett Wollman * Wait for remote execution to terminate 20675b63130SGarrett Wollman */ 20775b63130SGarrett Wollman rex_result 20875b63130SGarrett Wollman REXPROC_WAIT(void) = 2; 20975b63130SGarrett Wollman 21075b63130SGarrett Wollman /* 21175b63130SGarrett Wollman * Send tty modes 21275b63130SGarrett Wollman */ 21375b63130SGarrett Wollman void 21475b63130SGarrett Wollman REXPROC_MODES(rex_ttymode) = 3; 21575b63130SGarrett Wollman 21675b63130SGarrett Wollman /* 21775b63130SGarrett Wollman * Send window size change 21875b63130SGarrett Wollman */ 21975b63130SGarrett Wollman void 22075b63130SGarrett Wollman REXPROC_WINCH(rex_ttysize) = 4; 22175b63130SGarrett Wollman 22275b63130SGarrett Wollman /* 22375b63130SGarrett Wollman * Send other signal 22475b63130SGarrett Wollman */ 22575b63130SGarrett Wollman void 22675b63130SGarrett Wollman REXPROC_SIGNAL(int) = 5; 22775b63130SGarrett Wollman } = 1; 22875b63130SGarrett Wollman } = 100017; 229