Change functions to ANSI C.
[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 #ifndef NOPROTO
73 int app_init(long mesgwin);
74 #else
75 int app_init();
76 #endif
77
78 #ifdef undef /* never finished - probably never will be :-) */
79 int args_from_file(char *file, int *argc, char **argv[])
80         {
81         FILE *fp;
82         int num,i;
83         unsigned int len;
84         static char *buf=NULL;
85         static char **arg=NULL;
86         char *p;
87         struct stat stbuf;
88
89         if (stat(file,&stbuf) < 0) return(0);
90
91         fp=fopen(file,"r");
92         if (fp == NULL)
93                 return(0);
94
95         *argc=0;
96         *argv=NULL;
97
98         len=(unsigned int)stbuf.st_size;
99         if (buf != NULL) Free(buf);
100         buf=(char *)Malloc(len+1);
101         if (buf == NULL) return(0);
102
103         len=fread(buf,1,len,fp);
104         if (len <= 1) return(0);
105         buf[len]='\0';
106
107         i=0;
108         for (p=buf; *p; p++)
109                 if (*p == '\n') i++;
110         if (arg != NULL) Free(arg);
111         arg=(char **)Malloc(sizeof(char *)*(i*2));
112
113         *argv=arg;
114         num=0;
115         p=buf;
116         for (;;)
117                 {
118                 if (!*p) break;
119                 if (*p == '#') /* comment line */
120                         {
121                         while (*p && (*p != '\n')) p++;
122                         continue;
123                         }
124                 /* else we have a line */
125                 *(arg++)=p;
126                 num++;
127                 while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n')))
128                         p++;
129                 if (!*p) break;
130                 if (*p == '\n')
131                         {
132                         *(p++)='\0';
133                         continue;
134                         }
135                 /* else it is a tab or space */
136                 p++;
137                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
138                         p++;
139                 if (!*p) break;
140                 if (*p == '\n')
141                         {
142                         p++;
143                         continue;
144                         }
145                 *(arg++)=p++;
146                 num++;
147                 while (*p && (*p != '\n')) p++;
148                 if (!*p) break;
149                 /* else *p == '\n' */
150                 *(p++)='\0';
151                 }
152         *argc=num;
153         return(1);
154         }
155 #endif
156
157 int str2fmt(char *s)
158         {
159         if      ((*s == 'D') || (*s == 'd'))
160                 return(FORMAT_ASN1);
161         else if ((*s == 'T') || (*s == 't'))
162                 return(FORMAT_TEXT);
163         else if ((*s == 'P') || (*s == 'p'))
164                 return(FORMAT_PEM);
165         else if ((*s == 'N') || (*s == 'n'))
166                 return(FORMAT_NETSCAPE);
167         else
168                 return(FORMAT_UNDEF);
169         }
170
171 #if defined(MSDOS) || defined(WIN32) || defined(WIN16)
172 void program_name(char *in, char *out, int size)
173         {
174         int i,n;
175         char *p=NULL;
176
177         n=strlen(in);
178         /* find the last '/', '\' or ':' */
179         for (i=n-1; i>0; i--)
180                 {
181                 if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':'))
182                         {
183                         p= &(in[i+1]);
184                         break;
185                         }
186                 }
187         if (p == NULL)
188                 p=in;
189         n=strlen(p);
190         /* strip off trailing .exe if present. */
191         if ((n > 4) && (p[n-4] == '.') &&
192                 ((p[n-3] == 'e') || (p[n-3] == 'E')) &&
193                 ((p[n-2] == 'x') || (p[n-2] == 'X')) &&
194                 ((p[n-1] == 'e') || (p[n-1] == 'E')))
195                 n-=4;
196         if (n > size-1)
197                 n=size-1;
198
199         for (i=0; i<n; i++)
200                 {
201                 if ((p[i] >= 'A') && (p[i] <= 'Z'))
202                         out[i]=p[i]-'A'+'a';
203                 else
204                         out[i]=p[i];
205                 }
206         out[n]='\0';
207         }
208 #else
209 void program_name(char *in, char *out, int size)
210         {
211         char *p;
212
213         p=strrchr(in,'/');
214         if (p != NULL)
215                 p++;
216         else
217                 p=in;
218         strncpy(out,p,size-1);
219         out[size-1]='\0';
220         }
221 #endif
222
223 #ifdef WIN32
224 int WIN32_rename(char *from, char *to)
225         {
226         int ret;
227
228         ret=MoveFileEx(from,to,MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED);
229         return(ret?0:-1);
230         }
231 #endif
232
233 int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
234         {
235         int num,len,i;
236         char *p;
237
238         *argc=0;
239         *argv=NULL;
240
241         len=strlen(buf);
242         i=0;
243         if (arg->count == 0)
244                 {
245                 arg->count=20;
246                 arg->data=(char **)Malloc(sizeof(char *)*arg->count);
247                 }
248         for (i=0; i<arg->count; i++)
249                 arg->data[i]=NULL;
250
251         num=0;
252         p=buf;
253         for (;;)
254                 {
255                 /* first scan over white space */
256                 if (!*p) break;
257                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
258                         p++;
259                 if (!*p) break;
260
261                 /* The start of something good :-) */
262                 if (num >= arg->count)
263                         {
264                         arg->count+=20;
265                         arg->data=(char **)Realloc(arg->data,
266                                 sizeof(char *)*arg->count);
267                         if (argc == 0) return(0);
268                         }
269                 arg->data[num++]=p;
270
271                 /* now look for the end of this */
272                 if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */
273                         {
274                         i= *(p++);
275                         arg->data[num-1]++; /* jump over quote */
276                         while (*p && (*p != i))
277                                 p++;
278                         *p='\0';
279                         }
280                 else
281                         {
282                         while (*p && ((*p != ' ') &&
283                                 (*p != '\t') && (*p != '\n')))
284                                 p++;
285
286                         if (*p == '\0')
287                                 p--;
288                         else
289                                 *p='\0';
290                         }
291                 p++;
292                 }
293         *argc=num;
294         *argv=arg->data;
295         return(1);
296         }
297
298 #ifndef APP_INIT
299 int app_init(long mesgwin)
300         {
301         return(1);
302         }
303 #endif