2 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 * 2005 Free Software Foundation, Inc.
5 * This file is part of GnuPG.
7 * GnuPG is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * GnuPG is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 #include <sys/types.h>
41 #define SKELEXT ".skl"
43 #define SKELEXT EXTSEP_S "skel"
46 #if defined (HAVE_DRIVE_LETTERS) || defined (__riscos__)
47 #define CMP_FILENAME(a,b) ascii_strcasecmp( (a), (b) )
49 #define CMP_FILENAME(a,b) strcmp( (a), (b) )
52 #ifdef MKDIR_TAKES_ONE_ARG
54 #define mkdir(a,b) mkdir(a)
57 /* FIXME: Implement opt.interactive. */
60 * Check whether FNAME exists and ask if it's okay to overwrite an
62 * Returns: True: it's okay to overwrite or the file does not exist
63 * False: Do not overwrite
66 overwrite_filep( const char *fname
)
68 if( iobuf_is_pipe_filename (fname
) )
69 return 1; /* Writing to stdout is always okay */
71 if( access( fname
, F_OK
) )
72 return 1; /* does not exist */
74 #ifndef HAVE_DOSISH_SYSTEM
75 if ( !strcmp ( fname
, "/dev/null" ) )
76 return 1; /* does not do any harm */
78 #ifdef HAVE_W32_SYSTEM
79 if ( !strcmp ( fname
, "nul" ) )
83 /* fixme: add some backup stuff in case of overwrite */
86 if( opt
.answer_no
|| opt
.batch
)
87 return 0; /* do not overwrite */
89 tty_printf(_("File `%s' exists. "), fname
);
92 if( cpr_get_answer_is_yes("openfile.overwrite.okay",
93 _("Overwrite? (y/N) ")) )
100 * Strip known extensions from iname and return a newly allocated
101 * filename. Return NULL if we can't do that.
104 make_outfile_name( const char *iname
)
108 if ( iobuf_is_pipe_filename (iname
) )
112 if( n
> 4 && ( !CMP_FILENAME(iname
+n
-4, EXTSEP_S
"gpg")
113 || !CMP_FILENAME(iname
+n
-4, EXTSEP_S
"pgp")
114 || !CMP_FILENAME(iname
+n
-4, EXTSEP_S
"sig")
115 || !CMP_FILENAME(iname
+n
-4, EXTSEP_S
"asc") ) ) {
116 char *buf
= xstrdup( iname
);
120 else if( n
> 5 && !CMP_FILENAME(iname
+n
-5, EXTSEP_S
"sign") ) {
121 char *buf
= xstrdup( iname
);
126 log_info(_("%s: unknown suffix\n"), iname
);
131 /* Ask for an output filename; use the given one as default. Return
132 NULL if no file has been given or if it is not possible to ask the
133 user. NAME is the template len which might conatin enbedded Nuls.
134 NAMELEN is its actual length.
137 ask_outfile_name( const char *name
, size_t namelen
)
148 defname
= name
&& namelen
? make_printable_string (name
, namelen
, 0) : NULL
;
150 s
= _("Enter new filename");
151 n
= strlen(s
) + (defname
?strlen (defname
):0) + 10;
152 prompt
= xmalloc (n
);
154 snprintf (prompt
, n
-1, "%s [%s]: ", s
, defname
);
156 snprintf (prompt
, n
-1, "%s: ", s
);
157 tty_enable_completion(NULL
);
158 fname
= cpr_get ("openfile.askoutname", prompt
);
160 tty_disable_completion ();
176 * Make an output filename for the inputfile INAME.
177 * Returns an IOBUF and an errorcode
178 * Mode 0 = use ".gpg"
183 open_outfile( const char *iname
, int mode
, IOBUF
*a
)
188 if( iobuf_is_pipe_filename (iname
) && !opt
.outfile
) {
189 *a
= iobuf_create(NULL
);
191 rc
= gpg_error_from_syserror ();
192 log_error(_("can't open `%s': %s\n"), "[stdout]", strerror(errno
) );
194 else if( opt
.verbose
)
195 log_info(_("writing to stdout\n"));
203 #ifdef HAVE_W32_SYSTEM
209 else if( opt
.outfile
)
212 #ifdef USE_ONLY_8DOT3
213 if (opt
.mangle_dos_filenames
)
215 /* It is quite common DOS system to have only one dot in a
216 * a filename So if we have something like this, we simple
217 * replace the suffix execpt in cases where the suffix is
218 * larger than 3 characters and not the same as.
219 * We should really map the filenames to 8.3 but this tends to
220 * be more complicated and is probaly a duty of the filesystem
223 const char *newsfx
= mode
==1 ? ".asc" :
224 mode
==2 ? ".sig" : ".gpg";
226 buf
= xmalloc(strlen(iname
)+4+1);
228 dot
= strchr(buf
, '.' );
229 if ( dot
&& dot
> buf
&& dot
[1] && strlen(dot
) <= 4
230 && CMP_FILENAME(newsfx
, dot
) )
232 strcpy(dot
, newsfx
);
234 else if ( dot
&& !dot
[1] ) /* don't duplicate a dot */
235 strcpy( dot
, newsfx
+1 );
237 strcat ( buf
, newsfx
);
240 #endif /* USE_ONLY_8DOT3 */
242 buf
= xmalloc(strlen(iname
)+4+1);
243 strcpy(stpcpy(buf
,iname
), mode
==1 ? EXTSEP_S
"asc" :
244 mode
==2 ? EXTSEP_S
"sig" : EXTSEP_S
"gpg");
250 while( !overwrite_filep (name
) )
252 char *tmp
= ask_outfile_name (NULL
, 0);
256 rc
= gpg_error (GPG_ERR_EEXIST
);
265 if (is_secured_filename (name
) )
271 *a
= iobuf_create( name
);
274 rc
= gpg_error_from_syserror ();
275 log_error(_("can't create `%s': %s\n"), name
, strerror(errno
) );
277 else if( opt
.verbose
)
278 log_info(_("writing to `%s'\n"), name
);
284 iobuf_ioctl (*a
,3,1,NULL
); /* disable fd caching */
291 * Try to open a file without the extension ".sig" or ".asc"
292 * Return NULL if such a file is not available.
295 open_sigfile( const char *iname
, progress_filter_context_t
*pfx
)
300 if( !iobuf_is_pipe_filename (iname
) ) {
302 if( len
> 4 && ( !strcmp(iname
+ len
- 4, EXTSEP_S
"sig")
303 || ( len
> 5 && !strcmp(iname
+ len
- 5, EXTSEP_S
"sign") )
304 || !strcmp(iname
+ len
- 4, EXTSEP_S
"asc")) ) {
306 buf
= xstrdup(iname
);
307 buf
[len
-(buf
[len
-1]=='n'?5:4)] = 0 ;
308 a
= iobuf_open( buf
);
309 if (a
&& is_secured_file (iobuf_get_fd (a
)))
315 if( a
&& opt
.verbose
)
316 log_info(_("assuming signed data in `%s'\n"), buf
);
318 handle_progress (pfx
, a
, buf
);
326 * Copy the option file skeleton to the given directory.
329 copy_options_file( const char *destdir
)
331 const char *datadir
= gnupg_datadir ();
343 fname
= xmalloc( strlen(datadir
) + strlen(destdir
) + 15 );
344 strcpy(stpcpy(fname
, datadir
), DIRSEP_S
"gpg-conf" SKELEXT
);
345 src
= fopen( fname
, "r" );
346 if (src
&& is_secured_file (fileno (src
)))
353 log_info (_("can't open `%s': %s\n"), fname
, strerror(errno
) );
357 strcpy(stpcpy(fname
, destdir
), DIRSEP_S
"gpg" EXTSEP_S
"conf" );
359 if ( is_secured_filename (fname
) )
365 dst
= fopen( fname
, "w" );
368 log_info (_("can't create `%s': %s\n"), fname
, strerror(errno
) );
374 while( (c
=getc(src
)) != EOF
) {
375 if( linefeeds
< 3 ) {
384 if (c
== ' ' || c
== '\t')
395 log_info(_("new configuration file `%s' created\n"), fname
);
397 log_info (_("WARNING: options in `%s'"
398 " are not yet active during this run\n"),
405 try_make_homedir (const char *fname
)
407 const char *defhome
= standard_homedir ();
409 /* Create the directory only if the supplied directory name is the
410 same as the default one. This way we avoid to create arbitrary
411 directories when a non-default home directory is used. To cope
412 with HOME, we do compare only the suffix if we see that the
413 default homedir does start with a tilde. */
414 if ( opt
.dry_run
|| opt
.no_homedir_creation
)
418 #ifdef HAVE_W32_SYSTEM
419 ( !compare_filenames (fname
, defhome
) )
422 && (strlen(fname
) >= strlen (defhome
+1)
423 && !strcmp(fname
+strlen(fname
)-strlen(defhome
+1), defhome
+1 ) ))
424 || (*defhome
!= '~' && !compare_filenames( fname
, defhome
) )
428 if ( mkdir (fname
, S_IRUSR
|S_IWUSR
|S_IXUSR
) )
429 log_fatal ( _("can't create directory `%s': %s\n"),
430 fname
, strerror(errno
) );
431 else if (!opt
.quiet
)
432 log_info ( _("directory `%s' created\n"), fname
);
433 copy_options_file( fname
);