1 /* IBM has disclaimed copyright on this module. */
3 /***************************************************************/
8 /* #include <sys/ioctl.h> */
9 /* #include <sys/hft.h> */
11 /* int hftctl(fildes, request, arg ) */
12 /* int fildes, request; */
17 /* Does the following: */
18 /* 1. determines if fildes is pty */
19 /* does normal ioctl it is not */
20 /* 2. places fildes into raw mode */
21 /* 3. converts ioctl arguments to datastream */
22 /* 4. waits for 2 secs for acknowledgement before */
24 /* 5. places response in callers buffer ( just like */
26 /* 6. returns fildes to its original mode */
28 /* User of this program should review steps 1,4, and 3. */
29 /* hftctl makes no check on the request type. It must be */
30 /* a HFT ioctl that is supported remotely. */
31 /* This program will use the SIGALRM and alarm(2). Any */
32 /* Previous alarms are lost. */
34 /* Users of this program are free to modify it any way */
39 /* If ioctl fails, a value of -1 is returned and errno */
40 /* is set to indicate the error. */
42 /***************************************************************/
49 #include <sys/ioctl.h>
50 #include <sys/signal.h>
51 #include <sys/devinfo.h>
57 /* #include <sys/pty.h> */
64 static char SCCSid
[] = "com/gnuemacs/src,3.1,9021-90/05/03-5/3/90";
66 /*************** LOCAL DEFINES **********************************/
68 #define QDEV ((HFQPDEVCH<<8)|HFQPDEVCL)
69 #define QLOC ((HFQLOCCH<<8)|HFQLOCCL)
70 #define QPS ((HFQPRESCH<<8)|HFQPRESCL)
79 /*************** EXTERNAL / GLOBAL DATA AREA ********************/
86 static jmp_buf hftenv
;
87 static int is_ack_vtd
;
88 static SIGTYPE (*sav_alrm
) ();
89 static struct hfctlreq req
=
90 { 0x1b,'[','x',0,0,0,21,HFCTLREQCH
,HFCTLREQCL
};
91 static struct hfctlack ACK
=
92 { 0x1b,'[','x',0,0,0,21,HFCTLACKCH
,HFCTLACKCL
};
96 /*************** LOCAL MACROS ***********************************/
98 #define HFTYPE(p) ((p->hf_typehi<<8)|(p->hf_typelo))
100 #define BYTE4(p) ((p)[0]<<24 | (p)[1]<<16 | (p)[2]<<8 | (p)[3])
103 #define RD_BUF(f,p,l) \
105 if ((j = read((f),(p),(l))) < 0) \
106 if (errno != EINTR) return (-1); \
108 else { (l) -= j; (p) += j; }
110 /*************** function prototypes ***************************/
112 static GT_ACK (int fd
, int req
, char *buf
);
113 static WR_REQ (int fd
, int request
, int cmdlen
, char *cmd
, int resplen
);
114 static void hft_alrm(int sig
);
118 static void hft_alrm ();
121 /*************** HFTCTL FUNCTION *******************************/
123 hftctl (fd
, request
, arg
)
127 struct hfintro
*intro
;
128 struct hfquery
*query
;
134 int fd_flag
; /* fcntl flags */
136 struct hfintro
*cmd
; /* p.cmd - intro des. */
137 struct hfqphdevc
*ph
; /* p.ph - physical dev.*/
138 char *c
; /* p.c - char ptr */
139 } p
; /* general pointer */
140 int pty_new
; /* pty modes */
143 struct termios term_new
; /* terminal attributes */
144 struct termios term_old
;
145 struct devinfo devInfo
; /* defined in sys/devinfo.h */
148 if (ioctl (fd
, IOCINFO
, &devInfo
) == -1) return(-1);
150 if (devInfo
.devtype
!= DD_PSEU
) /* is it a pty? */
151 return (ioctl(fd
, request
, arg
)); /* no, do IOCTL */
153 /******* START PTY **************/
154 /** Pty found, possible HFT */
155 /** set new file des as raw */
157 /********************************/
159 /* Get current state of file */
160 /* descriptor & save */
161 if ((fd_flag
= fcntl (fd
, F_GETFL
, 0)) == -1) return (-1);
162 if (ioctl (fd
, TCGETS
, &term_old
) == -1) return (-1);
163 /* set terminal attr to raw */
164 /* and to delay on read */
165 pty_new
= pty_old
| REMOTE
;
166 memcpy (&term_new
, &term_old
, sizeof (term_new
));
167 term_new
.c_iflag
= 0;
168 term_new
.c_oflag
= 0;
169 term_new
.c_lflag
= 0;
170 /* term_new.c_line = 0; */
171 for (i
= 1; i
<= 5; i
++)
172 term_new
.c_cc
[i
] = 0;
173 term_new
.c_cc
[0] = -1;
174 ioctl (fd
, TCSETS
, &term_new
);
175 if (fcntl (fd
, F_SETFL
, fd_flag
& ~O_NDELAY
) == -1)
177 /* call spacific function */
178 if (request
== HFSKBD
)
179 retcode
= hfskbd (fd
, request
, arg
.c
);
180 else /* assume HFQUERY */
181 retcode
= hfqry (fd
, request
, arg
.c
);
183 fcntl (fd
, F_SETFL
, fd_flag
); /* reset terminal to original */
184 ioctl (fd
, TCSETS
, &term_old
);
187 return (retcode
); /* return error */
190 /*************** HFSKBD FUNCTION ******************************/
192 hfskbd (fd
, request
, arg
)
197 WR_REQ(fd
, request
, arg
->hf_buflen
, arg
->hf_bufp
,0);
198 return (GT_ACK(fd
, request
, arg
->hf_bufp
));
201 /*************** HFQUERY FUNCTION ******************************/
203 hfqry (fd
, request
, arg
)
208 WR_REQ(fd
, request
, arg
->hf_cmdlen
, arg
->hf_cmd
, arg
->hf_resplen
);
209 return (GT_ACK(fd
, request
, arg
->hf_resp
));
213 /*************** GT_ACK FUNCTION ******************************/
215 GT_ACK (fd
, req
, buf
)
221 int i
= sizeof (ack
);
225 struct hfctlack
*ack
;
228 is_ack_vtd
= 0; /* flag no ACT VTD yet */
230 if (setjmp (hftenv
)) /* set environment in case */
232 errno
= ENODEV
; /* if time out, set errno */
233 return (-1); /* flag error */
236 alarm(3); /* time out in 3 secs */
237 sav_alrm
= signal (SIGALRM
, hft_alrm
); /* prepare to catch time out */
240 while (! is_ack_vtd
) /* do until valid ACK VTD */
242 RD_BUF(fd
, p
.c
, i
); /* read until a ACK VTD is fill*/
244 if (! memcmp (&ack
, &ACK
, sizeof (HFINTROSZ
)) /* the ACK intro & */
245 && (ack
.hf_request
== req
)) /* is it the response we want ?*/
246 { /* yes, ACK VTD found */
247 is_ack_vtd
= 1; /* quickly, flag it */
248 break; /* get the %$%#@ out of here */
251 p
.ack
= &ack
; /* no, then skip 1st */
252 ++p
.c
; /* char and start over */
253 i
= sizeof (ack
) - 1; /* one less ESC to cry over */
255 while ((*p
.c
!= 0x1b) && i
) /* scan for next ESC */
256 { ++p
.c
; --i
; } /* if any */
258 (i
? memcpy (&ack
, p
.c
, i
) : 0); /* if any left over, then move */
259 p
.ack
= &ack
; /* ESC to front of ack struct */
260 p
.c
+= i
; /* skip over whats been read */
261 i
= sizeof (ack
) - i
; /* set whats left to be read */
262 } /***** TRY AGAIN */
264 alarm(0); /* ACK VTD received, reset alrm*/
265 signal (SIGALRM
, sav_alrm
); /* reset signal */
267 if (i
= ack
.hf_arg_len
) /* any data following ? */
269 RD_BUF(fd
,buf
,i
); /* read until it is received */
272 if (errno
= ack
.hf_retcode
) /* set errno based on returned */
273 return (-1); /* code, if 0, then no error */
275 return (0); /* if set, then error returned */
278 /*************** HFT_ALRM FUNCTION ******************************/
280 hft_alrm (sig
) /* Function hft_alrm - handle */
281 int sig
; /* alarm signal */
283 signal (SIGALRM
, sav_alrm
); /* reset to previous */
285 if (is_ack_vtd
) /* has ack vtd arrived ? */
286 return; /* yes, then continue */
287 else /* no, then return with error */
288 longjmp (hftenv
, -1);
292 /*********************************************************************/
294 /*** NOTE: Both the HFCTLREQ and the arg structure should be ***/
295 /*** sent in one io write operation. If terminal ***/
296 /*** emulators are in NODELAY mode then multiple writes ***/
297 /*** may cause bogus information to be read by the emulator ***/
298 /*** depending on the timing. ***/
300 /*********************************************************************/
303 WR_REQ (fd
, request
, cmdlen
, cmd
, resplen
)
312 struct hfctlreq
*req
;
316 req
.hf_request
= request
;
317 req
.hf_arg_len
= cmdlen
;
318 req
.hf_rsp_len
= resplen
;
320 if (cmdlen
) /* if arg structure to pass */
322 size
= sizeof (struct hfctlreq
) + cmdlen
;
323 if ((p
.c
= xmalloc(size
)) == NULL
) /* malloc one area */
326 memcpy (p
.c
, &req
, sizeof (req
)); /* copy CTL REQ struct */
327 memcpy (p
.c
+ sizeof (req
), cmd
, cmdlen
); /* copy arg struct */
331 p
.req
= &req
; /* otherwise use only CTL REQ */
335 /* write request to terminal */
336 if (write(fd
,p
.c
,size
) == -1) return (-1);
337 if (p
.req
!= &req
) /* free if allocated */