-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathpttest.c
287 lines (225 loc) · 6.28 KB
/
pttest.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*------------------------------------------------------------------
*
* Module: pttest.c
*
* Purpose: Test for pseudo terminal.
*
* Input:
*
* Outputs:
*
* Description: The protocol name is an acronym for Keep it Simple Stupid.
* You would expect it to be simple but this caused a lot
* of effort on Linux. The problem is that writes to a pseudo
* terminal eventually block if nothing at the other end
* is removing the data. This causes the application to
* hang and stop receiving after a while.
*
* This is an attempt to demonstrate the problem in a small
* test case and, hopefully, find a solution.
*
*
* Instructions:
* First compile like this:
*
*
* Run it, noting the name of pseudo terminal,
* typically /dev/pts/1.
*
* In another window, type:
*
* cat /dev/pts/1
*
* This should run "forever" as long as something is
* reading from the slave side of the pseudo terminal.
*
* If nothing is removing the data, this runs for a while
* and then blocks on the write.
* For this particular application we just want to discard
* excess data if no one is listening.
*
*
* Failed experiments:
*
* Notice that ??? always returns 0 for amount of data
* in the queue.
* Define TEST1 to make the device non-blocking.
* Write fails entirely.
*
* Define TEST2 to use a different method.
* Also fails in the same way.
*
*
*---------------------------------------------------------------*/
#include <stdio.h>
#include <unistd.h>
#define __USE_XOPEN2KXSI 1
#define __USE_XOPEN 1
//#define __USE_POSIX 1
#include <stdlib.h>
#include <ctype.h>
#include <fcntl.h>
#include <termios.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <assert.h>
#include <string.h>
//#include "direwolf.h"
//#include "tq.h"
//#include "ax25_pad.h"
//#include "textcolor.h"
//#include "kiss.h"
//#include "xmit.h"
static MYFDTYPE pt_master_fd = -1; /* File descriptor for my end. */
static MYFDTYPE pt_slave_fd = -1; /* File descriptor for pseudo terminal */
/* for use by application. */
static int msg_number;
static int total_bytes;
/*-------------------------------------------------------------------
*
* Name: kiss_init
*
* Purpose: Set up a pseudo terminal acting as a virtual KISS TNC.
*
*
* Inputs: mc->nullmodem - name of device for our end of nullmodem.
*
* Outputs:
*
* Description: (1) Create a pseudo terminal for the client to use.
* (2) Start a new thread to listen for commands from client app
* so the main application doesn't block while we wait.
*
*
*--------------------------------------------------------------------*/
static int kiss_open_pt (void);
main (int argc, char *argv)
{
pt_master_fd = kiss_open_pt ();
printf ("msg total qcount\n");
msg_number = 0;
total_bytes = 0;
#endif
}
/*
* Returns fd for master side of pseudo terminal or MYFDERROR for error.
*/
static int kiss_open_pt (void)
{
int fd;
char *slave_device;
struct termios ts;
int e;
int flags;
fd = posix_openpt(O_RDWR|O_NOCTTY);
if (fd == -1
|| grantpt (fd) == -1
|| unlockpt (fd) == -1
|| (slave_device = ptsname (fd)) == NULL) {
text_color_set(DW_COLOR_ERROR);
printf ("ERROR - Could not create pseudo terminal.\n");
return (-1);
}
e = tcgetattr (fd, &ts);
if (e != 0) {
printf ("Can't get pseudo terminal attributes, err=%d\n", e);
perror ("pt tcgetattr");
}
cfmakeraw (&ts);
ts.c_cc[VMIN] = 1; /* wait for at least one character */
ts.c_cc[VTIME] = 0; /* no fancy timing. */
e = tcsetattr (fd, TCSANOW, &ts);
if (e != 0) {
text_color_set(DW_COLOR_ERROR);
printf ("Can't set pseudo terminal attributes, err=%d\n", e);
perror ("pt tcsetattr");
}
/*
* After running for a while on Linux, the write eventually
* blocks if no one is reading from the other side of
* the pseudo terminal. We get stuck on the kiss data
* write and reception stops.
*
* I tried using ioctl(,TIOCOUTQ,) to see how much was in
* the queue but that always returned zero. (Ubuntu)
*
* Let's try using non-blocking writes and see if we get
* the EWOULDBLOCK status instead of hanging.
*/
#if TEST1
// this is worse. all writes fail. errno = ? bad file descriptor
flags = fcntl(fd, F_GETFL, 0);
e = fcntl (fd, F_SETFL, flags | O_NONBLOCK);
if (e != 0) {
printf ("Can't set pseudo terminal to nonblocking, fcntl returns %d, errno = %d\n", e, errno);
perror ("pt fcntl");
}
#endif
#if TEST2
// same
flags = 1;
e = ioctl (fd, FIONBIO, &flags);
if (e != 0) {
printf ("Can't set pseudo terminal to nonblocking, ioctl returns %d, errno = %d\n", e, errno);
perror ("pt ioctl");
}
#endif
printf("Virtual KISS TNC is available on %s\n", slave_device);
// Sample code shows this. Why would we open it here?
// pt_slave_fd = open(slave_device, O_RDWR|O_NOCTTY);
return (fd);
}
/*-------------------------------------------------------------------
*
* Name: kiss_send_rec_packet
*
* Purpose: Send a received packet to the client app.
*
* Inputs: chan - Channel number where packet was received.
* 0 = first, 1 = second if any.
*
* pp - Identifier for packet object.
*
* fbuf - Address of raw received frame buffer.
* flen - Length of raw received frame.
* Not including the FCS.
*
*
* Description: Send message to client.
* We really don't care if anyone is listening or not.
* I don't even know if we can find out.
*
*
*--------------------------------------------------------------------*/
void kiss_send_rec_packet (void)
{
char kiss_buff[100];
int kiss_len;
int q_count = 123;
int j;
strcpy (kiss_buff, "The quick brown fox jumps over the lazy dog.\n");
kiss_len = strlen(kiss_buff);
if (pt_master_fd != MYFDERROR) {
int err;
msg_number++;
total_bytes += kiss_len;
//#if DEBUG
printf ("%3d %5d %5d\n", msg_number, total_bytes, q_count);
//#endif
err = write (pt_master_fd, kiss_buff, kiss_len);
if (err == -1 && errno == EWOULDBLOCK) {
//#if DEBUG
printf ("Discarding message because write would block.\n");
//#endif
}
else if (err != kiss_len)
{
printf ("\nError sending message on pseudo terminal. len=%d, write returned %d, errno = %d\n\n",
kiss_len, err, errno);
perror ("pt write");
}
}
//#endif
}
/* end pttest.c */