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
|
#define _XOPEN_SOURCE
#define _XOPEN_SOURCE_EXTENDED
#include <features.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#include <sys/ioctl.h>
#include "putty.h"
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
int pty_master_fd;
char **pty_argv;
static void pty_size(void);
/*
* Called to set up the pty.
*
* Returns an error message, or NULL on success.
*
* Also places the canonical host name into `realhost'. It must be
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
#define _XOPEN_SOURCE
#define _XOPEN_SOURCE_EXTENDED
#include <features.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
#include <termios.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
#include "putty.h"
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
int pty_master_fd;
static int pty_child_pid;
static sig_atomic_t pty_child_dead;
char **pty_argv;
int pty_child_is_dead(void)
{
return pty_child_dead;
}
static void pty_size(void);
static void sigchld_handler(int signum)
{
pid_t pid;
int status;
pid = waitpid(-1, &status, WNOHANG);
if (pid == pty_child_pid && (WIFEXITED(status) || WIFSIGNALED(status)))
pty_child_dead = TRUE;
}
/*
* Called to set up the pty.
*
* Returns an error message, or NULL on success.
*
* Also places the canonical host name into `realhost'. It must be
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
* If we're here, exec has gone badly foom.
*/
perror("exec");
exit(127);
} else {
close(slavefd);
}
return NULL;
}
/*
* Called to send data down the pty.
|
>
>
>
|
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/*
* If we're here, exec has gone badly foom.
*/
perror("exec");
exit(127);
} else {
close(slavefd);
pty_child_pid = pid;
pty_child_dead = FALSE;
signal(SIGCHLD, sigchld_handler);
}
return NULL;
}
/*
* Called to send data down the pty.
|