Mercurial > gftp.yaz
annotate lib/gftp.h @ 840:dd83cd01dc30
2006-10-31 Brian Masney <masneyb@gftp.org>
WARNING: The CVS version of gFTP is currently broken, especially for
international users. This will be fixed in a few days.
* lib/sshv2.c - added i18n support so that the files are encoded
properly
author | masneyb |
---|---|
date | Wed, 01 Nov 2006 03:15:49 +0000 |
parents | 57aad6d4b304 |
children | 0d6fba16c7db |
rev | line source |
---|---|
1 | 1 /*****************************************************************************/ |
2 /* gftp.h - include file for the whole ftp program */ | |
122 | 3 /* Copyright (C) 1998-2003 Brian Masney <masneyb@gftp.org> */ |
1 | 4 /* */ |
5 /* This program is free software; you can redistribute it and/or modify */ | |
6 /* it under the terms of the GNU General Public License as published by */ | |
7 /* the Free Software Foundation; either version 2 of the License, or */ | |
8 /* (at your option) any later version. */ | |
9 /* */ | |
10 /* This program is distributed in the hope that it will be useful, */ | |
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ | |
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ | |
13 /* GNU General Public License for more details. */ | |
14 /* */ | |
15 /* You should have received a copy of the GNU General Public License */ | |
16 /* along with this program; if not, write to the Free Software */ | |
17 /* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
18 /*****************************************************************************/ | |
19 | |
33 | 20 /* $Id$ */ |
21 | |
1 | 22 #ifndef __GFTP_H |
23 #define __GFTP_H | |
24 | |
548 | 25 #ifndef _GNU_SOURCE |
26 #define _GNU_SOURCE | |
27 #endif | |
28 | |
1 | 29 #ifdef HAVE_CONFIG_H |
30 #include "config.h" | |
31 #endif | |
32 | |
435 | 33 /* *BSD include 64bit off_t but _LARGEFILE_SOURCE is not defined. */ |
34 #if defined (SIZEOF_OFF_T) && SIZEOF_OFF_T > 4 && !defined (_LARGEFILE_SOURCE) | |
423 | 35 #define _LARGEFILE_SOURCE 1 |
36 #endif | |
37 | |
437 | 38 #if defined (_LARGEFILE_SOURCE) && !defined (_LARGEFILE64_SOURCE) |
39 #define _LARGEFILE64_SOURCE 1 | |
40 #endif | |
41 | |
1 | 42 #include <sys/types.h> |
43 #include <sys/stat.h> | |
44 #include <sys/socket.h> | |
45 #include <sys/time.h> | |
46 #ifndef TIOCGWINSZ | |
47 #include <sys/ioctl.h> | |
48 #endif | |
49 #include <sys/wait.h> | |
50 #include <sys/utsname.h> | |
51 #include <netinet/in.h> | |
52 #include <arpa/inet.h> | |
53 #include <glib.h> | |
54 #include <limits.h> | |
55 #include <netdb.h> | |
56 #include <stdio.h> | |
57 #include <stdarg.h> | |
58 #include <stdlib.h> | |
59 #include <errno.h> | |
60 #include <fcntl.h> | |
61 #include <unistd.h> | |
62 #include <ctype.h> | |
63 #include <time.h> | |
64 #include <utime.h> | |
65 #include <signal.h> | |
66 #include <termios.h> | |
67 #include <pwd.h> | |
68 #include <setjmp.h> | |
69 #include <dirent.h> | |
70 #include <grp.h> | |
71 #include <math.h> | |
72 | |
325 | 73 #ifdef HAVE_STDINT_H |
74 #include <stdint.h> | |
75 #endif | |
76 | |
460 | 77 #ifdef HAVE_INTTYPES_H |
78 #include <inttypes.h> | |
79 #endif | |
80 | |
1 | 81 #ifdef HAVE_STRING_H |
82 #include <string.h> | |
83 #else | |
84 #include <strings.h> | |
85 #endif | |
86 | |
168 | 87 #ifdef USE_SSL |
88 #include <openssl/bio.h> | |
89 #include <openssl/err.h> | |
90 #include <openssl/rand.h> | |
91 #include <openssl/ssl.h> | |
92 #include <openssl/x509v3.h> | |
93 #endif | |
94 | |
1 | 95 #ifdef ENABLE_NLS |
96 #include <libintl.h> | |
97 #include <locale.h> | |
98 #define _(String) gettext (String) | |
99 #else | |
100 #define _(String) String | |
101 #endif | |
102 #define N_(String) String | |
103 | |
104 #ifndef AF_LOCAL | |
105 #define AF_LOCAL AF_UNIX | |
106 #endif | |
107 | |
146 | 108 #ifdef HAVE_GETADDRINFO |
109 #define HAVE_IPV6 | |
516 | 110 #define GFTP_GET_AI_FAMILY(request) ((request) != NULL && (request)->hostp != NULL ? (request)->hostp->ai_family : -1) |
146 | 111 #else |
112 #define GFTP_GET_AI_FAMILY(request) AF_INET | |
113 #endif | |
114 | |
351 | 115 /* Solaris needs this included for major()/minor() */ |
116 #ifdef HAVE_SYS_MKDEV_H | |
117 #include <sys/mkdev.h> | |
118 #endif | |
119 | |
48 | 120 /* We need the major() and minor() macros in the user interface. If they aren't |
121 defined by the system, we'll just define them here. */ | |
122 #ifndef major | |
123 #warning major macro was not defined by the system. Defining one that is probably wrong for your system | |
124 #define major(dev) (((dev) >> 8) & 0xff) | |
125 #endif | |
126 | |
127 #ifndef minor | |
128 #warning minor macro was not defined by the system. Defining one that is probably wrong for your system | |
129 #define minor(dev) ((dev) & 0xff) | |
130 #endif | |
131 | |
201 | 132 #ifdef WITH_DMALLOC |
133 | |
134 #undef g_malloc | |
135 #define g_malloc(size) \ | |
136 _malloc_leap(__FILE__, __LINE__, size) | |
137 | |
138 #undef g_malloc0 | |
139 #define g_malloc0(size) \ | |
140 _calloc_leap(__FILE__, __LINE__, 1, size) | |
141 | |
142 #undef g_realloc | |
143 #define g_realloc(ptr, size) \ | |
144 _realloc_leap(__FILE__, __LINE__, ptr, size) | |
145 | |
146 #undef g_strdup | |
147 #define g_strdup(str) \ | |
148 _strdup_leap(__FILE__, __LINE__, str) | |
149 | |
150 #undef g_free | |
151 #define g_free(ptr) \ | |
152 _free_leap(__FILE__, __LINE__, ptr) | |
153 | |
1 | 154 #include <dmalloc.h> |
201 | 155 |
1 | 156 #endif |
157 | |
338 | 158 #ifdef __GNUC__ |
159 # define GFTP_LOG_FUNCTION_ATTRIBUTES __attribute__((format(printf, 3, 4))) | |
160 #else | |
161 # define GFTP_LOG_FUNCTION_ATTRIBUTES | |
162 #endif | |
163 | |
649 | 164 #if defined (_LARGEFILE_SOURCE) && !defined (__hppa__) && !defined (__hppa) |
532 | 165 #define GFTP_OFF_T_HEX_PRINTF_MOD "%llx" |
166 #define GFTP_OFF_T_INTL_PRINTF_MOD "%'lld" | |
167 #define GFTP_OFF_T_PRINTF_MOD "%lld" | |
168 #define GFTP_OFF_T_11PRINTF_MOD "%11lld" | |
169 #define gftp_parse_file_size(str) strtoll (str, NULL, 10) | |
516 | 170 #else |
532 | 171 #define GFTP_OFF_T_HEX_PRINTF_MOD "%lx" |
172 #define GFTP_OFF_T_INTL_PRINTF_MOD "%'ld" | |
173 #define GFTP_OFF_T_PRINTF_MOD "%ld" | |
174 #define GFTP_OFF_T_11PRINTF_MOD "%11ld" | |
175 #define gftp_parse_file_size(str) strtol (str, NULL, 10) | |
516 | 176 #endif |
177 | |
91 | 178 /* Server types (used by FTP protocol from SYST command) */ |
122 | 179 #define GFTP_DIRTYPE_UNIX 1 |
180 #define GFTP_DIRTYPE_EPLF 2 | |
181 #define GFTP_DIRTYPE_CRAY 3 | |
182 #define GFTP_DIRTYPE_NOVELL 4 | |
183 #define GFTP_DIRTYPE_DOS 5 | |
184 #define GFTP_DIRTYPE_VMS 6 | |
185 #define GFTP_DIRTYPE_OTHER 7 | |
358 | 186 #define GFTP_DIRTYPE_MVS 8 |
91 | 187 |
84 | 188 /* Error types */ |
341 | 189 #define GFTP_ERETRYABLE -1 /* Temporary failure. The GUI |
190 should wait briefly */ | |
191 #define GFTP_EFATAL -2 /* Fatal error */ | |
192 #define GFTP_ERETRYABLE_NO_WAIT -3 /* Temporary failure. The GUI | |
193 should not wait and should | |
194 reconnect */ | |
426 | 195 #define GFTP_ENOTRANS -4 /* Custom error. This is |
196 returned when a FXP transfer | |
197 is requested */ | |
442 | 198 #define GFTP_ETIMEDOUT -5 /* Connected timed out */ |
84 | 199 |
1 | 200 /* Some general settings */ |
201 #define BASE_CONF_DIR "~/.gftp" | |
202 #define CONFIG_FILE BASE_CONF_DIR "/gftprc" | |
203 #define BOOKMARKS_FILE BASE_CONF_DIR "/bookmarks" | |
204 #define LOG_FILE BASE_CONF_DIR "/gftp.log" | |
205 #define MAX_HIST_LEN 10 | |
356 | 206 #define GFTP_URL_USAGE "[[protocol://][user[:pass]@]site[:port][/directory]]" |
1 | 207 |
208 typedef enum gftp_logging_level_tag | |
209 { | |
210 gftp_logging_send, | |
211 gftp_logging_recv, | |
212 gftp_logging_error, | |
354 | 213 gftp_logging_misc, |
214 gftp_logging_misc_nolog /* Log to the screen, but don't log to disk */ | |
1 | 215 } gftp_logging_level; |
216 | |
217 typedef struct gftp_file_tag gftp_file; | |
218 | |
219 #define GFTP_TRANS_ACTION_OVERWRITE 1 | |
220 #define GFTP_TRANS_ACTION_RESUME 2 | |
221 #define GFTP_TRANS_ACTION_SKIP 3 | |
222 | |
16 | 223 #define GFTP_SORT_COL_FILE 1 |
224 #define GFTP_SORT_COL_SIZE 2 | |
225 #define GFTP_SORT_COL_USER 3 | |
226 #define GFTP_SORT_COL_GROUP 4 | |
227 #define GFTP_SORT_COL_DATETIME 5 | |
228 #define GFTP_SORT_COL_ATTRIBS 6 | |
229 | |
499 | 230 #define GFTP_IS_SPECIAL_DEVICE(mode) (S_ISBLK (mode) || S_ISCHR (mode)) |
231 | |
1 | 232 struct gftp_file_tag |
233 { | |
765 | 234 /*@null@*/ char *file, /* Our filename */ |
235 *user, /* User that owns it */ | |
236 *group, /* Group that owns it */ | |
237 *destfile; /* Full pathname to the destination for the | |
1 | 238 file transfer */ |
122 | 239 |
240 int fd; /* Already open fd for this file */ | |
241 /* FIXME - add fd_open function */ | |
242 | |
1 | 243 time_t datetime; /* File date and time */ |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
244 off_t size, /* Size of the file */ |
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
245 startsize; /* Size to start the transfer at */ |
499 | 246 mode_t st_mode; /* File attributes */ |
247 unsigned int selected : 1, /* Is this file selected? */ | |
1 | 248 was_sel : 1, /* Was this file selected before */ |
249 shown : 1, /* Is this file shown? */ | |
250 done_view : 1, /* View the file when done transfering? */ | |
251 done_edit : 1, /* Edit the file when done transfering? */ | |
252 done_rm : 1, /* Remove the file when done */ | |
253 transfer_done : 1, /* Is current file transfer done? */ | |
787 | 254 is_fd : 1, /* Is this a file descriptor? */ |
255 exists_other_side; /* The file exists on the other side during | |
256 the file transfer */ | |
1 | 257 char transfer_action; /* See the GFTP_TRANS_ACTION_* vars above */ |
765 | 258 /*@null@*/ void *user_data; |
1 | 259 }; |
260 | |
261 | |
262 typedef struct gftp_proxy_hosts_tag | |
263 { | |
303 | 264 /* FIXME - add IPV6 stuff here */ |
122 | 265 |
266 gint32 ipv4_network_address, | |
1 | 267 ipv4_netmask; |
268 char *domain; | |
269 } gftp_proxy_hosts; | |
270 | |
136 | 271 |
272 /* Note, these numbers must match up to the index number in config_file.c | |
273 in the declaration of gftp_option_types */ | |
274 typedef enum | |
275 { | |
276 gftp_option_type_text = 0, | |
277 gftp_option_type_textcombo = 1, | |
278 gftp_option_type_textcomboedt = 2, | |
279 gftp_option_type_hidetext = 3, | |
280 gftp_option_type_int = 4, | |
281 gftp_option_type_checkbox = 5, | |
282 gftp_option_type_intcombo = 6, | |
283 gftp_option_type_float = 7, | |
284 gftp_option_type_color = 8, | |
285 gftp_option_type_notebook = 9 | |
286 } gftp_option_type_enum; | |
287 | |
288 | |
289 #define GFTP_PORT_GTK (1 << 1) | |
290 #define GFTP_PORT_TEXT (1 << 2) | |
291 #define GFTP_PORT_ALL (GFTP_PORT_GTK | GFTP_PORT_TEXT) | |
292 | |
293 | |
294 typedef struct gftp_config_list_vars_tag | |
295 { | |
296 char *key; | |
297 void * (*read_func) (char *buf, int line); | |
298 void (*write_func) (FILE *fd, void *data); | |
299 GList * list; | |
300 unsigned int num_items; | |
301 char *header; | |
302 } gftp_config_list_vars; | |
303 | |
304 | |
201 | 305 #define GFTP_CVARS_FLAGS_DYNMEM (1 << 1) |
306 #define GFTP_CVARS_FLAGS_DYNLISTMEM (1 << 2) | |
227 | 307 #define GFTP_CVARS_FLAGS_SHOW_BOOKMARK (1 << 3) |
136 | 308 |
309 typedef struct gftp_config_vars_tag | |
310 { | |
765 | 311 /*@null@*/ char *key, /* variable name */ |
312 *description; /* How this field will show up in the dialog */ | |
136 | 313 int otype; /* Type of option this is */ |
765 | 314 /*@null@*/ void *value; |
315 /*@null@*/ void *listdata; /* For options that have several different | |
136 | 316 options, this is a list of all the options. |
317 Each option_type that uses this will use this | |
318 field differently */ | |
319 int flags; /* See GFTP_CVARS_FLAGS_* above */ | |
765 | 320 /*@null@*/ char *comment; /* Comment to write out to the config file */ |
136 | 321 int ports_shown; /* What ports of gFTP is this option shown in */ |
765 | 322 /*@null@*/ void *user_data; /* Data that the GUI can store here (Widget in gtk+) */ |
136 | 323 } gftp_config_vars; |
324 | |
325 | |
326 typedef struct gftp_option_type_tag | |
327 { | |
328 int (*read_function) (char *str, gftp_config_vars * cv, int line); | |
765 | 329 int (*write_function) (gftp_config_vars * cv, /*@out@*/ char *buf, |
330 size_t buflen, int to_config_file); | |
207 | 331 void (*copy_function) (gftp_config_vars * cv, gftp_config_vars * dest_cv); |
227 | 332 int (*compare_function) (gftp_config_vars * cv1, gftp_config_vars * cv2); |
229 | 333 void *(*ui_print_function) (gftp_config_vars * cv, void *user_data, void *value); |
136 | 334 void (*ui_save_function) (gftp_config_vars * cv, void *user_data); |
139 | 335 void (*ui_cancel_function) (gftp_config_vars * cv, void *user_data); |
136 | 336 void *user_data; |
337 } gftp_option_type_var; | |
338 | |
339 | |
340 #define GFTP_TEXTCOMBOEDT_EDITABLE (1 << 0) | |
341 | |
342 typedef struct gftp_textcomboedt_data_tag | |
343 { | |
765 | 344 /*@null@*/ char *description, |
345 *text; | |
136 | 346 int flags; |
347 } gftp_textcomboedt_data; | |
348 | |
349 | |
1 | 350 typedef struct gftp_request_tag gftp_request; |
351 | |
186 | 352 typedef void (*gftp_logging_func) ( gftp_logging_level level, |
765 | 353 /*@null@*/ gftp_request * request, |
186 | 354 const char *string, ... ); |
355 | |
570 | 356 #define GFTP_ANONYMOUS_USER "anonymous" |
555 | 357 #define gftp_need_username(request) ((request)->need_username && ((request)->username == NULL || *(request)->username == '\0')) |
570 | 358 #define gftp_need_password(request) ((request)->need_password && (request)->username != NULL && *(request)->username != '\0' && strcasecmp ((request)->username, GFTP_ANONYMOUS_USER) != 0 && ((request)->password == NULL || *(request)->password == '\0')) |
553 | 359 |
1 | 360 struct gftp_request_tag |
361 { | |
362 int protonum; /* Current number of the protocol this is | |
363 set to */ | |
364 char *hostname, /* Hostname we will connect to */ | |
365 *username, /* Username for host*/ | |
366 *password, /* Password for host */ | |
367 *account, /* Account for host (FTP only) */ | |
368 *directory, /* Current working directory */ | |
369 *url_prefix, /* URL Prefix (ex: ftp) */ | |
370 *last_ftp_response, /* Last response from server */ | |
371 *last_dir_entry; /* Last dir entry from server */ | |
372 size_t last_dir_entry_len; /* Length of last_dir_entry */ | |
373 | |
122 | 374 unsigned int port; /* Port of remote site */ |
1 | 375 |
169 | 376 int datafd, /* Data connection */ |
58 | 377 cachefd; /* For the directory cache */ |
1 | 378 int wakeup_main_thread[2]; /* FD that gets written to by the threads |
379 to wakeup the parent */ | |
122 | 380 |
381 /* One of these are used to lookup the IP address of the host we are | |
382 connecting to */ | |
1 | 383 #if defined (HAVE_GETADDRINFO) && defined (HAVE_GAI_STRERROR) |
572 | 384 struct addrinfo *hostp, |
385 *current_hostp; | |
1 | 386 #else |
122 | 387 struct hostent host, *hostp; |
641 | 388 int curhost; |
1 | 389 #endif |
390 | |
547 | 391 int ai_family; |
122 | 392 int server_type; /* The type of server we are connected to. |
393 See GFTP_DIRTYPE_* above */ | |
151 | 394 unsigned int free_hostp : 1, /* Should we free the hostp structure |
395 in gftp_destroy_request() */ | |
396 use_proxy : 1, | |
1 | 397 always_connected : 1, |
398 need_hostport : 1, | |
553 | 399 need_username : 1, |
400 need_password : 1, | |
1 | 401 use_cache : 1, /* Enable or disable the cache */ |
402 cached : 1, /* Is this directory listing cached? */ | |
41 | 403 cancel : 1, /* If a signal is received, should |
404 we cancel this operation */ | |
832 | 405 stopable : 1, |
406 use_local_encoding : 1; | |
1 | 407 |
408 off_t gotbytes; | |
409 | |
410 void *protocol_data; | |
411 | |
412 gftp_logging_func logging_function; | |
413 void *user_data; | |
414 | |
173 | 415 int (*init) ( gftp_request * request ); |
309 | 416 void (*copy_param_options) ( gftp_request * dest_request, |
417 gftp_request * src_request ); | |
168 | 418 ssize_t (*read_function) ( gftp_request * request, |
419 void *ptr, | |
420 size_t size, | |
421 int fd ); | |
422 ssize_t (*write_function) ( gftp_request * request, | |
423 const char *ptr, | |
424 size_t size, | |
425 int fd ); | |
1 | 426 void (*destroy) ( gftp_request * request ); |
427 int (*connect) ( gftp_request * request ); | |
168 | 428 int (*post_connect) ( gftp_request * request ); |
1 | 429 void (*disconnect) ( gftp_request * request ); |
58 | 430 off_t (*get_file) ( gftp_request * request, |
1 | 431 const char *filename, |
58 | 432 int fd, |
1 | 433 off_t startsize ); |
434 int (*put_file) ( gftp_request * request, | |
435 const char *filename, | |
58 | 436 int fd, |
1 | 437 off_t startsize, |
438 off_t totalsize ); | |
765 | 439 off_t (*transfer_file) ( gftp_request * fromreq, |
1 | 440 const char *fromfile, |
441 off_t fromsize, | |
442 gftp_request * toreq, | |
443 const char *tofile, | |
444 off_t tosize ); | |
58 | 445 ssize_t (*get_next_file_chunk) ( gftp_request * request, |
1 | 446 char *buf, |
447 size_t size ); | |
58 | 448 ssize_t (*put_next_file_chunk) ( gftp_request * request, |
1 | 449 char *buf, |
450 size_t size ); | |
451 int (*end_transfer) ( gftp_request * request ); | |
40 | 452 int (*abort_transfer) ( gftp_request * request ); |
520 | 453 int (*stat_filename) ( gftp_request * request, |
454 const char *filename, | |
787 | 455 mode_t * mode, |
456 off_t * filesize ); | |
1 | 457 int (*list_files) ( gftp_request * request ); |
458 int (*get_next_file) ( gftp_request * request, | |
459 gftp_file *fle, | |
58 | 460 int fd ); |
485 | 461 ssize_t (*get_next_dirlist_line) ( gftp_request * request, |
462 int fd, | |
463 char *buf, | |
464 size_t buflen ); | |
1 | 465 off_t (*get_file_size) ( gftp_request * request, |
466 const char *filename ); | |
467 int (*chdir) ( gftp_request * request, | |
468 const char *directory ); | |
469 int (*rmdir) ( gftp_request * request, | |
470 const char *directory ); | |
471 int (*rmfile) ( gftp_request * request, | |
472 const char *filename ); | |
473 int (*mkdir) ( gftp_request * request, | |
474 const char *directory ); | |
475 int (*rename) ( gftp_request * request, | |
476 const char *oldname, | |
477 const char *newname ); | |
478 int (*chmod) ( gftp_request * request, | |
479 const char *filename, | |
499 | 480 mode_t mode ); |
1 | 481 int (*set_file_time) ( gftp_request * request, |
482 const char *filename, | |
483 time_t datettime ); | |
484 int (*site) ( gftp_request * request, | |
478 | 485 int specify_site, |
1 | 486 const char *filename ); |
487 int (*parse_url) ( gftp_request * request, | |
488 const char *url ); | |
177 | 489 int (*set_config_options) ( gftp_request * request ); |
63 | 490 void (*swap_socks) ( gftp_request * dest, |
491 gftp_request * source ); | |
1 | 492 |
136 | 493 gftp_config_vars * local_options_vars; |
494 int num_local_options_vars; | |
495 GHashTable * local_options_hash; | |
168 | 496 #ifdef USE_SSL |
497 SSL * ssl; | |
498 #endif | |
184 | 499 |
500 #if GLIB_MAJOR_VERSION > 1 | |
501 GIConv iconv; | |
502 unsigned int iconv_initialized : 1; | |
503 #endif | |
1 | 504 }; |
505 | |
506 | |
136 | 507 typedef struct gftp_transfer_tag |
1 | 508 { |
509 gftp_request * fromreq, | |
510 * toreq; | |
511 | |
305 | 512 unsigned int cancel : 1, |
1 | 513 ready : 1, |
514 started : 1, | |
515 done : 1, | |
516 show : 1, | |
517 stalled : 1, | |
303 | 518 conn_error_no_timeout : 1, |
1 | 519 next_file : 1, |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
520 skip_file : 1; |
1 | 521 |
522 struct timeval starttime, | |
523 lasttime; | |
524 | |
525 double kbs; | |
526 | |
527 GList * files, | |
528 * curfle, | |
529 * updfle; | |
530 | |
19 | 531 long numfiles, |
532 numdirs, | |
533 current_file_number, | |
534 current_file_retries; | |
1 | 535 |
536 off_t curtrans, /* Current transfered bytes for this file */ | |
377 | 537 tot_file_trans, /* Total number of bytes in the file being |
538 transferred */ | |
1 | 539 curresumed, /* Resumed bytes for this file */ |
540 trans_bytes, /* Amount of data transfered for entire | |
541 transfer */ | |
542 total_bytes, /* Grand total bytes for whole transfer */ | |
543 resumed_bytes; /* Grand total of resumed bytes for whole | |
544 transfer */ | |
545 | |
546 void * fromwdata, | |
547 * towdata; | |
548 | |
122 | 549 GStaticMutex statmutex, |
550 structmutex; | |
551 | |
125 | 552 void *user_data; |
1 | 553 void *clist; |
136 | 554 } gftp_transfer; |
1 | 555 |
556 | |
557 typedef struct gftp_log_tag | |
558 { | |
559 char *msg; | |
560 gftp_logging_level type; | |
561 } gftp_log; | |
562 | |
563 | |
564 typedef struct supported_gftp_protocols_tag | |
565 { | |
765 | 566 /*@null@*/ char *name; /* Description of protocol */ |
567 /*@null@*/ int (*init) (gftp_request * request); /* Init function */ | |
568 /*@null@*/ void (*register_options) (void); /* Protocol options */ | |
569 /*@null@*/ char *url_prefix; /* URL Prefix */ | |
542 | 570 unsigned int default_port; /* Default port */ |
341 | 571 unsigned int shown : 1, /* Whether this protocol is |
122 | 572 shown or not to the user in |
573 the protocol dropdown box */ | |
341 | 574 use_threads : 1; /* Whether or not operations in |
575 this protocol should use | |
576 threads */ | |
1 | 577 } supported_gftp_protocols; |
578 | |
579 | |
122 | 580 typedef struct gftp_bookmarks_tag gftp_bookmarks_var; |
1 | 581 |
582 struct gftp_bookmarks_tag | |
583 { | |
609 | 584 char *path, /* Path */ |
585 *oldpath, /* Old path name */ | |
586 *hostname, /* Our actual internet hostname */ | |
1 | 587 *protocol, /* Protocol we will connect through */ |
588 *remote_dir, /* Initial directory */ | |
589 *local_dir, /* Init local directory */ | |
590 *user, /* Username to log in as */ | |
591 *pass, /* Our password */ | |
592 *acct; /* Account */ | |
593 | |
594 unsigned int port, /* The port we will connect to */ | |
595 isfolder : 1, /* If this is set, then the children field can | |
596 be non-NULL */ | |
597 save_password : 1; /* Save this password */ | |
122 | 598 gftp_bookmarks_var *children, /* The children of this node. */ |
599 *prev, /* The parent of this node */ | |
600 *next; /* The next sibling of this node */ | |
1 | 601 gpointer cnode; |
602 | |
199 | 603 gftp_config_vars * local_options_vars; |
604 int num_local_options_vars; | |
605 GHashTable * local_options_hash; | |
1 | 606 }; |
607 | |
608 | |
609 typedef struct gftp_file_extensions_tag | |
610 { | |
611 char *ext, /* The file extension to register */ | |
612 *filename, /* The xpm file to display */ | |
613 *view_program, /* The program used to view this file */ | |
614 *ascii_binary; /* Is this a ASCII transfer or a BINARY transfer */ | |
516 | 615 unsigned int stlen; /* How long is the file extension. */ |
1 | 616 } gftp_file_extensions; |
617 | |
618 | |
619 typedef struct gftp_color_tag | |
620 { | |
621 gushort red, | |
622 green, | |
623 blue; | |
624 } gftp_color; | |
625 | |
626 | |
58 | 627 typedef struct gftp_getline_buffer_tag |
628 { | |
629 char *buffer, | |
630 *curpos; | |
631 size_t max_bufsize, | |
632 cur_bufsize; | |
179 | 633 unsigned int eof : 1; |
58 | 634 } gftp_getline_buffer; |
635 | |
126 | 636 |
122 | 637 /* Global config options. These are defined in options.h */ |
765 | 638 /*@null@*/ extern GList * gftp_file_transfers, * gftp_file_transfer_logs, |
639 * gftp_options_list; | |
640 /*@null@*/ extern GHashTable * gftp_global_options_htable, * gftp_bookmarks_htable, | |
641 * gftp_config_list_htable; | |
642 /*@null@*/ extern gftp_bookmarks_var * gftp_bookmarks; | |
643 /*@null@*/ extern FILE * gftp_logfd; | |
122 | 644 extern gftp_config_vars gftp_global_config_vars[]; |
1 | 645 extern supported_gftp_protocols gftp_protocols[]; |
122 | 646 extern char gftp_version[]; |
201 | 647 extern int gftp_configuration_changed; |
122 | 648 |
649 /* This is defined in config_file.c */ | |
650 | |
651 extern gftp_option_type_var gftp_option_types[]; | |
1 | 652 |
653 /* cache.c */ | |
182 | 654 void gftp_generate_cache_description ( gftp_request * request, |
765 | 655 /*@out@*/ char *description, |
182 | 656 size_t len, |
657 int ignore_directory ); | |
658 | |
58 | 659 int gftp_new_cache_entry ( gftp_request * request ); |
1 | 660 |
58 | 661 int gftp_find_cache_entry ( gftp_request * request ); |
1 | 662 |
663 void gftp_clear_cache_files ( void ); | |
664 | |
47 | 665 void gftp_delete_cache_entry ( gftp_request * request, |
182 | 666 char *descr, |
47 | 667 int ignore_directory ); |
1 | 668 |
669 /* config_file.c */ | |
198 | 670 int gftp_config_parse_args ( char *str, |
671 int numargs, | |
672 int lineno, | |
765 | 673 /*@out@*/ char **first, |
198 | 674 ... ); |
675 | |
122 | 676 void gftp_add_bookmark ( gftp_bookmarks_var * newentry ); |
677 | |
124 | 678 void gftp_read_config_file ( char *global_data_path ); |
1 | 679 |
122 | 680 void gftp_write_bookmarks_file ( void ); |
1 | 681 |
682 void gftp_write_config_file ( void ); | |
683 | |
122 | 684 GHashTable * build_bookmarks_hash_table ( gftp_bookmarks_var * entry ); |
685 | |
686 void print_bookmarks ( gftp_bookmarks_var * bookmarks ); | |
687 | |
374 | 688 void gftp_lookup_global_option ( const char * key, |
765 | 689 /*@out@*/ void *value ); |
26 | 690 |
122 | 691 void gftp_lookup_request_option ( gftp_request * request, |
374 | 692 const char * key, |
765 | 693 /*@out@*/ void *value ); |
694 | |
1 | 695 |
229 | 696 void gftp_lookup_bookmark_option ( gftp_bookmarks_var * bm, |
374 | 697 const char * key, |
229 | 698 void *value ); |
699 | |
374 | 700 void gftp_set_global_option ( const char * key, |
227 | 701 const void *value ); |
122 | 702 |
703 void gftp_set_request_option ( gftp_request * request, | |
374 | 704 const char * key, |
229 | 705 const void *value ); |
706 | |
707 void gftp_set_bookmark_option ( gftp_bookmarks_var * bm, | |
374 | 708 const char * key, |
229 | 709 const void *value ); |
122 | 710 |
711 void gftp_register_config_vars ( gftp_config_vars *config_vars ); | |
1 | 712 |
201 | 713 void gftp_copy_local_options ( gftp_config_vars ** new_options_vars, |
714 GHashTable ** new_options_hash, | |
429 | 715 int *new_num_local_options_vars, |
201 | 716 gftp_config_vars * orig_options, |
717 int num_local_options_vars ); | |
718 | |
719 void gftp_config_free_options ( gftp_config_vars * options_vars, | |
720 GHashTable * options_hash, | |
721 int num_options_vars ); | |
722 | |
723 void gftp_bookmarks_destroy ( gftp_bookmarks_var * bookmarks ); | |
724 | |
218 | 725 void gftp_free_proxy_hosts ( GList * proxy_hosts ); |
726 | |
727 GList * gftp_copy_proxy_hosts ( GList * proxy_hosts ); | |
728 | |
1 | 729 /* misc.c */ |
765 | 730 /*@null@*/ char *insert_commas ( off_t number, |
1 | 731 char *dest_str, |
732 size_t dest_len ); | |
733 | |
734 char *alltrim ( char *str ); | |
735 | |
555 | 736 char *gftp_expand_path ( gftp_request * request, |
737 const char *src ); | |
1 | 738 |
739 void make_nonnull ( char **str ); | |
740 | |
821 | 741 int gftp_match_filespec ( gftp_request * request, |
742 const char *filename, | |
374 | 743 const char *filespec ); |
1 | 744 |
745 int gftp_parse_command_line ( int *argc, | |
746 char ***argv ); | |
747 | |
748 void gftp_usage ( void ); | |
749 | |
750 gint string_hash_compare ( gconstpointer path1, | |
751 gconstpointer path2 ); | |
752 | |
753 guint string_hash_function ( gconstpointer key ); | |
754 | |
755 void free_file_list ( GList * filelist ); | |
756 | |
757 gftp_file * copy_fdata ( gftp_file * fle ); | |
758 | |
759 int compare_request ( gftp_request * request1, | |
760 gftp_request * request2, | |
761 int compare_dirs ); | |
762 | |
129 | 763 gftp_transfer * gftp_tdata_new ( void ); |
764 | |
1 | 765 void free_tdata ( gftp_transfer * tdata ); |
766 | |
368 | 767 gftp_request * gftp_copy_request ( gftp_request * req ); |
1 | 768 |
16 | 769 GList * gftp_sort_filelist ( GList * filelist, |
770 int column, | |
771 int asds ); | |
772 | |
830 | 773 char * gftp_gen_ls_string ( gftp_request * request, |
774 gftp_file * fle, | |
131 | 775 char *file_prefixstr, |
776 char *file_suffixstr ); | |
777 | |
168 | 778 char * base64_encode ( char *str ); |
779 | |
609 | 780 void gftp_free_bookmark ( gftp_bookmarks_var * entry, |
781 int free_node ); | |
199 | 782 |
201 | 783 void gftp_shutdown ( void ); |
199 | 784 |
207 | 785 GList * get_next_selection ( GList * selection, |
786 GList ** list, | |
787 int *curnum ); | |
788 | |
555 | 789 char * gftp_build_path ( gftp_request * request, |
790 const char *first_element, | |
227 | 791 ... ); |
792 | |
290 | 793 void gftp_locale_init ( void ); |
794 | |
330 | 795 char * gftp_scramble_password ( const char *password ); |
796 | |
797 char * gftp_descramble_password ( const char *password ); | |
798 | |
378 | 799 int gftp_get_transfer_action ( gftp_request * request, |
800 gftp_file * fle ); | |
801 | |
483 | 802 char * gftp_get_share_dir ( void ); |
803 | |
402 | 804 /* mkstemps.c */ |
805 int mkstemps ( char *template, | |
806 int suffix_len ); | |
807 | |
1 | 808 /* protocols.c */ |
809 #define GFTP_FTP_NUM 0 | |
389 | 810 #define GFTP_FTPS_NUM 1 |
811 #define GFTP_HTTP_NUM 2 | |
812 #define GFTP_HTTPS_NUM 3 | |
813 #define GFTP_LOCAL_NUM 4 | |
814 #define GFTP_SSHV2_NUM 5 | |
815 #define GFTP_BOOKMARK_NUM 6 | |
661 | 816 #define GFTP_FSP_NUM 7 |
122 | 817 |
1 | 818 #define GFTP_IS_CONNECTED(request) ((request) != NULL && \ |
169 | 819 ((request)->datafd > 0 || \ |
58 | 820 (request)->cached || \ |
821 (request)->always_connected)) | |
1 | 822 |
823 | |
173 | 824 int rfc959_init ( gftp_request * request ); |
1 | 825 |
122 | 826 void rfc959_register_module ( void ); |
827 | |
1 | 828 int rfc959_get_next_file ( gftp_request * request, |
829 gftp_file *fle, | |
58 | 830 int fd ); |
1 | 831 |
451 | 832 int rfc959_connect ( gftp_request * request ); |
833 | |
389 | 834 int ftps_init ( gftp_request * request ); |
835 | |
836 void ftps_register_module ( void ); | |
837 | |
173 | 838 int rfc2068_init ( gftp_request * request ); |
1 | 839 |
122 | 840 void rfc2068_register_module ( void ); |
841 | |
173 | 842 int https_init ( gftp_request * request ); |
168 | 843 |
844 void https_register_module ( void ); | |
845 | |
173 | 846 int local_init ( gftp_request * request ); |
1 | 847 |
122 | 848 void local_register_module ( void ); |
849 | |
173 | 850 int sshv2_init ( gftp_request * request ); |
1 | 851 |
122 | 852 void sshv2_register_module ( void ); |
853 | |
174 | 854 void ssl_register_module ( void ); |
855 | |
173 | 856 int bookmark_init ( gftp_request * request ); |
1 | 857 |
122 | 858 void bookmark_register_module ( void ); |
859 | |
661 | 860 int fsp_init ( gftp_request * request ); |
861 | |
862 void fsp_register_module ( void ); | |
863 | |
1 | 864 gftp_request *gftp_request_new ( void ); |
865 | |
67 | 866 void gftp_request_destroy ( gftp_request * request, |
867 int free_request ); | |
1 | 868 |
309 | 869 void gftp_copy_param_options ( gftp_request * dest_request, |
870 gftp_request * src_request ); | |
871 | |
598 | 872 void gftp_file_destroy ( gftp_file *file, |
873 int free_it ); | |
1 | 874 |
875 int gftp_connect ( gftp_request * request ); | |
876 | |
877 void gftp_disconnect ( gftp_request * request ); | |
878 | |
58 | 879 off_t gftp_get_file ( gftp_request * request, |
1 | 880 const char *filename, |
58 | 881 int fd, |
244 | 882 off_t startsize ); |
1 | 883 |
884 int gftp_put_file ( gftp_request * request, | |
885 const char *filename, | |
58 | 886 int fd, |
244 | 887 off_t startsize, |
888 off_t totalsize ); | |
1 | 889 |
261 | 890 off_t gftp_transfer_file ( gftp_request *fromreq, |
1 | 891 const char *fromfile, |
58 | 892 int fromfd, |
244 | 893 off_t fromsize, |
1 | 894 gftp_request *toreq, |
895 const char *tofile, | |
58 | 896 int tofd, |
244 | 897 off_t tosize ); |
1 | 898 |
58 | 899 ssize_t gftp_get_next_file_chunk ( gftp_request * request, |
1 | 900 char *buf, |
901 size_t size ); | |
902 | |
58 | 903 ssize_t gftp_put_next_file_chunk ( gftp_request * request, |
1 | 904 char *buf, |
905 size_t size ); | |
906 | |
907 int gftp_list_files ( gftp_request * request ); | |
908 | |
765 | 909 /*@null@*/ char * gftp_string_to_utf8 ( gftp_request * request, |
838 | 910 const char *str, |
911 size_t *dest_len ); | |
291 | 912 |
765 | 913 /*@null@*/ char * gftp_string_from_utf8 ( gftp_request * request, |
838 | 914 const char *str, |
915 size_t *dest_len ); | |
186 | 916 |
87 | 917 int gftp_parse_bookmark ( gftp_request * request, |
243 | 918 gftp_request * local_request, |
275 | 919 const char * bookmark, |
920 int *refresh_local ); | |
87 | 921 |
1 | 922 int gftp_parse_url ( gftp_request * request, |
923 const char *url ); | |
924 | |
925 int gftp_get_next_file ( gftp_request * request, | |
377 | 926 const char *filespec, |
1 | 927 gftp_file *fle ); |
928 | |
929 int gftp_end_transfer ( gftp_request * request ); | |
930 | |
40 | 931 int gftp_abort_transfer ( gftp_request * request ); |
932 | |
520 | 933 int gftp_stat_filename ( gftp_request * request, |
934 const char *filename, | |
787 | 935 mode_t * mode, |
936 off_t * filesize ); | |
500 | 937 |
1 | 938 void gftp_set_hostname ( gftp_request * request, |
939 const char *hostname ); | |
940 | |
941 void gftp_set_username ( gftp_request * request, | |
942 const char *username ); | |
943 | |
944 void gftp_set_password ( gftp_request * request, | |
945 const char *password ); | |
946 | |
947 void gftp_set_account ( gftp_request * request, | |
948 const char *account ); | |
949 | |
950 int gftp_set_directory ( gftp_request * request, | |
951 const char *directory ); | |
952 | |
953 void gftp_set_port ( gftp_request * request, | |
954 unsigned int port ); | |
955 | |
956 int gftp_remove_directory ( gftp_request * request, | |
957 const char *directory ); | |
958 | |
959 int gftp_remove_file ( gftp_request * request, | |
960 const char *file ); | |
961 | |
962 int gftp_make_directory ( gftp_request * request, | |
963 const char *directory ); | |
964 | |
965 int gftp_rename_file ( gftp_request * request, | |
966 const char *oldname, | |
967 const char *newname ); | |
968 | |
969 int gftp_chmod ( gftp_request * request, | |
970 const char *file, | |
499 | 971 mode_t mode ); |
1 | 972 |
973 int gftp_set_file_time ( gftp_request * request, | |
974 const char *file, | |
975 time_t datetime ); | |
976 | |
765 | 977 int gftp_site_cmd ( gftp_request * request, |
478 | 978 int specify_site, |
1 | 979 const char *command ); |
980 | |
58 | 981 off_t gftp_get_file_size ( gftp_request * request, |
1 | 982 const char *filename ); |
983 | |
984 void gftp_calc_kbs ( gftp_transfer * tdata, | |
985 ssize_t num_read ); | |
986 | |
102 | 987 time_t parse_time ( char *str, |
988 char **endpos ); | |
989 | |
91 | 990 int gftp_parse_ls ( gftp_request * request, |
991 const char *lsoutput, | |
485 | 992 gftp_file *fle, |
993 int fd ); | |
1 | 994 |
995 int gftp_get_all_subdirs ( gftp_transfer * transfer, | |
996 void (*update_func) | |
997 ( gftp_transfer * transfer )); | |
998 | |
999 int gftp_connect_server ( gftp_request * request, | |
122 | 1000 char *service, |
1001 char *proxy_hostname, | |
516 | 1002 unsigned int proxy_port ); |
1 | 1003 |
122 | 1004 #if !defined (HAVE_GETADDRINFO) || !defined (HAVE_GAI_STRERROR) |
1 | 1005 |
1006 struct hostent *r_gethostbyname ( const char *name, | |
1007 struct hostent *result_buf, | |
1008 int *h_errnop ); | |
1009 | |
56 | 1010 #endif |
1011 | |
1 | 1012 struct servent *r_getservbyname ( const char *name, |
1013 const char *proto, | |
765 | 1014 /*@out@*/ struct servent *result_buf, |
1 | 1015 int *h_errnop ); |
122 | 1016 |
177 | 1017 int gftp_set_config_options ( gftp_request * request ); |
1 | 1018 |
1019 void print_file_list ( GList * list ); | |
1020 | |
201 | 1021 void gftp_free_getline_buffer ( gftp_getline_buffer ** rbuf ); |
168 | 1022 |
58 | 1023 ssize_t gftp_get_line ( gftp_request * request, |
765 | 1024 /*@out@*/ gftp_getline_buffer ** rbuf, |
1025 /*@out@*/ char * str, | |
41 | 1026 size_t len, |
58 | 1027 int fd ); |
1028 | |
168 | 1029 ssize_t gftp_fd_read ( gftp_request * request, |
58 | 1030 void *ptr, |
1031 size_t size, | |
1032 int fd ); | |
41 | 1033 |
168 | 1034 ssize_t gftp_fd_write ( gftp_request * request, |
58 | 1035 const char *ptr, |
41 | 1036 size_t size, |
58 | 1037 int fd ); |
1038 | |
1039 ssize_t gftp_writefmt ( gftp_request * request, | |
1040 int fd, | |
1041 const char *fmt, | |
1042 ... ); | |
1043 | |
168 | 1044 int gftp_fd_set_sockblocking ( gftp_request * request, |
58 | 1045 int fd, |
1046 int non_blocking ); | |
41 | 1047 |
63 | 1048 void gftp_swap_socks ( gftp_request * dest, |
1049 gftp_request * source ); | |
1050 | |
122 | 1051 void gftp_calc_kbs ( gftp_transfer * tdata, |
1052 ssize_t num_read ); | |
1053 | |
125 | 1054 int gftp_get_transfer_status ( gftp_transfer * tdata, |
1055 ssize_t num_read ); | |
1056 | |
182 | 1057 int gftp_fd_open ( gftp_request * request, |
1058 const char *pathname, | |
1059 int flags, | |
1060 mode_t perms ); | |
1061 | |
792 | 1062 void gftp_setup_startup_directory ( gftp_request * request, |
1063 const char *option_name ); | |
422 | 1064 |
542 | 1065 unsigned int gftp_protocol_default_port ( gftp_request * request ); |
1066 | |
146 | 1067 /* pty.c */ |
210 | 1068 char * gftp_get_pty_impl ( void ); |
179 | 1069 |
458 | 1070 pid_t gftp_exec ( gftp_request * request, |
1071 int *fdm, | |
1072 int *ptymfd, | |
210 | 1073 char **args ); |
146 | 1074 |
499 | 1075 char *gftp_convert_attributes_from_mode_t ( mode_t mode ); |
1076 | |
1077 mode_t gftp_convert_attributes_to_mode_t ( char *attribs ); | |
1078 | |
1079 | |
168 | 1080 #ifdef USE_SSL |
1081 /* sslcommon.c */ | |
1082 int gftp_ssl_startup ( gftp_request * request ); | |
1083 | |
1084 int gftp_ssl_session_setup ( gftp_request * request ); | |
1085 | |
1086 void gftp_ssl_free ( gftp_request * request ); | |
1087 | |
1088 ssize_t gftp_ssl_read ( gftp_request * request, | |
1089 void *ptr, | |
1090 size_t size, | |
1091 int fd ); | |
1092 | |
1093 ssize_t gftp_ssl_write ( gftp_request * request, | |
1094 const char *ptr, | |
1095 size_t size, | |
1096 int fd ); | |
1097 #endif /* USE_SSL */ | |
1098 | |
460 | 1099 /* UI dependent functions that must be implemented */ |
1100 int gftpui_protocol_ask_yes_no ( gftp_request * request, | |
1101 char *title, | |
1102 char *question ); | |
1103 | |
484 | 1104 char *gftpui_protocol_ask_user_input ( gftp_request * request, |
1105 char *title, | |
1106 char *question, | |
1107 int shown ); | |
1108 | |
469 | 1109 void gftpui_protocol_update_timeout ( gftp_request * request ); |
1110 | |
1 | 1111 #endif |
1112 |