Mercurial > gftp.yaz
annotate lib/gftp.h @ 669:d09e885aedbd
2005-01-19 Frank Arnold <farnold@cvs.gnome.org>
* de.po: Updated German translation.
author | farnold |
---|---|
date | Wed, 19 Jan 2005 14:14:01 +0000 |
parents | 2e718fba351e |
children | d553d14a2565 |
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 { | |
234 char *file, /* Our filename */ | |
184 | 235 *utf8_file, /* UTF-8 encoded filename for display purposes |
236 only. This is only set if file is not in | |
237 UTF-8 */ | |
1 | 238 *user, /* User that owns it */ |
239 *group, /* Group that owns it */ | |
240 *destfile; /* Full pathname to the destination for the | |
241 file transfer */ | |
122 | 242 |
243 int fd; /* Already open fd for this file */ | |
244 /* FIXME - add fd_open function */ | |
245 | |
1 | 246 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
|
247 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
|
248 startsize; /* Size to start the transfer at */ |
499 | 249 mode_t st_mode; /* File attributes */ |
250 unsigned int selected : 1, /* Is this file selected? */ | |
1 | 251 was_sel : 1, /* Was this file selected before */ |
252 shown : 1, /* Is this file shown? */ | |
253 done_view : 1, /* View the file when done transfering? */ | |
254 done_edit : 1, /* Edit the file when done transfering? */ | |
255 done_rm : 1, /* Remove the file when done */ | |
256 transfer_done : 1, /* Is current file transfer done? */ | |
257 is_fd : 1; /* Is this a file descriptor? */ | |
258 char transfer_action; /* See the GFTP_TRANS_ACTION_* vars above */ | |
122 | 259 void *user_data; |
1 | 260 }; |
261 | |
262 | |
263 typedef struct gftp_proxy_hosts_tag | |
264 { | |
303 | 265 /* FIXME - add IPV6 stuff here */ |
122 | 266 |
267 gint32 ipv4_network_address, | |
1 | 268 ipv4_netmask; |
269 char *domain; | |
270 } gftp_proxy_hosts; | |
271 | |
136 | 272 |
273 /* Note, these numbers must match up to the index number in config_file.c | |
274 in the declaration of gftp_option_types */ | |
275 typedef enum | |
276 { | |
277 gftp_option_type_text = 0, | |
278 gftp_option_type_textcombo = 1, | |
279 gftp_option_type_textcomboedt = 2, | |
280 gftp_option_type_hidetext = 3, | |
281 gftp_option_type_int = 4, | |
282 gftp_option_type_checkbox = 5, | |
283 gftp_option_type_intcombo = 6, | |
284 gftp_option_type_float = 7, | |
285 gftp_option_type_color = 8, | |
286 gftp_option_type_notebook = 9 | |
287 } gftp_option_type_enum; | |
288 | |
289 | |
290 #define GFTP_PORT_GTK (1 << 1) | |
291 #define GFTP_PORT_TEXT (1 << 2) | |
292 #define GFTP_PORT_ALL (GFTP_PORT_GTK | GFTP_PORT_TEXT) | |
293 | |
294 | |
295 typedef struct gftp_config_list_vars_tag | |
296 { | |
297 char *key; | |
298 void * (*read_func) (char *buf, int line); | |
299 void (*write_func) (FILE *fd, void *data); | |
300 GList * list; | |
301 unsigned int num_items; | |
302 char *header; | |
303 } gftp_config_list_vars; | |
304 | |
305 | |
201 | 306 #define GFTP_CVARS_FLAGS_DYNMEM (1 << 1) |
307 #define GFTP_CVARS_FLAGS_DYNLISTMEM (1 << 2) | |
227 | 308 #define GFTP_CVARS_FLAGS_SHOW_BOOKMARK (1 << 3) |
136 | 309 |
310 typedef struct gftp_config_vars_tag | |
311 { | |
312 char *key, /* variable name */ | |
313 *description; /* How this field will show up in the dialog */ | |
314 int otype; /* Type of option this is */ | |
315 void *value; | |
316 void *listdata; /* For options that have several different | |
317 options, this is a list of all the options. | |
318 Each option_type that uses this will use this | |
319 field differently */ | |
320 int flags; /* See GFTP_CVARS_FLAGS_* above */ | |
321 char *comment; /* Comment to write out to the config file */ | |
322 int ports_shown; /* What ports of gFTP is this option shown in */ | |
323 void *user_data; /* Data that the GUI can store here (Widget in gtk+) */ | |
324 } gftp_config_vars; | |
325 | |
326 | |
327 typedef struct gftp_option_type_tag | |
328 { | |
329 int (*read_function) (char *str, gftp_config_vars * cv, int line); | |
387 | 330 int (*write_function) (gftp_config_vars * cv, char *buf, size_t buflen, |
331 int to_config_file); | |
207 | 332 void (*copy_function) (gftp_config_vars * cv, gftp_config_vars * dest_cv); |
227 | 333 int (*compare_function) (gftp_config_vars * cv1, gftp_config_vars * cv2); |
229 | 334 void *(*ui_print_function) (gftp_config_vars * cv, void *user_data, void *value); |
136 | 335 void (*ui_save_function) (gftp_config_vars * cv, void *user_data); |
139 | 336 void (*ui_cancel_function) (gftp_config_vars * cv, void *user_data); |
136 | 337 void *user_data; |
338 } gftp_option_type_var; | |
339 | |
340 | |
341 #define GFTP_TEXTCOMBOEDT_EDITABLE (1 << 0) | |
342 | |
343 typedef struct gftp_textcomboedt_data_tag | |
344 { | |
345 char *description, | |
346 *text; | |
347 int flags; | |
348 } gftp_textcomboedt_data; | |
349 | |
350 | |
1 | 351 typedef struct gftp_request_tag gftp_request; |
352 | |
186 | 353 typedef void (*gftp_logging_func) ( gftp_logging_level level, |
354 gftp_request * request, | |
355 const char *string, ... ); | |
356 | |
570 | 357 #define GFTP_ANONYMOUS_USER "anonymous" |
555 | 358 #define gftp_need_username(request) ((request)->need_username && ((request)->username == NULL || *(request)->username == '\0')) |
570 | 359 #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 | 360 |
1 | 361 struct gftp_request_tag |
362 { | |
363 int protonum; /* Current number of the protocol this is | |
364 set to */ | |
365 char *hostname, /* Hostname we will connect to */ | |
366 *username, /* Username for host*/ | |
367 *password, /* Password for host */ | |
368 *account, /* Account for host (FTP only) */ | |
369 *directory, /* Current working directory */ | |
370 *url_prefix, /* URL Prefix (ex: ftp) */ | |
371 *last_ftp_response, /* Last response from server */ | |
372 *last_dir_entry; /* Last dir entry from server */ | |
373 size_t last_dir_entry_len; /* Length of last_dir_entry */ | |
374 | |
122 | 375 unsigned int port; /* Port of remote site */ |
1 | 376 |
169 | 377 int datafd, /* Data connection */ |
58 | 378 cachefd; /* For the directory cache */ |
1 | 379 int wakeup_main_thread[2]; /* FD that gets written to by the threads |
380 to wakeup the parent */ | |
122 | 381 |
382 /* One of these are used to lookup the IP address of the host we are | |
383 connecting to */ | |
1 | 384 #if defined (HAVE_GETADDRINFO) && defined (HAVE_GAI_STRERROR) |
572 | 385 struct addrinfo *hostp, |
386 *current_hostp; | |
1 | 387 #else |
122 | 388 struct hostent host, *hostp; |
641 | 389 int curhost; |
1 | 390 #endif |
391 | |
547 | 392 int ai_family; |
122 | 393 int server_type; /* The type of server we are connected to. |
394 See GFTP_DIRTYPE_* above */ | |
151 | 395 unsigned int free_hostp : 1, /* Should we free the hostp structure |
396 in gftp_destroy_request() */ | |
397 use_proxy : 1, | |
1 | 398 always_connected : 1, |
399 need_hostport : 1, | |
553 | 400 need_username : 1, |
401 need_password : 1, | |
1 | 402 use_cache : 1, /* Enable or disable the cache */ |
403 cached : 1, /* Is this directory listing cached? */ | |
41 | 404 cancel : 1, /* If a signal is received, should |
405 we cancel this operation */ | |
1 | 406 stopable : 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 ); | |
439 long (*transfer_file) ( gftp_request * fromreq, | |
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, | |
455 mode_t * mode ); | |
1 | 456 int (*list_files) ( gftp_request * request ); |
457 int (*get_next_file) ( gftp_request * request, | |
458 gftp_file *fle, | |
58 | 459 int fd ); |
485 | 460 ssize_t (*get_next_dirlist_line) ( gftp_request * request, |
461 int fd, | |
462 char *buf, | |
463 size_t buflen ); | |
1 | 464 off_t (*get_file_size) ( gftp_request * request, |
465 const char *filename ); | |
466 int (*chdir) ( gftp_request * request, | |
467 const char *directory ); | |
468 int (*rmdir) ( gftp_request * request, | |
469 const char *directory ); | |
470 int (*rmfile) ( gftp_request * request, | |
471 const char *filename ); | |
472 int (*mkdir) ( gftp_request * request, | |
473 const char *directory ); | |
474 int (*rename) ( gftp_request * request, | |
475 const char *oldname, | |
476 const char *newname ); | |
477 int (*chmod) ( gftp_request * request, | |
478 const char *filename, | |
499 | 479 mode_t mode ); |
1 | 480 int (*set_file_time) ( gftp_request * request, |
481 const char *filename, | |
482 time_t datettime ); | |
483 int (*site) ( gftp_request * request, | |
478 | 484 int specify_site, |
1 | 485 const char *filename ); |
486 int (*parse_url) ( gftp_request * request, | |
487 const char *url ); | |
177 | 488 int (*set_config_options) ( gftp_request * request ); |
63 | 489 void (*swap_socks) ( gftp_request * dest, |
490 gftp_request * source ); | |
1 | 491 |
136 | 492 gftp_config_vars * local_options_vars; |
493 int num_local_options_vars; | |
494 GHashTable * local_options_hash; | |
168 | 495 #ifdef USE_SSL |
496 SSL * ssl; | |
497 #endif | |
184 | 498 |
499 #if GLIB_MAJOR_VERSION > 1 | |
500 GIConv iconv; | |
501 unsigned int iconv_initialized : 1; | |
502 #endif | |
1 | 503 }; |
504 | |
505 | |
136 | 506 typedef struct gftp_transfer_tag |
1 | 507 { |
508 gftp_request * fromreq, | |
509 * toreq; | |
510 | |
305 | 511 unsigned int cancel : 1, |
1 | 512 ready : 1, |
513 started : 1, | |
514 done : 1, | |
515 show : 1, | |
516 stalled : 1, | |
303 | 517 conn_error_no_timeout : 1, |
1 | 518 next_file : 1, |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
519 skip_file : 1; |
1 | 520 |
521 struct timeval starttime, | |
522 lasttime; | |
523 | |
524 double kbs; | |
525 | |
526 GList * files, | |
527 * curfle, | |
528 * updfle; | |
529 | |
19 | 530 long numfiles, |
531 numdirs, | |
532 current_file_number, | |
533 current_file_retries; | |
1 | 534 |
535 off_t curtrans, /* Current transfered bytes for this file */ | |
377 | 536 tot_file_trans, /* Total number of bytes in the file being |
537 transferred */ | |
1 | 538 curresumed, /* Resumed bytes for this file */ |
539 trans_bytes, /* Amount of data transfered for entire | |
540 transfer */ | |
541 total_bytes, /* Grand total bytes for whole transfer */ | |
542 resumed_bytes; /* Grand total of resumed bytes for whole | |
543 transfer */ | |
544 | |
545 void * fromwdata, | |
546 * towdata; | |
547 | |
122 | 548 GStaticMutex statmutex, |
549 structmutex; | |
550 | |
125 | 551 void *user_data; |
1 | 552 void *clist; |
136 | 553 } gftp_transfer; |
1 | 554 |
555 | |
556 typedef struct gftp_log_tag | |
557 { | |
558 char *msg; | |
559 gftp_logging_level type; | |
560 } gftp_log; | |
561 | |
562 | |
563 typedef struct supported_gftp_protocols_tag | |
564 { | |
565 char *name; /* Description of protocol */ | |
173 | 566 int (*init) (gftp_request * request); /* Init function */ |
122 | 567 void (*register_options) (void); /* Protocol options */ |
1 | 568 char *url_prefix; /* URL Prefix */ |
542 | 569 unsigned int default_port; /* Default port */ |
341 | 570 unsigned int shown : 1, /* Whether this protocol is |
122 | 571 shown or not to the user in |
572 the protocol dropdown box */ | |
341 | 573 use_threads : 1; /* Whether or not operations in |
574 this protocol should use | |
575 threads */ | |
1 | 576 } supported_gftp_protocols; |
577 | |
578 | |
122 | 579 typedef struct gftp_bookmarks_tag gftp_bookmarks_var; |
1 | 580 |
581 struct gftp_bookmarks_tag | |
582 { | |
609 | 583 char *path, /* Path */ |
584 *oldpath, /* Old path name */ | |
585 *hostname, /* Our actual internet hostname */ | |
1 | 586 *protocol, /* Protocol we will connect through */ |
587 *remote_dir, /* Initial directory */ | |
588 *local_dir, /* Init local directory */ | |
589 *user, /* Username to log in as */ | |
590 *pass, /* Our password */ | |
591 *acct; /* Account */ | |
592 | |
593 unsigned int port, /* The port we will connect to */ | |
594 isfolder : 1, /* If this is set, then the children field can | |
595 be non-NULL */ | |
596 save_password : 1; /* Save this password */ | |
122 | 597 gftp_bookmarks_var *children, /* The children of this node. */ |
598 *prev, /* The parent of this node */ | |
599 *next; /* The next sibling of this node */ | |
1 | 600 gpointer cnode; |
601 | |
199 | 602 gftp_config_vars * local_options_vars; |
603 int num_local_options_vars; | |
604 GHashTable * local_options_hash; | |
1 | 605 }; |
606 | |
607 | |
608 typedef struct gftp_file_extensions_tag | |
609 { | |
610 char *ext, /* The file extension to register */ | |
611 *filename, /* The xpm file to display */ | |
612 *view_program, /* The program used to view this file */ | |
613 *ascii_binary; /* Is this a ASCII transfer or a BINARY transfer */ | |
516 | 614 unsigned int stlen; /* How long is the file extension. */ |
1 | 615 } gftp_file_extensions; |
616 | |
617 | |
618 typedef struct gftp_color_tag | |
619 { | |
620 gushort red, | |
621 green, | |
622 blue; | |
623 } gftp_color; | |
624 | |
625 | |
58 | 626 typedef struct gftp_getline_buffer_tag |
627 { | |
628 char *buffer, | |
629 *curpos; | |
630 size_t max_bufsize, | |
631 cur_bufsize; | |
179 | 632 unsigned int eof : 1; |
58 | 633 } gftp_getline_buffer; |
634 | |
126 | 635 |
122 | 636 /* Global config options. These are defined in options.h */ |
637 extern GList * gftp_file_transfers, * gftp_file_transfer_logs, | |
638 * gftp_options_list; | |
639 extern GHashTable * gftp_global_options_htable, * gftp_bookmarks_htable, | |
640 * gftp_config_list_htable; | |
641 extern gftp_config_vars gftp_global_config_vars[]; | |
1 | 642 extern supported_gftp_protocols gftp_protocols[]; |
122 | 643 extern gftp_bookmarks_var * gftp_bookmarks; |
644 extern char gftp_version[]; | |
645 extern FILE * gftp_logfd; | |
201 | 646 extern int gftp_configuration_changed; |
122 | 647 |
648 /* This is defined in config_file.c */ | |
649 | |
650 extern gftp_option_type_var gftp_option_types[]; | |
1 | 651 |
652 /* cache.c */ | |
182 | 653 void gftp_generate_cache_description ( gftp_request * request, |
654 char *description, | |
655 size_t len, | |
656 int ignore_directory ); | |
657 | |
58 | 658 int gftp_new_cache_entry ( gftp_request * request ); |
1 | 659 |
58 | 660 int gftp_find_cache_entry ( gftp_request * request ); |
1 | 661 |
662 void gftp_clear_cache_files ( void ); | |
663 | |
47 | 664 void gftp_delete_cache_entry ( gftp_request * request, |
182 | 665 char *descr, |
47 | 666 int ignore_directory ); |
1 | 667 |
668 /* config_file.c */ | |
198 | 669 int gftp_config_parse_args ( char *str, |
670 int numargs, | |
671 int lineno, | |
672 char **first, | |
673 ... ); | |
674 | |
122 | 675 void gftp_add_bookmark ( gftp_bookmarks_var * newentry ); |
676 | |
124 | 677 void gftp_read_config_file ( char *global_data_path ); |
1 | 678 |
122 | 679 void gftp_write_bookmarks_file ( void ); |
1 | 680 |
681 void gftp_write_config_file ( void ); | |
682 | |
122 | 683 GHashTable * build_bookmarks_hash_table ( gftp_bookmarks_var * entry ); |
684 | |
685 void print_bookmarks ( gftp_bookmarks_var * bookmarks ); | |
686 | |
374 | 687 void gftp_lookup_global_option ( const char * key, |
122 | 688 void *value ); |
26 | 689 |
122 | 690 void gftp_lookup_request_option ( gftp_request * request, |
374 | 691 const char * key, |
122 | 692 void *value ); |
1 | 693 |
229 | 694 void gftp_lookup_bookmark_option ( gftp_bookmarks_var * bm, |
374 | 695 const char * key, |
229 | 696 void *value ); |
697 | |
374 | 698 void gftp_set_global_option ( const char * key, |
227 | 699 const void *value ); |
122 | 700 |
701 void gftp_set_request_option ( gftp_request * request, | |
374 | 702 const char * key, |
229 | 703 const void *value ); |
704 | |
705 void gftp_set_bookmark_option ( gftp_bookmarks_var * bm, | |
374 | 706 const char * key, |
229 | 707 const void *value ); |
122 | 708 |
709 void gftp_register_config_vars ( gftp_config_vars *config_vars ); | |
1 | 710 |
201 | 711 void gftp_copy_local_options ( gftp_config_vars ** new_options_vars, |
712 GHashTable ** new_options_hash, | |
429 | 713 int *new_num_local_options_vars, |
201 | 714 gftp_config_vars * orig_options, |
715 int num_local_options_vars ); | |
716 | |
717 void gftp_config_free_options ( gftp_config_vars * options_vars, | |
718 GHashTable * options_hash, | |
719 int num_options_vars ); | |
720 | |
721 void gftp_bookmarks_destroy ( gftp_bookmarks_var * bookmarks ); | |
722 | |
218 | 723 void gftp_free_proxy_hosts ( GList * proxy_hosts ); |
724 | |
725 GList * gftp_copy_proxy_hosts ( GList * proxy_hosts ); | |
726 | |
1 | 727 /* misc.c */ |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
728 char *insert_commas ( off_t number, |
1 | 729 char *dest_str, |
730 size_t dest_len ); | |
731 | |
732 char *alltrim ( char *str ); | |
733 | |
555 | 734 char *gftp_expand_path ( gftp_request * request, |
735 const char *src ); | |
1 | 736 |
737 void make_nonnull ( char **str ); | |
738 | |
374 | 739 int gftp_match_filespec ( const char *filename, |
740 const char *filespec ); | |
1 | 741 |
742 int gftp_parse_command_line ( int *argc, | |
743 char ***argv ); | |
744 | |
745 void gftp_usage ( void ); | |
746 | |
747 gint string_hash_compare ( gconstpointer path1, | |
748 gconstpointer path2 ); | |
749 | |
750 guint string_hash_function ( gconstpointer key ); | |
751 | |
752 void free_file_list ( GList * filelist ); | |
753 | |
754 gftp_file * copy_fdata ( gftp_file * fle ); | |
755 | |
756 int compare_request ( gftp_request * request1, | |
757 gftp_request * request2, | |
758 int compare_dirs ); | |
759 | |
129 | 760 gftp_transfer * gftp_tdata_new ( void ); |
761 | |
1 | 762 void free_tdata ( gftp_transfer * tdata ); |
763 | |
368 | 764 gftp_request * gftp_copy_request ( gftp_request * req ); |
1 | 765 |
16 | 766 GList * gftp_sort_filelist ( GList * filelist, |
767 int column, | |
768 int asds ); | |
769 | |
131 | 770 char * gftp_gen_ls_string ( gftp_file * fle, |
771 char *file_prefixstr, | |
772 char *file_suffixstr ); | |
773 | |
168 | 774 char * base64_encode ( char *str ); |
775 | |
609 | 776 void gftp_free_bookmark ( gftp_bookmarks_var * entry, |
777 int free_node ); | |
199 | 778 |
201 | 779 void gftp_shutdown ( void ); |
199 | 780 |
207 | 781 GList * get_next_selection ( GList * selection, |
782 GList ** list, | |
783 int *curnum ); | |
784 | |
555 | 785 char * gftp_build_path ( gftp_request * request, |
786 const char *first_element, | |
227 | 787 ... ); |
788 | |
290 | 789 void gftp_locale_init ( void ); |
790 | |
330 | 791 char * gftp_scramble_password ( const char *password ); |
792 | |
793 char * gftp_descramble_password ( const char *password ); | |
794 | |
378 | 795 int gftp_get_transfer_action ( gftp_request * request, |
796 gftp_file * fle ); | |
797 | |
483 | 798 char * gftp_get_share_dir ( void ); |
799 | |
402 | 800 /* mkstemps.c */ |
801 int mkstemps ( char *template, | |
802 int suffix_len ); | |
803 | |
1 | 804 /* protocols.c */ |
805 #define GFTP_FTP_NUM 0 | |
389 | 806 #define GFTP_FTPS_NUM 1 |
807 #define GFTP_HTTP_NUM 2 | |
808 #define GFTP_HTTPS_NUM 3 | |
809 #define GFTP_LOCAL_NUM 4 | |
810 #define GFTP_SSHV2_NUM 5 | |
811 #define GFTP_BOOKMARK_NUM 6 | |
661 | 812 #define GFTP_FSP_NUM 7 |
122 | 813 |
1 | 814 #define GFTP_IS_CONNECTED(request) ((request) != NULL && \ |
169 | 815 ((request)->datafd > 0 || \ |
58 | 816 (request)->cached || \ |
817 (request)->always_connected)) | |
1 | 818 |
819 | |
173 | 820 int rfc959_init ( gftp_request * request ); |
1 | 821 |
122 | 822 void rfc959_register_module ( void ); |
823 | |
1 | 824 int rfc959_get_next_file ( gftp_request * request, |
825 gftp_file *fle, | |
58 | 826 int fd ); |
1 | 827 |
451 | 828 int rfc959_connect ( gftp_request * request ); |
829 | |
389 | 830 int ftps_init ( gftp_request * request ); |
831 | |
832 void ftps_register_module ( void ); | |
833 | |
173 | 834 int rfc2068_init ( gftp_request * request ); |
1 | 835 |
122 | 836 void rfc2068_register_module ( void ); |
837 | |
173 | 838 int https_init ( gftp_request * request ); |
168 | 839 |
840 void https_register_module ( void ); | |
841 | |
173 | 842 int local_init ( gftp_request * request ); |
1 | 843 |
122 | 844 void local_register_module ( void ); |
845 | |
173 | 846 int sshv2_init ( gftp_request * request ); |
1 | 847 |
122 | 848 void sshv2_register_module ( void ); |
849 | |
174 | 850 void ssl_register_module ( void ); |
851 | |
173 | 852 int bookmark_init ( gftp_request * request ); |
1 | 853 |
122 | 854 void bookmark_register_module ( void ); |
855 | |
661 | 856 int fsp_init ( gftp_request * request ); |
857 | |
858 void fsp_register_module ( void ); | |
859 | |
1 | 860 gftp_request *gftp_request_new ( void ); |
861 | |
67 | 862 void gftp_request_destroy ( gftp_request * request, |
863 int free_request ); | |
1 | 864 |
309 | 865 void gftp_copy_param_options ( gftp_request * dest_request, |
866 gftp_request * src_request ); | |
867 | |
598 | 868 void gftp_file_destroy ( gftp_file *file, |
869 int free_it ); | |
1 | 870 |
871 int gftp_connect ( gftp_request * request ); | |
872 | |
873 void gftp_disconnect ( gftp_request * request ); | |
874 | |
58 | 875 off_t gftp_get_file ( gftp_request * request, |
1 | 876 const char *filename, |
58 | 877 int fd, |
244 | 878 off_t startsize ); |
1 | 879 |
880 int gftp_put_file ( gftp_request * request, | |
881 const char *filename, | |
58 | 882 int fd, |
244 | 883 off_t startsize, |
884 off_t totalsize ); | |
1 | 885 |
261 | 886 off_t gftp_transfer_file ( gftp_request *fromreq, |
1 | 887 const char *fromfile, |
58 | 888 int fromfd, |
244 | 889 off_t fromsize, |
1 | 890 gftp_request *toreq, |
891 const char *tofile, | |
58 | 892 int tofd, |
244 | 893 off_t tosize ); |
1 | 894 |
58 | 895 ssize_t gftp_get_next_file_chunk ( gftp_request * request, |
1 | 896 char *buf, |
897 size_t size ); | |
898 | |
58 | 899 ssize_t gftp_put_next_file_chunk ( gftp_request * request, |
1 | 900 char *buf, |
901 size_t size ); | |
902 | |
903 int gftp_list_files ( gftp_request * request ); | |
904 | |
186 | 905 char * gftp_string_to_utf8 ( gftp_request * request, |
291 | 906 const char *str ); |
907 | |
908 char * gftp_string_from_utf8 ( gftp_request * request, | |
909 const char *str ); | |
186 | 910 |
87 | 911 int gftp_parse_bookmark ( gftp_request * request, |
243 | 912 gftp_request * local_request, |
275 | 913 const char * bookmark, |
914 int *refresh_local ); | |
87 | 915 |
1 | 916 int gftp_parse_url ( gftp_request * request, |
917 const char *url ); | |
918 | |
919 int gftp_get_next_file ( gftp_request * request, | |
377 | 920 const char *filespec, |
1 | 921 gftp_file *fle ); |
922 | |
923 int gftp_end_transfer ( gftp_request * request ); | |
924 | |
40 | 925 int gftp_abort_transfer ( gftp_request * request ); |
926 | |
520 | 927 int gftp_stat_filename ( gftp_request * request, |
928 const char *filename, | |
929 mode_t * mode ); | |
500 | 930 |
1 | 931 void gftp_set_hostname ( gftp_request * request, |
932 const char *hostname ); | |
933 | |
934 void gftp_set_username ( gftp_request * request, | |
935 const char *username ); | |
936 | |
937 void gftp_set_password ( gftp_request * request, | |
938 const char *password ); | |
939 | |
940 void gftp_set_account ( gftp_request * request, | |
941 const char *account ); | |
942 | |
943 int gftp_set_directory ( gftp_request * request, | |
944 const char *directory ); | |
945 | |
946 void gftp_set_port ( gftp_request * request, | |
947 unsigned int port ); | |
948 | |
949 int gftp_remove_directory ( gftp_request * request, | |
950 const char *directory ); | |
951 | |
952 int gftp_remove_file ( gftp_request * request, | |
953 const char *file ); | |
954 | |
955 int gftp_make_directory ( gftp_request * request, | |
956 const char *directory ); | |
957 | |
958 int gftp_rename_file ( gftp_request * request, | |
959 const char *oldname, | |
960 const char *newname ); | |
961 | |
962 int gftp_chmod ( gftp_request * request, | |
963 const char *file, | |
499 | 964 mode_t mode ); |
1 | 965 |
966 int gftp_set_file_time ( gftp_request * request, | |
967 const char *file, | |
968 time_t datetime ); | |
969 | |
970 char gftp_site_cmd ( gftp_request * request, | |
478 | 971 int specify_site, |
1 | 972 const char *command ); |
973 | |
58 | 974 off_t gftp_get_file_size ( gftp_request * request, |
1 | 975 const char *filename ); |
976 | |
977 void gftp_calc_kbs ( gftp_transfer * tdata, | |
978 ssize_t num_read ); | |
979 | |
102 | 980 time_t parse_time ( char *str, |
981 char **endpos ); | |
982 | |
91 | 983 int gftp_parse_ls ( gftp_request * request, |
984 const char *lsoutput, | |
485 | 985 gftp_file *fle, |
986 int fd ); | |
1 | 987 |
988 int gftp_get_all_subdirs ( gftp_transfer * transfer, | |
989 void (*update_func) | |
990 ( gftp_transfer * transfer )); | |
991 | |
992 int gftp_connect_server ( gftp_request * request, | |
122 | 993 char *service, |
994 char *proxy_hostname, | |
516 | 995 unsigned int proxy_port ); |
1 | 996 |
122 | 997 #if !defined (HAVE_GETADDRINFO) || !defined (HAVE_GAI_STRERROR) |
1 | 998 |
999 struct hostent *r_gethostbyname ( const char *name, | |
1000 struct hostent *result_buf, | |
1001 int *h_errnop ); | |
1002 | |
56 | 1003 #endif |
1004 | |
1 | 1005 struct servent *r_getservbyname ( const char *name, |
1006 const char *proto, | |
1007 struct servent *result_buf, | |
1008 int *h_errnop ); | |
122 | 1009 |
177 | 1010 int gftp_set_config_options ( gftp_request * request ); |
1 | 1011 |
1012 void print_file_list ( GList * list ); | |
1013 | |
201 | 1014 void gftp_free_getline_buffer ( gftp_getline_buffer ** rbuf ); |
168 | 1015 |
58 | 1016 ssize_t gftp_get_line ( gftp_request * request, |
1017 gftp_getline_buffer ** rbuf, | |
41 | 1018 char * str, |
1019 size_t len, | |
58 | 1020 int fd ); |
1021 | |
168 | 1022 ssize_t gftp_fd_read ( gftp_request * request, |
58 | 1023 void *ptr, |
1024 size_t size, | |
1025 int fd ); | |
41 | 1026 |
168 | 1027 ssize_t gftp_fd_write ( gftp_request * request, |
58 | 1028 const char *ptr, |
41 | 1029 size_t size, |
58 | 1030 int fd ); |
1031 | |
1032 ssize_t gftp_writefmt ( gftp_request * request, | |
1033 int fd, | |
1034 const char *fmt, | |
1035 ... ); | |
1036 | |
168 | 1037 int gftp_fd_set_sockblocking ( gftp_request * request, |
58 | 1038 int fd, |
1039 int non_blocking ); | |
41 | 1040 |
63 | 1041 void gftp_swap_socks ( gftp_request * dest, |
1042 gftp_request * source ); | |
1043 | |
122 | 1044 void gftp_calc_kbs ( gftp_transfer * tdata, |
1045 ssize_t num_read ); | |
1046 | |
125 | 1047 int gftp_get_transfer_status ( gftp_transfer * tdata, |
1048 ssize_t num_read ); | |
1049 | |
182 | 1050 int gftp_fd_open ( gftp_request * request, |
1051 const char *pathname, | |
1052 int flags, | |
1053 mode_t perms ); | |
1054 | |
422 | 1055 void gftp_setup_startup_directory ( gftp_request * request ); |
1056 | |
542 | 1057 unsigned int gftp_protocol_default_port ( gftp_request * request ); |
1058 | |
146 | 1059 /* pty.c */ |
210 | 1060 char * gftp_get_pty_impl ( void ); |
179 | 1061 |
458 | 1062 pid_t gftp_exec ( gftp_request * request, |
1063 int *fdm, | |
1064 int *ptymfd, | |
210 | 1065 char **args ); |
146 | 1066 |
499 | 1067 char *gftp_convert_attributes_from_mode_t ( mode_t mode ); |
1068 | |
1069 mode_t gftp_convert_attributes_to_mode_t ( char *attribs ); | |
1070 | |
1071 | |
168 | 1072 #ifdef USE_SSL |
1073 /* sslcommon.c */ | |
1074 int gftp_ssl_startup ( gftp_request * request ); | |
1075 | |
1076 int gftp_ssl_session_setup ( gftp_request * request ); | |
1077 | |
1078 void gftp_ssl_free ( gftp_request * request ); | |
1079 | |
1080 ssize_t gftp_ssl_read ( gftp_request * request, | |
1081 void *ptr, | |
1082 size_t size, | |
1083 int fd ); | |
1084 | |
1085 ssize_t gftp_ssl_write ( gftp_request * request, | |
1086 const char *ptr, | |
1087 size_t size, | |
1088 int fd ); | |
1089 #endif /* USE_SSL */ | |
1090 | |
460 | 1091 /* UI dependent functions that must be implemented */ |
1092 int gftpui_protocol_ask_yes_no ( gftp_request * request, | |
1093 char *title, | |
1094 char *question ); | |
1095 | |
484 | 1096 char *gftpui_protocol_ask_user_input ( gftp_request * request, |
1097 char *title, | |
1098 char *question, | |
1099 int shown ); | |
1100 | |
469 | 1101 void gftpui_protocol_update_timeout ( gftp_request * request ); |
1102 | |
1 | 1103 #endif |
1104 |