xref: /titanic_51/usr/src/cmd/rexd/rex.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * rex - remote execution server definitions
24*7c478bd9Sstevel@tonic-gate  *
25*7c478bd9Sstevel@tonic-gate  * Copyright (c) 1985 Sun Microsystems, Inc.
26*7c478bd9Sstevel@tonic-gate  */
27*7c478bd9Sstevel@tonic-gate 
28*7c478bd9Sstevel@tonic-gate #ifndef _RPCSVC_REX_H
29*7c478bd9Sstevel@tonic-gate #define	_RPCSVC_REX_H
30*7c478bd9Sstevel@tonic-gate 
31*7c478bd9Sstevel@tonic-gate #ident	"%Z%%M%	%I%	%E% SMI"
32*7c478bd9Sstevel@tonic-gate /*	@(#)rex.h 1.7 89/10/02 Copyr 1985 SMI */
33*7c478bd9Sstevel@tonic-gate 
34*7c478bd9Sstevel@tonic-gate #define	REXPROG		100017
35*7c478bd9Sstevel@tonic-gate #define	REXPROC_NULL	0	/* no operation */
36*7c478bd9Sstevel@tonic-gate #define	REXPROC_START	1	/* start a command */
37*7c478bd9Sstevel@tonic-gate #define	REXPROC_WAIT	2	/* wait for a command to complete */
38*7c478bd9Sstevel@tonic-gate #define	REXPROC_MODES	3	/* send the tty modes */
39*7c478bd9Sstevel@tonic-gate #define	REXPROC_WINCH	4	/* signal a window change */
40*7c478bd9Sstevel@tonic-gate #define	REXPROC_SIGNAL	5	/* other signals */
41*7c478bd9Sstevel@tonic-gate 
42*7c478bd9Sstevel@tonic-gate #define	REXVERS	1
43*7c478bd9Sstevel@tonic-gate 
44*7c478bd9Sstevel@tonic-gate /* flags for rst_flags field */
45*7c478bd9Sstevel@tonic-gate #define	REX_INTERACTIVE		1	/* Interative mode */
46*7c478bd9Sstevel@tonic-gate 
47*7c478bd9Sstevel@tonic-gate struct rex_start {
48*7c478bd9Sstevel@tonic-gate 	/*
49*7c478bd9Sstevel@tonic-gate 	 * Structure passed as parameter to start function
50*7c478bd9Sstevel@tonic-gate 	 */
51*7c478bd9Sstevel@tonic-gate 	char	**rst_cmd;	/* list of command and args */
52*7c478bd9Sstevel@tonic-gate 	char	*rst_host;	/* working directory host name */
53*7c478bd9Sstevel@tonic-gate 	char	*rst_fsname;	/* working directory file system name */
54*7c478bd9Sstevel@tonic-gate 	char	*rst_dirwithin;	/* working directory within file system */
55*7c478bd9Sstevel@tonic-gate 	char	**rst_env;	/* list of environment */
56*7c478bd9Sstevel@tonic-gate 	u_short	rst_port0;	/* port for stdin */
57*7c478bd9Sstevel@tonic-gate 	u_short	rst_port1;	/* port for stdin */
58*7c478bd9Sstevel@tonic-gate 	u_short	rst_port2;	/* port for stdin */
59*7c478bd9Sstevel@tonic-gate 	u_long	rst_flags;	/* options - see #defines above */
60*7c478bd9Sstevel@tonic-gate };
61*7c478bd9Sstevel@tonic-gate 
62*7c478bd9Sstevel@tonic-gate bool_t xdr_rex_start();
63*7c478bd9Sstevel@tonic-gate 
64*7c478bd9Sstevel@tonic-gate struct rex_result {
65*7c478bd9Sstevel@tonic-gate 	/*
66*7c478bd9Sstevel@tonic-gate 	 * Structure returned from the start function
67*7c478bd9Sstevel@tonic-gate 	 */
68*7c478bd9Sstevel@tonic-gate 	int	rlt_stat;	/* integer status code */
69*7c478bd9Sstevel@tonic-gate 	char	*rlt_message;	/* string message for human consumption */
70*7c478bd9Sstevel@tonic-gate };
71*7c478bd9Sstevel@tonic-gate bool_t xdr_rex_result();
72*7c478bd9Sstevel@tonic-gate bool_t xdr_tchars();
73*7c478bd9Sstevel@tonic-gate bool_t xdr_ltchars();
74*7c478bd9Sstevel@tonic-gate bool_t xdr_sgttyb();
75*7c478bd9Sstevel@tonic-gate 
76*7c478bd9Sstevel@tonic-gate /*
77*7c478bd9Sstevel@tonic-gate  * sgttyb structure changed from BSD to SVR4. Since we send it over the
78*7c478bd9Sstevel@tonic-gate  * protocol, we stick to the old one for compatability
79*7c478bd9Sstevel@tonic-gate  */
80*7c478bd9Sstevel@tonic-gate struct	bsd_sgttyb {
81*7c478bd9Sstevel@tonic-gate 	char	sg_ispeed;		/* input speed */
82*7c478bd9Sstevel@tonic-gate 	char	sg_ospeed;		/* output speed */
83*7c478bd9Sstevel@tonic-gate 	char	sg_erase;		/* erase character */
84*7c478bd9Sstevel@tonic-gate 	char	sg_kill;		/* kill character */
85*7c478bd9Sstevel@tonic-gate 	short	sg_flags;		/* mode flags */
86*7c478bd9Sstevel@tonic-gate };
87*7c478bd9Sstevel@tonic-gate 
88*7c478bd9Sstevel@tonic-gate struct rex_ttymode {
89*7c478bd9Sstevel@tonic-gate 	/*
90*7c478bd9Sstevel@tonic-gate 	 * Structure sent to set-up the tty modes
91*7c478bd9Sstevel@tonic-gate 	 */
92*7c478bd9Sstevel@tonic-gate 	struct bsd_sgttyb basic; /* standard unix tty flags */
93*7c478bd9Sstevel@tonic-gate 	struct tchars more;	/* interrupt, kill characters, etc. */
94*7c478bd9Sstevel@tonic-gate 	struct ltchars yetmore;	/* special Bezerkeley characters */
95*7c478bd9Sstevel@tonic-gate 	u_long andmore;		/* and Berkeley modes */
96*7c478bd9Sstevel@tonic-gate };
97*7c478bd9Sstevel@tonic-gate 
98*7c478bd9Sstevel@tonic-gate bool_t xdr_rex_ttymode();
99*7c478bd9Sstevel@tonic-gate 
100*7c478bd9Sstevel@tonic-gate struct rex_ttysize {
101*7c478bd9Sstevel@tonic-gate 	int ts_lines;
102*7c478bd9Sstevel@tonic-gate 	int ts_cols;
103*7c478bd9Sstevel@tonic-gate };
104*7c478bd9Sstevel@tonic-gate typedef struct rex_ttysize rex_ttysize;
105*7c478bd9Sstevel@tonic-gate bool_t xdr_rex_ttysize();
106*7c478bd9Sstevel@tonic-gate 
107*7c478bd9Sstevel@tonic-gate 
108*7c478bd9Sstevel@tonic-gate #endif	/* _RPCSVC_REX_H */
109