f9cc27052b58b46f1737a8bb6480862b15eaa059
[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 void program_name(char *in, char *out, int size)
205         {
206         char *p;
207
208         p=strrchr(in,'/');
209         if (p != NULL)
210                 p++;
211         else
212                 p=in;
213         strncpy(out,p,size-1);
214         out[size-1]='\0';
215         }
216 #endif
217
218 #ifdef WIN32
219 int WIN32_rename(char *from, char *to)
220         {
221 #ifdef WINNT
222         int ret;
223 /* Note: MoveFileEx() doesn't work under Win95, Win98 */
224
225         ret=MoveFileEx(from,to,MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED);
226         return(ret?0:-1);
227 #else
228         unlink(to);
229         return MoveFile(from, to);
230 #endif
231         }
232 #endif
233
234 int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[])
235         {
236         int num,len,i;
237         char *p;
238
239         *argc=0;
240         *argv=NULL;
241
242         len=strlen(buf);
243         i=0;
244         if (arg->count == 0)
245                 {
246                 arg->count=20;
247                 arg->data=(char **)Malloc(sizeof(char *)*arg->count);
248                 }
249         for (i=0; i<arg->count; i++)
250                 arg->data[i]=NULL;
251
252         num=0;
253         p=buf;
254         for (;;)
255                 {
256                 /* first scan over white space */
257                 if (!*p) break;
258                 while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n')))
259                         p++;
260                 if (!*p) break;
261
262                 /* The start of something good :-) */
263                 if (num >= arg->count)
264                         {
265                         arg->count+=20;
266                         arg->data=(char **)Realloc(arg->data,
267                                 sizeof(char *)*arg->count);
268                         if (argc == 0) return(0);
269                         }
270                 arg->data[num++]=p;
271
272                 /* now look for the end of this */
273                 if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */
274                         {
275                         i= *(p++);
276                         arg->data[num-1]++; /* jump over quote */
277                         while (*p && (*p != i))
278                                 p++;
279                         *p='\0';
280                         }
281                 else
282                         {
283                         while (*p && ((*p != ' ') &&
284                                 (*p != '\t') && (*p != '\n')))
285                                 p++;
286
287                         if (*p == '\0')
288                                 p--;
289                         else
290                                 *p='\0';
291                         }
292                 p++;
293                 }
294         *argc=num;
295         *argv=arg->data;
296         return(1);
297         }
298
299 #ifndef APP_INIT
300 int app_init(long mesgwin)
301         {
302         return(1);
303         }
304 #endif