Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/ttssh2/ttxssh/ttxssh.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2831 - (hide annotations) (download) (as text)
Sat Jul 9 05:16:06 2005 UTC (18 years, 9 months ago) by yutakakn
Original Path: ttssh2/trunk/ttxssh/ttxssh.h
File MIME type: text/x-chdr
File size: 9491 byte(s)
OpenSSL 0.9.8でビルドできるようにした。

1 yutakakn 2728 /*
2     Copyright (c) 1998-2001, Robert O'Callahan
3     All rights reserved.
4    
5     Redistribution and use in source and binary forms, with or without modification,
6     are permitted provided that the following conditions are met:
7    
8     Redistributions of source code must retain the above copyright notice, this list of
9     conditions and the following disclaimer.
10    
11     Redistributions in binary form must reproduce the above copyright notice, this list
12     of conditions and the following disclaimer in the documentation and/or other materials
13     provided with the distribution.
14    
15     The name of Robert O'Callahan may not be used to endorse or promote products derived from
16     this software without specific prior written permission.
17    
18     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
19     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21     THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22     EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23     SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26     SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27     */
28    
29     /*
30     This code is copyright (C) 1998-1999 Robert O'Callahan.
31     See LICENSE.TXT for the license.
32     */
33    
34     #ifndef __TTXSSH_H
35     #define __TTXSSH_H
36    
37     #pragma warning(3 : 4035)
38    
39     #ifdef INET6
40     #include <winsock2.h>
41     #include <ws2tcpip.h>
42     /* actual body of in6addr_any and in6addr_loopback is disappeared?? */
43     #undef IN6_IS_ADDR_LOOPBACK
44     #define IN6_IS_ADDR_LOOPBACK(a) \
45     ((*(unsigned int *)(&(a)->s6_addr[0]) == 0) && \
46     (*(unsigned int *)(&(a)->s6_addr[4]) == 0) && \
47     (*(unsigned int *)(&(a)->s6_addr[8]) == 0) && \
48     (*(unsigned int *)(&(a)->s6_addr[12]) == ntohl(1)))
49     /* work around for MS Platform SDK Oct 2000 */
50     #include <malloc.h> /* prevent of conflict stdlib.h */
51     #endif /* INET6 */
52     #include <stdlib.h>
53     #include <crtdbg.h>
54    
55    
56     typedef struct _TInstVar FAR * PTInstVar;
57    
58     #include "util.h"
59     #include "pkt.h"
60     #include "ssh.h"
61     #include "auth.h"
62     #include "crypt.h"
63     #include "hosts.h"
64     #include "fwd.h"
65    
66     #include <openssl/dh.h>
67     #include <openssl/evp.h>
68     #include "buffer.h"
69    
70 yutakakn 2831 /* tttypes.h �����`���������� EM �}�N���� openssl/rsa.h (OpenSSL 0.9.8)�������v���g�^�C�v������
71     * �������������d�����������������A�r���h�G���[�������B���L3�w�b�_��include���u�����L�����������B
72     * (2005.7.9 yutaka)
73     */
74     #include "teraterm.h"
75     #include "tttypes.h"
76     #include "ttplugin.h"
77    
78 yutakakn 2728 HANDLE hInst; /* Instance handle of TTXSSH.DLL */
79    
80     #define ID_ABOUTMENU 62501
81     #define ID_SSHAUTH 62502
82     #define ID_SSHSETUPMENU 62503
83     #define ID_SSHUNKNOWNHOST 62504
84     #define ID_SSHDIFFERENTHOST 62505
85     #define ID_SSHAUTHSETUPMENU 62506
86     #define ID_SSHASYNCMESSAGEBOX 62507
87     #define ID_SSHFWDSETUPMENU 62508
88 yutakakn 2816 #define ID_SSHKEYGENMENU 62509
89 yutakakn 2728
90     /*
91     These are the fields that WOULD go in Teraterm's 'ts' structure, if
92     we could put them there.
93     */
94     typedef struct _TS_SSH {
95     BOOL Enabled;
96     int CompressionLevel; /* 0 = NONE, else 1-9 */
97     char DefaultUserName[256];
98    
99     /* this next option is a string of digits. Each digit represents a
100     cipher. The first digit is the most preferred cipher, and so on.
101     The digit SSH_CIPHER_NONE signifies that any ciphers after it are
102     disabled. */
103     char CipherOrder[16];
104    
105     char KnownHostsFiles[2048];
106     int DefaultAuthMethod;
107     char DefaultRhostsLocalUserName[256];
108     char DefaultRhostsHostPrivateKeyFile[1024];
109     char DefaultRSAPrivateKeyFile[1024];
110    
111     char DefaultForwarding[2048];
112     BOOL TryDefaultAuth;
113    
114     int LogLevel; /* 0 = NONE, 100 = Verbose */
115     int WriteBufferSize;
116     int LocalForwardingIdentityCheck;
117    
118     int ssh_protocol_version; // SSH version (2004.10.11 yutaka)
119 yutakakn 2748 int ssh_heartbeat_overtime; // SSH heartbeat(keepalive) (2004.12.11 yutaka)
120 yutakakn 2782 int ssh2_keyboard_interactive; // SSH2 keyboard-interactive (2005.1.23 yutaka)
121 yutakakn 2728 } TS_SSH;
122    
123     typedef struct _TInstVar {
124     PTTSet ts;
125     PComVar cv;
126    
127     /* shared memory for settings across instances. Basically it's
128     a cache for the INI file.*/
129     TS_SSH FAR * ts_SSH;
130    
131     int fatal_error;
132     int showing_err;
133     char FAR * err_msg;
134    
135     Tconnect Pconnect;
136     Trecv Precv;
137     Tsend Psend;
138     TWSAAsyncSelect PWSAAsyncSelect;
139     TWSAGetLastError PWSAGetLastError;
140    
141     PReadIniFile ReadIniFile;
142     PWriteIniFile WriteIniFile;
143     PParseParam ParseParam;
144    
145     SOCKET socket;
146     HWND NotificationWindow;
147     unsigned int notification_msg;
148     long notification_events;
149     HICON OldSmallIcon;
150     HICON OldLargeIcon;
151    
152     BOOL hostdlg_activated;
153     BOOL hostdlg_Enabled;
154    
155     int protocol_major;
156     int protocol_minor;
157    
158     PKTState pkt_state;
159     SSHState ssh_state;
160     AUTHState auth_state;
161     CRYPTState crypt_state;
162     HOSTSState hosts_state;
163     FWDState fwd_state;
164    
165     /* The settings applied to the current session. The user may change
166     the settings but usually we don't want that to affect the session
167     in progress (race conditions). So user setup changes usually
168     modify the 'settings' field below. */
169     TS_SSH session_settings;
170    
171     /* our copy of the global settings. This is synced up with the shared
172     memory only when we do a ReadIniFile or WriteIniFile
173     (i.e. the user loads or saves setup) */
174     TS_SSH settings;
175    
176     // SSH2
177     DH *kexdh;
178     char server_version_string[128];
179     char client_version_string[128];
180     buffer_t *my_kex;
181     buffer_t *peer_kex;
182     enum kex_exchange kex_type; // KEX algorithm
183     enum hostkey_type hostkey_type;
184     SSHCipher ctos_cipher;
185     SSHCipher stoc_cipher;
186 yutakakn 2757 enum hmac_type ctos_hmac;
187     enum hmac_type stoc_hmac;
188 yutakakn 2728 int we_need;
189     int key_done;
190     int rekeying;
191     char *session_id;
192     int session_id_len;
193     Newkeys ssh2_keys[MODE_MAX];
194     EVP_CIPHER_CTX evpcip[MODE_MAX];
195     int userauth_success;
196 yutakakn 2809 int shell_id;
197     /*int remote_id;*/
198 yutakakn 2728 int session_nego_status;
199 yutakakn 2809 /*
200 yutakakn 2728 unsigned int local_window;
201     unsigned int local_window_max;
202     unsigned int local_consumed;
203     unsigned int local_maxpacket;
204     unsigned int remote_window;
205     unsigned int remote_maxpacket;
206 yutakakn 2809 */
207 yutakakn 2728 int client_key_bits;
208     int server_key_bits;
209     int kexgex_min;
210     int kexgex_bits;
211     int kexgex_max;
212 yutakakn 2739 int ssh2_autologin;
213 yutakakn 2784 SSHAuthMethod ssh2_authmethod;
214 yutakakn 2739 char ssh2_username[MAX_PATH];
215     char ssh2_password[MAX_PATH];
216 yutakakn 2784 char ssh2_keyfile[MAX_PATH];
217 yutakakn 2748 time_t ssh_heartbeat_tick;
218 yutakakn 2766 HANDLE ssh_heartbeat_thread;
219 yutakakn 2782 int keyboard_interactive_done;
220 yutakakn 2800 int keyboard_interactive_password_input;
221 yutakakn 2798 int userauth_retry_count;
222 yutakakn 2728
223     } TInstVar;
224    
225     #define LOG_LEVEL_FATAL 5
226     #define LOG_LEVEL_ERROR 10
227     #define LOG_LEVEL_URGENT 20
228     #define LOG_LEVEL_WARNING 30
229     #define LOG_LEVEL_VERBOSE 100
230    
231     #define SSHv1(pvar) ((pvar)->protocol_major == 1)
232     #define SSHv2(pvar) ((pvar)->protocol_major == 2)
233    
234     void notify_established_secure_connection(PTInstVar pvar);
235     void notify_closed_connection(PTInstVar pvar);
236     void notify_nonfatal_error(PTInstVar pvar, char FAR * msg);
237     void notify_fatal_error(PTInstVar pvar, char FAR * msg);
238     void notify_verbose_message(PTInstVar pvar, char FAR * msg, int level);
239    
240     void get_teraterm_dir_relative_name(char FAR * buf, int bufsize, char FAR * basename);
241     int copy_teraterm_dir_relative_path(char FAR * dest, int destsize, char FAR * basename);
242 yutakakn 2793 void get_file_version(char *exefile, int *major, int *minor, int *release, int *build);
243 yutakakn 2728
244     #endif
245 yutakakn 2739
246     /*
247     * $Log: not supported by cvs2svn $
248 yutakakn 2831 * Revision 1.12 2005/04/23 17:26:57 yutakakn
249     * �L�[�����_�C�A���O�������B
250     *
251 yutakakn 2816 * Revision 1.11 2005/04/03 14:39:48 yutakakn
252     * SSH2 channel lookup�@�\�������i�|�[�g�t�H���[�f�B���O�������j�B
253     * TTSSH 2.10����������log dump�@�\���������ADH������������buffer free��
254     * �A�v���P�[�V�������������������o�O���C���B
255     *
256 yutakakn 2809 * Revision 1.10 2005/03/12 15:07:34 yutakakn
257     * SSH2 keyboard-interactive�F����TIS�_�C�A���O�����������B
258     *
259 yutakakn 2800 * Revision 1.9 2005/03/10 13:40:39 yutakakn
260     * ���������O�C���������s���������������ASSH2_MSG_SERVICE_REQUEST�����M��
261     * �����������������BOpenSSH�����x���������ATru64 UNIX�����T�[�o�G���[�������������������B
262     *
263 yutakakn 2798 * Revision 1.8 2005/03/03 13:28:23 yutakakn
264     * �N���C�A���g��SSH�o�[�W������ ttxssh.dll �������������A�T�[�o�����������������B
265     *
266 yutakakn 2793 * Revision 1.7 2005/01/27 13:30:33 yutakakn
267     * ���J���F���������O�C�����T�|�[�g�B
268     * /auth=publickey, /keyfile �I�v�V�������V�K���������B
269     * �����A�����������������T�|�[�g�B
270     *
271 yutakakn 2784 * Revision 1.6 2005/01/24 14:07:07 yutakakn
272     * �Ekeyboard-interactive�F�����T�|�[�g�����B
273     * �@�����������Ateraterm.ini�� "KeyboardInteractive" �G���g�������������B
274     * �E�o�[�W�����_�C�A���O�� OpenSSL�o�[�W���� ������
275     *
276 yutakakn 2782 * Revision 1.5 2004/12/27 14:05:08 yutakakn
277     * 'Auto window close'���L���������A���f�������������������������C�������B
278     * �@�E�X���b�h���I����������������������
279     * �@�E�m������SSH���\�[�X������
280     *
281 yutakakn 2766 * Revision 1.4 2004/12/17 14:05:55 yutakakn
282     * �p�P�b�g���M����HMAC�`�F�b�N�������B
283     * KEX��������HMAC�A���S���Y���`�F�b�N�������B
284     *
285 yutakakn 2757 * Revision 1.3 2004/12/11 07:31:00 yutakakn
286     * SSH heartbeat�X���b�h�����������B�����������AIP�}�X�J���[�h�������������A���[�^��
287     * NAT�e�[�u���N���A�������ASSH�R�l�N�V���������f�����������������������B
288     * ���������������Ateraterm.ini��TTSSH�Z�N�V�������AHeartBeat �G���g���������B
289     *
290 yutakakn 2748 * Revision 1.2 2004/12/01 15:37:49 yutakakn
291     * SSH2�������O�C���@�\�������B
292     * �����A�p�X���[�h�F�������������B
293     * �E�R�}���h���C��
294     * /ssh /auth=�F�����\�b�h /user=���[�U�� /passwd=�p�X���[�h
295     *
296 yutakakn 2739 */

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26