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