Mercurial > gftp.yaz
annotate lib/gftp.h @ 637:7659b72c09f5
2004-12-07 Miloslav Trmac <mitr@volny.cz>
* cs.po: Updated Czech translation.
author | mitr |
---|---|
date | Tue, 07 Dec 2004 17:21:59 +0000 |
parents | 43a0556c994f |
children | efe90b739e98 |
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 | |
623 | 164 #if defined (_LARGEFILE_SOURCE) && !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; |
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 */ | |
1 | 405 stopable : 1; |
406 | |
407 off_t gotbytes; | |
408 | |
409 void *protocol_data; | |
410 | |
411 gftp_logging_func logging_function; | |
412 void *user_data; | |
413 | |
173 | 414 int (*init) ( gftp_request * request ); |
309 | 415 void (*copy_param_options) ( gftp_request * dest_request, |
416 gftp_request * src_request ); | |
168 | 417 ssize_t (*read_function) ( gftp_request * request, |
418 void *ptr, | |
419 size_t size, | |
420 int fd ); | |
421 ssize_t (*write_function) ( gftp_request * request, | |
422 const char *ptr, | |
423 size_t size, | |
424 int fd ); | |
1 | 425 void (*destroy) ( gftp_request * request ); |
426 int (*connect) ( gftp_request * request ); | |
168 | 427 int (*post_connect) ( gftp_request * request ); |
1 | 428 void (*disconnect) ( gftp_request * request ); |
58 | 429 off_t (*get_file) ( gftp_request * request, |
1 | 430 const char *filename, |
58 | 431 int fd, |
1 | 432 off_t startsize ); |
433 int (*put_file) ( gftp_request * request, | |
434 const char *filename, | |
58 | 435 int fd, |
1 | 436 off_t startsize, |
437 off_t totalsize ); | |
438 long (*transfer_file) ( gftp_request * fromreq, | |
439 const char *fromfile, | |
440 off_t fromsize, | |
441 gftp_request * toreq, | |
442 const char *tofile, | |
443 off_t tosize ); | |
58 | 444 ssize_t (*get_next_file_chunk) ( gftp_request * request, |
1 | 445 char *buf, |
446 size_t size ); | |
58 | 447 ssize_t (*put_next_file_chunk) ( gftp_request * request, |
1 | 448 char *buf, |
449 size_t size ); | |
450 int (*end_transfer) ( gftp_request * request ); | |
40 | 451 int (*abort_transfer) ( gftp_request * request ); |
520 | 452 int (*stat_filename) ( gftp_request * request, |
453 const char *filename, | |
454 mode_t * mode ); | |
1 | 455 int (*list_files) ( gftp_request * request ); |
456 int (*get_next_file) ( gftp_request * request, | |
457 gftp_file *fle, | |
58 | 458 int fd ); |
485 | 459 ssize_t (*get_next_dirlist_line) ( gftp_request * request, |
460 int fd, | |
461 char *buf, | |
462 size_t buflen ); | |
1 | 463 off_t (*get_file_size) ( gftp_request * request, |
464 const char *filename ); | |
465 int (*chdir) ( gftp_request * request, | |
466 const char *directory ); | |
467 int (*rmdir) ( gftp_request * request, | |
468 const char *directory ); | |
469 int (*rmfile) ( gftp_request * request, | |
470 const char *filename ); | |
471 int (*mkdir) ( gftp_request * request, | |
472 const char *directory ); | |
473 int (*rename) ( gftp_request * request, | |
474 const char *oldname, | |
475 const char *newname ); | |
476 int (*chmod) ( gftp_request * request, | |
477 const char *filename, | |
499 | 478 mode_t mode ); |
1 | 479 int (*set_file_time) ( gftp_request * request, |
480 const char *filename, | |
481 time_t datettime ); | |
482 int (*site) ( gftp_request * request, | |
478 | 483 int specify_site, |
1 | 484 const char *filename ); |
485 int (*parse_url) ( gftp_request * request, | |
486 const char *url ); | |
177 | 487 int (*set_config_options) ( gftp_request * request ); |
63 | 488 void (*swap_socks) ( gftp_request * dest, |
489 gftp_request * source ); | |
1 | 490 |
136 | 491 gftp_config_vars * local_options_vars; |
492 int num_local_options_vars; | |
493 GHashTable * local_options_hash; | |
168 | 494 #ifdef USE_SSL |
495 SSL * ssl; | |
496 #endif | |
184 | 497 |
498 #if GLIB_MAJOR_VERSION > 1 | |
499 GIConv iconv; | |
500 unsigned int iconv_initialized : 1; | |
501 #endif | |
1 | 502 }; |
503 | |
504 | |
136 | 505 typedef struct gftp_transfer_tag |
1 | 506 { |
507 gftp_request * fromreq, | |
508 * toreq; | |
509 | |
305 | 510 unsigned int cancel : 1, |
1 | 511 ready : 1, |
512 started : 1, | |
513 done : 1, | |
514 show : 1, | |
515 stalled : 1, | |
303 | 516 conn_error_no_timeout : 1, |
1 | 517 next_file : 1, |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
518 skip_file : 1; |
1 | 519 |
520 struct timeval starttime, | |
521 lasttime; | |
522 | |
523 double kbs; | |
524 | |
525 GList * files, | |
526 * curfle, | |
527 * updfle; | |
528 | |
19 | 529 long numfiles, |
530 numdirs, | |
531 current_file_number, | |
532 current_file_retries; | |
1 | 533 |
534 off_t curtrans, /* Current transfered bytes for this file */ | |
377 | 535 tot_file_trans, /* Total number of bytes in the file being |
536 transferred */ | |
1 | 537 curresumed, /* Resumed bytes for this file */ |
538 trans_bytes, /* Amount of data transfered for entire | |
539 transfer */ | |
540 total_bytes, /* Grand total bytes for whole transfer */ | |
541 resumed_bytes; /* Grand total of resumed bytes for whole | |
542 transfer */ | |
543 | |
544 void * fromwdata, | |
545 * towdata; | |
546 | |
122 | 547 GStaticMutex statmutex, |
548 structmutex; | |
549 | |
125 | 550 void *user_data; |
1 | 551 void *clist; |
136 | 552 } gftp_transfer; |
1 | 553 |
554 | |
555 typedef struct gftp_log_tag | |
556 { | |
557 char *msg; | |
558 gftp_logging_level type; | |
559 } gftp_log; | |
560 | |
561 | |
562 typedef struct supported_gftp_protocols_tag | |
563 { | |
564 char *name; /* Description of protocol */ | |
173 | 565 int (*init) (gftp_request * request); /* Init function */ |
122 | 566 void (*register_options) (void); /* Protocol options */ |
1 | 567 char *url_prefix; /* URL Prefix */ |
542 | 568 unsigned int default_port; /* Default port */ |
341 | 569 unsigned int shown : 1, /* Whether this protocol is |
122 | 570 shown or not to the user in |
571 the protocol dropdown box */ | |
341 | 572 use_threads : 1; /* Whether or not operations in |
573 this protocol should use | |
574 threads */ | |
1 | 575 } supported_gftp_protocols; |
576 | |
577 | |
122 | 578 typedef struct gftp_bookmarks_tag gftp_bookmarks_var; |
1 | 579 |
580 struct gftp_bookmarks_tag | |
581 { | |
609 | 582 char *path, /* Path */ |
583 *oldpath, /* Old path name */ | |
584 *hostname, /* Our actual internet hostname */ | |
1 | 585 *protocol, /* Protocol we will connect through */ |
586 *remote_dir, /* Initial directory */ | |
587 *local_dir, /* Init local directory */ | |
588 *user, /* Username to log in as */ | |
589 *pass, /* Our password */ | |
590 *acct; /* Account */ | |
591 | |
592 unsigned int port, /* The port we will connect to */ | |
593 isfolder : 1, /* If this is set, then the children field can | |
594 be non-NULL */ | |
595 save_password : 1; /* Save this password */ | |
122 | 596 gftp_bookmarks_var *children, /* The children of this node. */ |
597 *prev, /* The parent of this node */ | |
598 *next; /* The next sibling of this node */ | |
1 | 599 gpointer cnode; |
600 | |
199 | 601 gftp_config_vars * local_options_vars; |
602 int num_local_options_vars; | |
603 GHashTable * local_options_hash; | |
1 | 604 }; |
605 | |
606 | |
607 typedef struct gftp_file_extensions_tag | |
608 { | |
609 char *ext, /* The file extension to register */ | |
610 *filename, /* The xpm file to display */ | |
611 *view_program, /* The program used to view this file */ | |
612 *ascii_binary; /* Is this a ASCII transfer or a BINARY transfer */ | |
516 | 613 unsigned int stlen; /* How long is the file extension. */ |
1 | 614 } gftp_file_extensions; |
615 | |
616 | |
617 typedef struct gftp_color_tag | |
618 { | |
619 gushort red, | |
620 green, | |
621 blue; | |
622 } gftp_color; | |
623 | |
624 | |
58 | 625 typedef struct gftp_getline_buffer_tag |
626 { | |
627 char *buffer, | |
628 *curpos; | |
629 size_t max_bufsize, | |
630 cur_bufsize; | |
179 | 631 unsigned int eof : 1; |
58 | 632 } gftp_getline_buffer; |
633 | |
126 | 634 |
122 | 635 /* Global config options. These are defined in options.h */ |
636 extern GList * gftp_file_transfers, * gftp_file_transfer_logs, | |
637 * gftp_options_list; | |
638 extern GHashTable * gftp_global_options_htable, * gftp_bookmarks_htable, | |
639 * gftp_config_list_htable; | |
640 extern gftp_config_vars gftp_global_config_vars[]; | |
1 | 641 extern supported_gftp_protocols gftp_protocols[]; |
122 | 642 extern gftp_bookmarks_var * gftp_bookmarks; |
643 extern char gftp_version[]; | |
644 extern FILE * gftp_logfd; | |
201 | 645 extern int gftp_configuration_changed; |
122 | 646 |
647 /* This is defined in config_file.c */ | |
648 | |
649 extern gftp_option_type_var gftp_option_types[]; | |
1 | 650 |
651 /* cache.c */ | |
182 | 652 void gftp_generate_cache_description ( gftp_request * request, |
653 char *description, | |
654 size_t len, | |
655 int ignore_directory ); | |
656 | |
58 | 657 int gftp_new_cache_entry ( gftp_request * request ); |
1 | 658 |
58 | 659 int gftp_find_cache_entry ( gftp_request * request ); |
1 | 660 |
661 void gftp_clear_cache_files ( void ); | |
662 | |
47 | 663 void gftp_delete_cache_entry ( gftp_request * request, |
182 | 664 char *descr, |
47 | 665 int ignore_directory ); |
1 | 666 |
667 /* config_file.c */ | |
198 | 668 int gftp_config_parse_args ( char *str, |
669 int numargs, | |
670 int lineno, | |
671 char **first, | |
672 ... ); | |
673 | |
122 | 674 void gftp_add_bookmark ( gftp_bookmarks_var * newentry ); |
675 | |
124 | 676 void gftp_read_config_file ( char *global_data_path ); |
1 | 677 |
122 | 678 void gftp_write_bookmarks_file ( void ); |
1 | 679 |
680 void gftp_write_config_file ( void ); | |
681 | |
122 | 682 GHashTable * build_bookmarks_hash_table ( gftp_bookmarks_var * entry ); |
683 | |
684 void print_bookmarks ( gftp_bookmarks_var * bookmarks ); | |
685 | |
374 | 686 void gftp_lookup_global_option ( const char * key, |
122 | 687 void *value ); |
26 | 688 |
122 | 689 void gftp_lookup_request_option ( gftp_request * request, |
374 | 690 const char * key, |
122 | 691 void *value ); |
1 | 692 |
229 | 693 void gftp_lookup_bookmark_option ( gftp_bookmarks_var * bm, |
374 | 694 const char * key, |
229 | 695 void *value ); |
696 | |
374 | 697 void gftp_set_global_option ( const char * key, |
227 | 698 const void *value ); |
122 | 699 |
700 void gftp_set_request_option ( gftp_request * request, | |
374 | 701 const char * key, |
229 | 702 const void *value ); |
703 | |
704 void gftp_set_bookmark_option ( gftp_bookmarks_var * bm, | |
374 | 705 const char * key, |
229 | 706 const void *value ); |
122 | 707 |
708 void gftp_register_config_vars ( gftp_config_vars *config_vars ); | |
1 | 709 |
201 | 710 void gftp_copy_local_options ( gftp_config_vars ** new_options_vars, |
711 GHashTable ** new_options_hash, | |
429 | 712 int *new_num_local_options_vars, |
201 | 713 gftp_config_vars * orig_options, |
714 int num_local_options_vars ); | |
715 | |
716 void gftp_config_free_options ( gftp_config_vars * options_vars, | |
717 GHashTable * options_hash, | |
718 int num_options_vars ); | |
719 | |
720 void gftp_bookmarks_destroy ( gftp_bookmarks_var * bookmarks ); | |
721 | |
218 | 722 void gftp_free_proxy_hosts ( GList * proxy_hosts ); |
723 | |
724 GList * gftp_copy_proxy_hosts ( GList * proxy_hosts ); | |
725 | |
1 | 726 /* misc.c */ |
14
83090328581e
* More largefile support. Hopefully all that is left is the configure stuff
masneyb
parents:
1
diff
changeset
|
727 char *insert_commas ( off_t number, |
1 | 728 char *dest_str, |
729 size_t dest_len ); | |
730 | |
731 char *alltrim ( char *str ); | |
732 | |
555 | 733 char *gftp_expand_path ( gftp_request * request, |
734 const char *src ); | |
1 | 735 |
736 void make_nonnull ( char **str ); | |
737 | |
374 | 738 int gftp_match_filespec ( const char *filename, |
739 const char *filespec ); | |
1 | 740 |
741 int gftp_parse_command_line ( int *argc, | |
742 char ***argv ); | |
743 | |
744 void gftp_usage ( void ); | |
745 | |
746 gint string_hash_compare ( gconstpointer path1, | |
747 gconstpointer path2 ); | |
748 | |
749 guint string_hash_function ( gconstpointer key ); | |
750 | |
751 void free_file_list ( GList * filelist ); | |
752 | |
753 gftp_file * copy_fdata ( gftp_file * fle ); | |
754 | |
755 int compare_request ( gftp_request * request1, | |
756 gftp_request * request2, | |
757 int compare_dirs ); | |
758 | |
129 | 759 gftp_transfer * gftp_tdata_new ( void ); |
760 | |
1 | 761 void free_tdata ( gftp_transfer * tdata ); |
762 | |
368 | 763 gftp_request * gftp_copy_request ( gftp_request * req ); |
1 | 764 |
16 | 765 GList * gftp_sort_filelist ( GList * filelist, |
766 int column, | |
767 int asds ); | |
768 | |
131 | 769 char * gftp_gen_ls_string ( gftp_file * fle, |
770 char *file_prefixstr, | |
771 char *file_suffixstr ); | |
772 | |
168 | 773 char * base64_encode ( char *str ); |
774 | |
609 | 775 void gftp_free_bookmark ( gftp_bookmarks_var * entry, |
776 int free_node ); | |
199 | 777 |
201 | 778 void gftp_shutdown ( void ); |
199 | 779 |
207 | 780 GList * get_next_selection ( GList * selection, |
781 GList ** list, | |
782 int *curnum ); | |
783 | |
555 | 784 char * gftp_build_path ( gftp_request * request, |
785 const char *first_element, | |
227 | 786 ... ); |
787 | |
290 | 788 void gftp_locale_init ( void ); |
789 | |
330 | 790 char * gftp_scramble_password ( const char *password ); |
791 | |
792 char * gftp_descramble_password ( const char *password ); | |
793 | |
378 | 794 int gftp_get_transfer_action ( gftp_request * request, |
795 gftp_file * fle ); | |
796 | |
483 | 797 char * gftp_get_share_dir ( void ); |
798 | |
402 | 799 /* mkstemps.c */ |
800 int mkstemps ( char *template, | |
801 int suffix_len ); | |
802 | |
1 | 803 /* protocols.c */ |
804 #define GFTP_FTP_NUM 0 | |
389 | 805 #define GFTP_FTPS_NUM 1 |
806 #define GFTP_HTTP_NUM 2 | |
807 #define GFTP_HTTPS_NUM 3 | |
808 #define GFTP_LOCAL_NUM 4 | |
809 #define GFTP_SSHV2_NUM 5 | |
810 #define GFTP_BOOKMARK_NUM 6 | |
122 | 811 |
1 | 812 #define GFTP_IS_CONNECTED(request) ((request) != NULL && \ |
169 | 813 ((request)->datafd > 0 || \ |
58 | 814 (request)->cached || \ |
815 (request)->always_connected)) | |
1 | 816 |
817 | |
173 | 818 int rfc959_init ( gftp_request * request ); |
1 | 819 |
122 | 820 void rfc959_register_module ( void ); |
821 | |
1 | 822 int rfc959_get_next_file ( gftp_request * request, |
823 gftp_file *fle, | |
58 | 824 int fd ); |
1 | 825 |
451 | 826 int rfc959_connect ( gftp_request * request ); |
827 | |
389 | 828 int ftps_init ( gftp_request * request ); |
829 | |
830 void ftps_register_module ( void ); | |
831 | |
173 | 832 int rfc2068_init ( gftp_request * request ); |
1 | 833 |
122 | 834 void rfc2068_register_module ( void ); |
835 | |
173 | 836 int https_init ( gftp_request * request ); |
168 | 837 |
838 void https_register_module ( void ); | |
839 | |
173 | 840 int local_init ( gftp_request * request ); |
1 | 841 |
122 | 842 void local_register_module ( void ); |
843 | |
173 | 844 int sshv2_init ( gftp_request * request ); |
1 | 845 |
122 | 846 void sshv2_register_module ( void ); |
847 | |
174 | 848 void ssl_register_module ( void ); |
849 | |
173 | 850 int bookmark_init ( gftp_request * request ); |
1 | 851 |
122 | 852 void bookmark_register_module ( void ); |
853 | |
1 | 854 gftp_request *gftp_request_new ( void ); |
855 | |
67 | 856 void gftp_request_destroy ( gftp_request * request, |
857 int free_request ); | |
1 | 858 |
309 | 859 void gftp_copy_param_options ( gftp_request * dest_request, |
860 gftp_request * src_request ); | |
861 | |
598 | 862 void gftp_file_destroy ( gftp_file *file, |
863 int free_it ); | |
1 | 864 |
865 int gftp_connect ( gftp_request * request ); | |
866 | |
867 void gftp_disconnect ( gftp_request * request ); | |
868 | |
58 | 869 off_t gftp_get_file ( gftp_request * request, |
1 | 870 const char *filename, |
58 | 871 int fd, |
244 | 872 off_t startsize ); |
1 | 873 |
874 int gftp_put_file ( gftp_request * request, | |
875 const char *filename, | |
58 | 876 int fd, |
244 | 877 off_t startsize, |
878 off_t totalsize ); | |
1 | 879 |
261 | 880 off_t gftp_transfer_file ( gftp_request *fromreq, |
1 | 881 const char *fromfile, |
58 | 882 int fromfd, |
244 | 883 off_t fromsize, |
1 | 884 gftp_request *toreq, |
885 const char *tofile, | |
58 | 886 int tofd, |
244 | 887 off_t tosize ); |
1 | 888 |
58 | 889 ssize_t gftp_get_next_file_chunk ( gftp_request * request, |
1 | 890 char *buf, |
891 size_t size ); | |
892 | |
58 | 893 ssize_t gftp_put_next_file_chunk ( gftp_request * request, |
1 | 894 char *buf, |
895 size_t size ); | |
896 | |
897 int gftp_list_files ( gftp_request * request ); | |
898 | |
186 | 899 char * gftp_string_to_utf8 ( gftp_request * request, |
291 | 900 const char *str ); |
901 | |
902 char * gftp_string_from_utf8 ( gftp_request * request, | |
903 const char *str ); | |
186 | 904 |
87 | 905 int gftp_parse_bookmark ( gftp_request * request, |
243 | 906 gftp_request * local_request, |
275 | 907 const char * bookmark, |
908 int *refresh_local ); | |
87 | 909 |
1 | 910 int gftp_parse_url ( gftp_request * request, |
911 const char *url ); | |
912 | |
913 int gftp_get_next_file ( gftp_request * request, | |
377 | 914 const char *filespec, |
1 | 915 gftp_file *fle ); |
916 | |
917 int gftp_end_transfer ( gftp_request * request ); | |
918 | |
40 | 919 int gftp_abort_transfer ( gftp_request * request ); |
920 | |
520 | 921 int gftp_stat_filename ( gftp_request * request, |
922 const char *filename, | |
923 mode_t * mode ); | |
500 | 924 |
1 | 925 void gftp_set_hostname ( gftp_request * request, |
926 const char *hostname ); | |
927 | |
928 void gftp_set_username ( gftp_request * request, | |
929 const char *username ); | |
930 | |
931 void gftp_set_password ( gftp_request * request, | |
932 const char *password ); | |
933 | |
934 void gftp_set_account ( gftp_request * request, | |
935 const char *account ); | |
936 | |
937 int gftp_set_directory ( gftp_request * request, | |
938 const char *directory ); | |
939 | |
940 void gftp_set_port ( gftp_request * request, | |
941 unsigned int port ); | |
942 | |
943 int gftp_remove_directory ( gftp_request * request, | |
944 const char *directory ); | |
945 | |
946 int gftp_remove_file ( gftp_request * request, | |
947 const char *file ); | |
948 | |
949 int gftp_make_directory ( gftp_request * request, | |
950 const char *directory ); | |
951 | |
952 int gftp_rename_file ( gftp_request * request, | |
953 const char *oldname, | |
954 const char *newname ); | |
955 | |
956 int gftp_chmod ( gftp_request * request, | |
957 const char *file, | |
499 | 958 mode_t mode ); |
1 | 959 |
960 int gftp_set_file_time ( gftp_request * request, | |
961 const char *file, | |
962 time_t datetime ); | |
963 | |
964 char gftp_site_cmd ( gftp_request * request, | |
478 | 965 int specify_site, |
1 | 966 const char *command ); |
967 | |
58 | 968 off_t gftp_get_file_size ( gftp_request * request, |
1 | 969 const char *filename ); |
970 | |
971 void gftp_calc_kbs ( gftp_transfer * tdata, | |
972 ssize_t num_read ); | |
973 | |
102 | 974 time_t parse_time ( char *str, |
975 char **endpos ); | |
976 | |
91 | 977 int gftp_parse_ls ( gftp_request * request, |
978 const char *lsoutput, | |
485 | 979 gftp_file *fle, |
980 int fd ); | |
1 | 981 |
982 int gftp_get_all_subdirs ( gftp_transfer * transfer, | |
983 void (*update_func) | |
984 ( gftp_transfer * transfer )); | |
985 | |
986 int gftp_connect_server ( gftp_request * request, | |
122 | 987 char *service, |
988 char *proxy_hostname, | |
516 | 989 unsigned int proxy_port ); |
1 | 990 |
122 | 991 #if !defined (HAVE_GETADDRINFO) || !defined (HAVE_GAI_STRERROR) |
1 | 992 |
993 struct hostent *r_gethostbyname ( const char *name, | |
994 struct hostent *result_buf, | |
995 int *h_errnop ); | |
996 | |
56 | 997 #endif |
998 | |
1 | 999 struct servent *r_getservbyname ( const char *name, |
1000 const char *proto, | |
1001 struct servent *result_buf, | |
1002 int *h_errnop ); | |
122 | 1003 |
177 | 1004 int gftp_set_config_options ( gftp_request * request ); |
1 | 1005 |
1006 void print_file_list ( GList * list ); | |
1007 | |
201 | 1008 void gftp_free_getline_buffer ( gftp_getline_buffer ** rbuf ); |
168 | 1009 |
58 | 1010 ssize_t gftp_get_line ( gftp_request * request, |
1011 gftp_getline_buffer ** rbuf, | |
41 | 1012 char * str, |
1013 size_t len, | |
58 | 1014 int fd ); |
1015 | |
168 | 1016 ssize_t gftp_fd_read ( gftp_request * request, |
58 | 1017 void *ptr, |
1018 size_t size, | |
1019 int fd ); | |
41 | 1020 |
168 | 1021 ssize_t gftp_fd_write ( gftp_request * request, |
58 | 1022 const char *ptr, |
41 | 1023 size_t size, |
58 | 1024 int fd ); |
1025 | |
1026 ssize_t gftp_writefmt ( gftp_request * request, | |
1027 int fd, | |
1028 const char *fmt, | |
1029 ... ); | |
1030 | |
168 | 1031 int gftp_fd_set_sockblocking ( gftp_request * request, |
58 | 1032 int fd, |
1033 int non_blocking ); | |
41 | 1034 |
63 | 1035 void gftp_swap_socks ( gftp_request * dest, |
1036 gftp_request * source ); | |
1037 | |
122 | 1038 void gftp_calc_kbs ( gftp_transfer * tdata, |
1039 ssize_t num_read ); | |
1040 | |
125 | 1041 int gftp_get_transfer_status ( gftp_transfer * tdata, |
1042 ssize_t num_read ); | |
1043 | |
182 | 1044 int gftp_fd_open ( gftp_request * request, |
1045 const char *pathname, | |
1046 int flags, | |
1047 mode_t perms ); | |
1048 | |
422 | 1049 void gftp_setup_startup_directory ( gftp_request * request ); |
1050 | |
542 | 1051 unsigned int gftp_protocol_default_port ( gftp_request * request ); |
1052 | |
146 | 1053 /* pty.c */ |
210 | 1054 char * gftp_get_pty_impl ( void ); |
179 | 1055 |
458 | 1056 pid_t gftp_exec ( gftp_request * request, |
1057 int *fdm, | |
1058 int *ptymfd, | |
210 | 1059 char **args ); |
146 | 1060 |
499 | 1061 char *gftp_convert_attributes_from_mode_t ( mode_t mode ); |
1062 | |
1063 mode_t gftp_convert_attributes_to_mode_t ( char *attribs ); | |
1064 | |
1065 | |
168 | 1066 #ifdef USE_SSL |
1067 /* sslcommon.c */ | |
1068 int gftp_ssl_startup ( gftp_request * request ); | |
1069 | |
1070 int gftp_ssl_session_setup ( gftp_request * request ); | |
1071 | |
1072 void gftp_ssl_free ( gftp_request * request ); | |
1073 | |
1074 ssize_t gftp_ssl_read ( gftp_request * request, | |
1075 void *ptr, | |
1076 size_t size, | |
1077 int fd ); | |
1078 | |
1079 ssize_t gftp_ssl_write ( gftp_request * request, | |
1080 const char *ptr, | |
1081 size_t size, | |
1082 int fd ); | |
1083 #endif /* USE_SSL */ | |
1084 | |
460 | 1085 /* UI dependent functions that must be implemented */ |
1086 int gftpui_protocol_ask_yes_no ( gftp_request * request, | |
1087 char *title, | |
1088 char *question ); | |
1089 | |
484 | 1090 char *gftpui_protocol_ask_user_input ( gftp_request * request, |
1091 char *title, | |
1092 char *question, | |
1093 int shown ); | |
1094 | |
469 | 1095 void gftpui_protocol_update_timeout ( gftp_request * request ); |
1096 | |
1 | 1097 #endif |
1098 |