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 4307 - (hide annotations) (download) (as text)
Tue Feb 15 09:00:01 2011 UTC (13 years, 1 month ago) by maya
File MIME type: text/x-chdr
File size: 8763 byte(s)
鍵の種類を増やせるように整理した
  enum hostkey_type を ssh_keytype にリネームした
機能が重複している構造体・コードを削除した
  CRYPTKeyPair を削除、Key を使うようにした
  key_from_blob を使うようにした
1 maya 3227 /*
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     #ifndef NO_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 /* NO_INET6 */
52     #include <stdlib.h>
53     #include <crtdbg.h>
54    
55     #include "i18n.h"
56 maya 3295 #include "ttlib.h"
57 maya 3227
58     typedef struct _TInstVar FAR * PTInstVar;
59    
60     #include "util.h"
61     #include "pkt.h"
62     #include "ssh.h"
63     #include "auth.h"
64     #include "crypt.h"
65     #include "hosts.h"
66     #include "fwd.h"
67    
68     #include <openssl/dh.h>
69     #include <openssl/evp.h>
70     #include "buffer.h"
71    
72     /* tttypes.h �����`���������� EM �}�N���� openssl/rsa.h (OpenSSL 0.9.8)�������v���g�^�C�v������
73     * �������������d�����������������A�r���h�G���[�������B���L3�w�b�_��include���u�����L�����������B
74     * (2005.7.9 yutaka)
75     */
76     #include "teraterm.h"
77     #include "tttypes.h"
78     #include "ttplugin.h"
79    
80     HANDLE hInst; /* Instance handle of TTXSSH.DLL */
81    
82     #define ID_SSHSCPMENU 52110
83     #define ID_SSHSETUPMENU 52310
84     #define ID_SSHAUTHSETUPMENU 52320
85     #define ID_SSHFWDSETUPMENU 52330
86     #define ID_SSHKEYGENMENU 52340
87     #define ID_ABOUTMENU 52910
88    
89     #define ID_SSHAUTH 62501
90     #define ID_SSHUNKNOWNHOST 62502
91     #define ID_SSHDIFFERENTHOST 62503
92     #define ID_SSHASYNCMESSAGEBOX 62504
93    
94     #define OPTION_NONE 0
95     #define OPTION_CLEAR 1
96     #define OPTION_REPLACE 2
97    
98     /*
99     These are the fields that WOULD go in Tera Term's 'ts' structure, if
100     we could put them there.
101     */
102     typedef struct _TS_SSH {
103     BOOL Enabled;
104     int CompressionLevel; /* 0 = NONE, else 1-9 */
105     char DefaultUserName[256];
106    
107     /* this next option is a string of digits. Each digit represents a
108     cipher. The first digit is the most preferred cipher, and so on.
109     The digit SSH_CIPHER_NONE signifies that any ciphers after it are
110     disabled. */
111     char CipherOrder[SSH_CIPHER_MAX+1];
112    
113     char KnownHostsFiles[2048];
114     int DefaultAuthMethod;
115     char DefaultRhostsLocalUserName[256];
116     char DefaultRhostsHostPrivateKeyFile[1024];
117     char DefaultRSAPrivateKeyFile[1024];
118    
119     char DefaultForwarding[2048];
120     BOOL TryDefaultAuth;
121    
122     int LogLevel; /* 0 = NONE, 100 = Verbose */
123     int WriteBufferSize;
124    
125     int ssh_protocol_version; // SSH version (2004.10.11 yutaka)
126     int ssh_heartbeat_overtime; // SSH heartbeat(keepalive) (2004.12.11 yutaka)
127     // whether password will permanently store on heap memory (2006.8.5 yutaka)
128     int remember_password;
129    
130     // try auth with "none" method for disable unsupported on dialog (2007.9.24 maya)
131     BOOL CheckAuthListFirst;
132    
133     // Enable connection to the server that has RSA key length less than 768 bit (2008.9.11 maya)
134     BOOL EnableRsaShortKeyServer;
135    
136     // Enable Agent forwarding
137     BOOL ForwardAgent;
138 maya 4229
139     // Confirm Agent forwarding
140     BOOL ForwardAgentConfirm;
141 maya 3227 } TS_SSH;
142    
143     typedef struct _TInstVar {
144     PTTSet ts;
145     PComVar cv;
146    
147     /* shared memory for settings across instances. Basically it's
148     a cache for the INI file.*/
149     TS_SSH FAR * ts_SSH;
150    
151     int fatal_error;
152     int showing_err;
153     char FAR * err_msg;
154    
155     Tconnect Pconnect;
156     Trecv Precv;
157     Tsend Psend;
158     TWSAAsyncSelect PWSAAsyncSelect;
159     TWSAGetLastError PWSAGetLastError;
160    
161     PReadIniFile ReadIniFile;
162     PWriteIniFile WriteIniFile;
163     PParseParam ParseParam;
164    
165     SOCKET socket;
166     HWND NotificationWindow;
167     unsigned int notification_msg;
168     long notification_events;
169     HICON OldSmallIcon;
170     HICON OldLargeIcon;
171    
172     BOOL hostdlg_activated;
173     BOOL hostdlg_Enabled;
174    
175     int protocol_major;
176     int protocol_minor;
177    
178     PKTState pkt_state;
179     SSHState ssh_state;
180     AUTHState auth_state;
181     CRYPTState crypt_state;
182     HOSTSState hosts_state;
183     FWDState fwd_state;
184    
185     /* The settings applied to the current session. The user may change
186     the settings but usually we don't want that to affect the session
187     in progress (race conditions). So user setup changes usually
188     modify the 'settings' field below. */
189     TS_SSH session_settings;
190    
191     /* our copy of the global settings. This is synced up with the shared
192     memory only when we do a ReadIniFile or WriteIniFile
193     (i.e. the user loads or saves setup) */
194     TS_SSH settings;
195    
196     // SSH2
197     DH *kexdh;
198     char server_version_string[128];
199     char client_version_string[128];
200     buffer_t *my_kex;
201     buffer_t *peer_kex;
202 maya 4301 enum kex_algorithm kex_type; // KEX algorithm
203 maya 4307 enum ssh_keytype hostkey_type;
204 maya 3227 SSHCipher ctos_cipher;
205     SSHCipher stoc_cipher;
206     enum hmac_type ctos_hmac;
207     enum hmac_type stoc_hmac;
208 maya 3325 enum compression_type ctos_compression;
209     enum compression_type stoc_compression;
210 maya 3227 int we_need;
211     int key_done;
212     int rekeying;
213     char *session_id;
214     int session_id_len;
215     Newkeys ssh2_keys[MODE_MAX];
216     EVP_CIPHER_CTX evpcip[MODE_MAX];
217     int userauth_success;
218     int shell_id;
219     /*int remote_id;*/
220     int session_nego_status;
221     /*
222     unsigned int local_window;
223     unsigned int local_window_max;
224     unsigned int local_consumed;
225     unsigned int local_maxpacket;
226     unsigned int remote_window;
227     unsigned int remote_maxpacket;
228     */
229     int client_key_bits;
230     int server_key_bits;
231     int kexgex_min;
232     int kexgex_bits;
233     int kexgex_max;
234     int ssh2_autologin;
235     int ask4passwd;
236     SSHAuthMethod ssh2_authmethod;
237     char ssh2_username[MAX_PATH];
238     char ssh2_password[MAX_PATH];
239     char ssh2_keyfile[MAX_PATH];
240     time_t ssh_heartbeat_tick;
241     HANDLE ssh_heartbeat_thread;
242     int keyboard_interactive_password_input;
243     int userauth_retry_count;
244     buffer_t *decomp_buffer;
245     char *ssh2_authlist;
246     BOOL tryed_ssh2_authlist;
247     HWND ssh_hearbeat_dialog;
248    
249     /* Pageant �������M�p */
250     unsigned char *pageant_key;
251     unsigned char *pageant_curkey;
252     int pageant_keylistlen;
253     int pageant_keycount;
254     int pageant_keycurrent;
255     BOOL pageant_keyfinal;// SSH2 PK_OK ������������ TRUE ������
256    
257     // agent forward
258     BOOL agentfwd_enable;
259 doda 3579
260     BOOL origDisableTCPEchoCR;
261 yutakapon 3631
262     BOOL nocheck_known_hosts;
263 maya 3227 } TInstVar;
264    
265     #define LOG_LEVEL_FATAL 5
266     #define LOG_LEVEL_ERROR 10
267     #define LOG_LEVEL_URGENT 20
268     #define LOG_LEVEL_WARNING 30
269     #define LOG_LEVEL_VERBOSE 100
270     #define LOG_LEVEL_SSHDUMP 200
271    
272     #define SSHv1(pvar) ((pvar)->protocol_major == 1)
273     #define SSHv2(pvar) ((pvar)->protocol_major == 2)
274    
275     void notify_established_secure_connection(PTInstVar pvar);
276     void notify_closed_connection(PTInstVar pvar);
277     void notify_nonfatal_error(PTInstVar pvar, char FAR * msg);
278     void notify_fatal_error(PTInstVar pvar, char FAR * msg);
279     void notify_verbose_message(PTInstVar pvar, char FAR * msg, int level);
280    
281     void get_teraterm_dir_relative_name(char FAR * buf, int bufsize, char FAR * basename);
282     int copy_teraterm_dir_relative_path(char FAR * dest, int destsize, char FAR * basename);
283     void get_file_version(char *exefile, int *major, int *minor, int *release, int *build);
284     int uuencode(unsigned char *src, int srclen, unsigned char *target, int targsize);
285    
286     #endif

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