Avoid a warning.
[openssl.git] / apps / apps.c
1 /* apps/apps.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <sys/types.h>
63 #include <sys/stat.h>
64 #define NON_MAIN
65 #include "apps.h"
66 #undef NON_MAIN
67
68 #ifdef WINDOWS
69 #  include "bss_file.c"
70 #endif
71
72 int app_init(long mesgwin);
73 #ifdef undef /* never finished - probably never will be :-) */
74 int args_from_file(char *file, int *argc, char **argv[])
75         {
76         FILE *fp;
77         int num,i;
78         unsigned int len;
79         static char *buf=NULL;
80         static char **arg=NULL;
81         char *p;
82         struct stat stbuf;
83
84         if (stat(file,&stbuf) < 0) return(0);
85
86         fp=fopen(file,"r");
87         if (fp == NULL)
88                 return(0);
89
90         *argc=0;
91         *argv=NULL;
92
93         len=(unsigned int)stbuf.st_size;
94         if (buf != NULL) Free(buf);
95         buf=(char *)Malloc(len+1);
96         if (buf == NULL) return(0);
97
98         len=fread(buf,1,len,fp);
99         if (len <= 1) return(0);
100         buf[len]='\0';
101
102         i=0;
103         for (p=buf; *p; p++)
104                 if (*p == '\n') i++;
105         if (arg != NULL) Free(arg);
106         arg=(char **)Malloc(sizeof(char *)*(i*2));
107
108         *argv=arg;
109         num=0;
110         p=buf;
111         for (;;)
112                 {
113                 if (!*p) break;
114                 if (*p == '#') /* comment line */
115                         {
116                         while (*p && (*p != '\n')) p++;
117                         continue;
118                         }
119                 /* else we have a line */
120                 *(arg++)=p;
121                 num++;
122                 while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n')))
123                         p++;
124                 if (!*p) break;
125                 if (*p == '\n')
126                         {
127                         *(p++)='\0';
128                         continue;
129                         }
130                 /* else it is a tab or space */
131                 p++;
132                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
133                         p++;
134                 if (!*p) break;
135                 if (*p == '\n')
136                         {
137                         p++;
138                         continue;
139                         }
140                 *(arg++)=p++;
141                 num++;
142                 while (*p && (*p != '\n')) p++;
143                 if (!*p) break;
144                 /* else *p == '\n' */
145                 *(p++)='\0';
146                 }
147         *argc=num;
148         return(1);
149         }
150 #endif
151
152 int str2fmt(char *s)
153         {
154         if      ((*s == 'D') || (*s == 'd'))
155                 return(FORMAT_ASN1);
156         else if ((*s == 'T') || (*s == 't'))
157                 return(FORMAT_TEXT);
158         else if ((*s == 'P') || (*s == 'p'))
159                 return(FORMAT_PEM);
160         else if ((*s == 'N') || (*s == 'n'))
161                 return(FORMAT_NETSCAPE);
162         else
163                 return(FORMAT_UNDEF);
164         }
165
166 #if defined(MSDOS) || defined(WIN32) || defined(WIN16)
167 void program_name(char *in, char *out, int size)
168         {
169         int i,n;
170         char *p=NULL;
171
172         n=strlen(in);
173         /* find the last '/', '\' or ':' */
174         for (i=n-1; i>0; i--)
175                 {
176                 if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':'))
177                         {
178                         p= &(in[i+1]);
179                         break;
180                         }
181                 }
182         if (p == NULL)
183                 p=in;
184         n=strlen(p);
185         /* strip off trailing .exe if present. */
186         if ((n > 4) && (p[n-4] == '.') &&
187                 ((p[n-3] == 'e') || (p[n-3] == 'E')) &&
188                 ((p[n-2] == 'x') || (p[n-2] == 'X')) &&
189                 ((p[n-1] == 'e') || (p[n-1] == 'E')))
190                 n-=4;
191         if (n > size-1)
192                 n=size-1;
193
194         for (i=0; i<n; i++)
195                 {
196                 if ((p[i] >= 'A') && (p[i] <= 'Z'))
197                         out[i]=p[i]-'A'+'a';
198                 else
199                         out[i]=p[i];
200                 }
201         out[n]='\0';
202         }
203 #else
204 #ifdef VMS
205 void program_name(char *in, char *out, int size)
206         {
207         char *p=in, *q;
208         char *chars=":]>";
209
210         while(*chars != '\0')
211                 {
212                 q=strrchr(p,*chars);
213                 if (q > p)
214                         p = q + 1;
215                 chars++;
216                 }
217
218         q=strrchr(p,'.');
219         if (q == NULL)
220                 q = in+size;
221         strncpy(out,p,q-p);
222         out[q-p]='\0';
223         }
224 #else
225 void program_name(char *in, char *out, int size)
226         {
227         char *p;
228
229         p=strrchr(in,'/');
230         if (p != NULL)
231                 p++;
232         else
233                 p=in;
234         strncpy(out,p,size-1);
235         out[size-1]='\0';
236         }
237 #endif
238 #endif
239
240 #ifdef WIN32
241 int WIN32_rename(char *from, char *to)
242         {
243 #ifdef WINNT
244         int ret;
245 /* Note: MoveFileEx() doesn't work under Win95, Win98 */
246
247         ret=MoveFileEx(from,to,MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED);
248         return(ret?0:-1);
249 #else
250         unlink(to);
251         return MoveFile(from, to);
252 #endif
253         }
254 #endif
255
256 int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
257         {
258         int num,len,i;
259         char *p;
260
261         *argc=0;
262         *argv=NULL;
263
264         len=strlen(buf);
265         i=0;
266         if (arg->count == 0)
267                 {
268                 arg->count=20;
269                 arg->data=(char **)Malloc(sizeof(char *)*arg->count);
270                 }
271         for (i=0; i<arg->count; i++)
272                 arg->data[i]=NULL;
273
274         num=0;
275         p=buf;
276         for (;;)
277                 {
278                 /* first scan over white space */
279                 if (!*p) break;
280                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
281                         p++;
282                 if (!*p) break;
283
284                 /* The start of something good :-) */
285                 if (num >= arg->count)
286                         {
287                         arg->count+=20;
288                         arg->data=(char **)Realloc(arg->data,
289                                 sizeof(char *)*arg->count);
290                         if (argc == 0) return(0);
291                         }
292                 arg->data[num++]=p;
293
294                 /* now look for the end of this */
295                 if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */
296                         {
297                         i= *(p++);
298                         arg->data[num-1]++; /* jump over quote */
299                         while (*p && (*p != i))
300                                 p++;
301                         *p='\0';
302                         }
303                 else
304                         {
305                         while (*p && ((*p != ' ') &&
306                                 (*p != '\t') && (*p != '\n')))
307                                 p++;
308
309                         if (*p == '\0')
310                                 p--;
311                         else
312                                 *p='\0';
313                         }
314                 p++;
315                 }
316         *argc=num;
317         *argv=arg->data;
318         return(1);
319         }
320
321 #ifndef APP_INIT
322 int app_init(long mesgwin)
323         {
324         return(1);
325         }
326 #endif
327
328
329 int dump_cert_text (BIO *out, X509 *x)
330 {
331         char buf[256];
332         X509_NAME_oneline(X509_get_subject_name(x),buf,256);
333         BIO_puts(out,"subject=");
334         BIO_puts(out,buf);
335
336         X509_NAME_oneline(X509_get_issuer_name(x),buf,256);
337         BIO_puts(out,"\nissuer= ");
338         BIO_puts(out,buf);
339         BIO_puts(out,"\n");
340         return 0;
341 }
342
343 static char *app_get_pass(BIO *err, char *arg, int keepbio);
344
345 int app_passwd(BIO *err, char *arg1, char *arg2, char **pass1, char **pass2)
346 {
347         int same;
348         if(!arg2 || !arg1 || strcmp(arg1, arg2)) same = 0;
349         else same = 1;
350         if(arg1) {
351                 *pass1 = app_get_pass(err, arg1, same);
352                 if(!*pass1) return 0;
353         } else if(pass1) *pass1 = NULL;
354         if(arg2) {
355                 *pass2 = app_get_pass(err, arg2, same ? 2 : 0);
356                 if(!*pass2) return 0;
357         } else if(pass2) *pass2 = NULL;
358         return 1;
359 }
360
361 static char *app_get_pass(BIO *err, char *arg, int keepbio)
362 {
363         char *tmp, tpass[APP_PASS_LEN];
364         static BIO *pwdbio = NULL;
365         int i;
366         if(!strncmp(arg, "pass:", 5)) return BUF_strdup(arg + 5);
367         if(!strncmp(arg, "env:", 4)) {
368                 tmp = getenv(arg + 4);
369                 if(!tmp) {
370                         BIO_printf(err, "Can't read environment variable %s\n", arg + 4);
371                         return NULL;
372                 }
373                 return BUF_strdup(tmp);
374         }
375         if(!keepbio || !pwdbio) {
376                 if(!strncmp(arg, "file:", 5)) {
377                         pwdbio = BIO_new_file(arg + 5, "r");
378                         if(!pwdbio) {
379                                 BIO_printf(err, "Can't open file %s\n", arg + 5);
380                                 return NULL;
381                         }
382                 } else if(!strncmp(arg, "fd:", 3)) {
383                         BIO *btmp;
384                         i = atoi(arg + 3);
385                         if(i >= 0) pwdbio = BIO_new_fd(i, BIO_NOCLOSE);
386                         if((i < 0) || !pwdbio) {
387                                 BIO_printf(err, "Can't access file descriptor %s\n", arg + 3);
388                                 return NULL;
389                         }
390                         /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
391                         btmp = BIO_new(BIO_f_buffer());
392                         pwdbio = BIO_push(btmp, pwdbio);
393                 } else if(!strcmp(arg, "stdin")) {
394                         pwdbio = BIO_new_fp(stdin, BIO_NOCLOSE);
395                         if(!pwdbio) {
396                                 BIO_printf(err, "Can't open BIO for stdin\n");
397                                 return NULL;
398                         }
399                 } else {
400                         BIO_printf(err, "Invalid password argument \"%s\"\n", arg);
401                         return NULL;
402                 }
403         }
404         i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
405         if(keepbio != 1) {
406                 BIO_free_all(pwdbio);
407                 pwdbio = NULL;
408         }
409         if(i <= 0) {
410                 BIO_printf(err, "Error reading password from BIO\n");
411                 return NULL;
412         }
413         tmp = strchr(tpass, '\n');
414         if(tmp) *tmp = 0;
415         return BUF_strdup(tpass);
416 }