RFC4507 (including RFC4507bis) TLS stateless session resumption support
[openssl.git] / apps / openssl.c
1 /* apps/openssl.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  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer. 
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112
113 #include <stdio.h>
114 #include <string.h>
115 #include <stdlib.h>
116 #define OPENSSL_C /* tells apps.h to use complete apps_startup() */
117 #include "apps.h"
118 #include <openssl/bio.h>
119 #include <openssl/crypto.h>
120 #include <openssl/lhash.h>
121 #include <openssl/conf.h>
122 #include <openssl/x509.h>
123 #include <openssl/pem.h>
124 #include <openssl/ssl.h>
125 #ifndef OPENSSL_NO_ENGINE
126 #include <openssl/engine.h>
127 #endif
128 #define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */
129 #include "progs.h"
130 #include "s_apps.h"
131 #include <openssl/err.h>
132
133 /* The LHASH callbacks ("hash" & "cmp") have been replaced by functions with the
134  * base prototypes (we cast each variable inside the function to the required
135  * type of "FUNCTION*"). This removes the necessity for macro-generated wrapper
136  * functions. */
137
138 /* static unsigned long MS_CALLBACK hash(FUNCTION *a); */
139 static unsigned long MS_CALLBACK hash(const void *a_void);
140 /* static int MS_CALLBACK cmp(FUNCTION *a,FUNCTION *b); */
141 static int MS_CALLBACK cmp(const void *a_void,const void *b_void);
142 static LHASH *prog_init(void );
143 static int do_cmd(LHASH *prog,int argc,char *argv[]);
144 static void list_pkey(BIO *out);
145 static void list_cipher(BIO *out);
146 static void list_md(BIO *out);
147 char *default_config_file=NULL;
148
149 /* Make sure there is only one when MONOLITH is defined */
150 #ifdef MONOLITH
151 CONF *config=NULL;
152 BIO *bio_err=NULL;
153 #endif
154
155
156 static void lock_dbg_cb(int mode, int type, const char *file, int line)
157         {
158         static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */
159         const char *errstr = NULL;
160         int rw;
161         
162         rw = mode & (CRYPTO_READ|CRYPTO_WRITE);
163         if (!((rw == CRYPTO_READ) || (rw == CRYPTO_WRITE)))
164                 {
165                 errstr = "invalid mode";
166                 goto err;
167                 }
168
169         if (type < 0 || type >= CRYPTO_NUM_LOCKS)
170                 {
171                 errstr = "type out of bounds";
172                 goto err;
173                 }
174
175         if (mode & CRYPTO_LOCK)
176                 {
177                 if (modes[type])
178                         {
179                         errstr = "already locked";
180                         /* must not happen in a single-threaded program
181                          * (would deadlock) */
182                         goto err;
183                         }
184
185                 modes[type] = rw;
186                 }
187         else if (mode & CRYPTO_UNLOCK)
188                 {
189                 if (!modes[type])
190                         {
191                         errstr = "not locked";
192                         goto err;
193                         }
194                 
195                 if (modes[type] != rw)
196                         {
197                         errstr = (rw == CRYPTO_READ) ?
198                                 "CRYPTO_r_unlock on write lock" :
199                                 "CRYPTO_w_unlock on read lock";
200                         }
201
202                 modes[type] = 0;
203                 }
204         else
205                 {
206                 errstr = "invalid mode";
207                 goto err;
208                 }
209
210  err:
211         if (errstr)
212                 {
213                 /* we cannot use bio_err here */
214                 fprintf(stderr, "openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
215                         errstr, mode, type, file, line);
216                 }
217         }
218
219
220 int main(int Argc, char *Argv[])
221         {
222         ARGS arg;
223 #define PROG_NAME_SIZE  39
224         char pname[PROG_NAME_SIZE+1];
225         FUNCTION f,*fp;
226         MS_STATIC const char *prompt;
227         MS_STATIC char buf[1024];
228         char *to_free=NULL;
229         int n,i,ret=0;
230         int argc;
231         char **argv,*p;
232         LHASH *prog=NULL;
233         long errline;
234  
235         arg.data=NULL;
236         arg.count=0;
237
238         if (bio_err == NULL)
239                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
240                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
241
242         if (getenv("OPENSSL_DEBUG_MEMORY") != NULL) /* if not defined, use compiled-in library defaults */
243                 {
244                 if (!(0 == strcmp(getenv("OPENSSL_DEBUG_MEMORY"), "off")))
245                         {
246                         CRYPTO_malloc_debug_init();
247                         CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
248                         }
249                 else
250                         {
251                         /* OPENSSL_DEBUG_MEMORY=off */
252                         CRYPTO_set_mem_debug_functions(0, 0, 0, 0, 0);
253                         }
254                 }
255         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
256
257 #if 0
258         if (getenv("OPENSSL_DEBUG_LOCKING") != NULL)
259 #endif
260                 {
261                 CRYPTO_set_locking_callback(lock_dbg_cb);
262                 }
263
264         apps_startup();
265
266         /* Lets load up our environment a little */
267         p=getenv("OPENSSL_CONF");
268         if (p == NULL)
269                 p=getenv("SSLEAY_CONF");
270         if (p == NULL)
271                 p=to_free=make_config_name();
272
273         default_config_file=p;
274
275         config=NCONF_new(NULL);
276         i=NCONF_load(config,p,&errline);
277         if (i == 0)
278                 {
279                 NCONF_free(config);
280                 config = NULL;
281                 ERR_clear_error();
282                 }
283
284         prog=prog_init();
285
286         /* first check the program name */
287         program_name(Argv[0],pname,sizeof pname);
288
289         f.name=pname;
290         fp=(FUNCTION *)lh_retrieve(prog,&f);
291         if (fp != NULL)
292                 {
293                 Argv[0]=pname;
294                 ret=fp->func(Argc,Argv);
295                 goto end;
296                 }
297
298         /* ok, now check that there are not arguments, if there are,
299          * run with them, shifting the ssleay off the front */
300         if (Argc != 1)
301                 {
302                 Argc--;
303                 Argv++;
304                 ret=do_cmd(prog,Argc,Argv);
305                 if (ret < 0) ret=0;
306                 goto end;
307                 }
308
309         /* ok, lets enter the old 'OpenSSL>' mode */
310         
311         for (;;)
312                 {
313                 ret=0;
314                 p=buf;
315                 n=sizeof buf;
316                 i=0;
317                 for (;;)
318                         {
319                         p[0]='\0';
320                         if (i++)
321                                 prompt=">";
322                         else    prompt="OpenSSL> ";
323                         fputs(prompt,stdout);
324                         fflush(stdout);
325                         fgets(p,n,stdin);
326                         if (p[0] == '\0') goto end;
327                         i=strlen(p);
328                         if (i <= 1) break;
329                         if (p[i-2] != '\\') break;
330                         i-=2;
331                         p+=i;
332                         n-=i;
333                         }
334                 if (!chopup_args(&arg,buf,&argc,&argv)) break;
335
336                 ret=do_cmd(prog,argc,argv);
337                 if (ret < 0)
338                         {
339                         ret=0;
340                         goto end;
341                         }
342                 if (ret != 0)
343                         BIO_printf(bio_err,"error in %s\n",argv[0]);
344                 (void)BIO_flush(bio_err);
345                 }
346         BIO_printf(bio_err,"bad exit\n");
347         ret=1;
348 end:
349         if (to_free)
350                 OPENSSL_free(to_free);
351         if (config != NULL)
352                 {
353                 NCONF_free(config);
354                 config=NULL;
355                 }
356         if (prog != NULL) lh_free(prog);
357         if (arg.data != NULL) OPENSSL_free(arg.data);
358
359         apps_shutdown();
360
361         CRYPTO_mem_leaks(bio_err);
362         if (bio_err != NULL)
363                 {
364                 BIO_free(bio_err);
365                 bio_err=NULL;
366                 }
367         OPENSSL_EXIT(ret);
368         }
369
370 #define LIST_STANDARD_COMMANDS "list-standard-commands"
371 #define LIST_MESSAGE_DIGEST_COMMANDS "list-message-digest-commands"
372 #define LIST_MESSAGE_DIGEST_ALGORITHMS "list-message-digest-algorithms"
373 #define LIST_CIPHER_COMMANDS "list-cipher-commands"
374 #define LIST_CIPHER_ALGORITHMS "list-cipher-algorithms"
375 #define LIST_PUBLIC_KEY_ALGORITHMS "list-public-key-algorithms"
376
377
378 static int do_cmd(LHASH *prog, int argc, char *argv[])
379         {
380         FUNCTION f,*fp;
381         int i,ret=1,tp,nl;
382
383         if ((argc <= 0) || (argv[0] == NULL))
384                 { ret=0; goto end; }
385         f.name=argv[0];
386         fp=(FUNCTION *)lh_retrieve(prog,&f);
387         if (fp != NULL)
388                 {
389                 ret=fp->func(argc,argv);
390                 }
391         else if ((strncmp(argv[0],"no-",3)) == 0)
392                 {
393                 BIO *bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
394 #ifdef OPENSSL_SYS_VMS
395                 {
396                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
397                 bio_stdout = BIO_push(tmpbio, bio_stdout);
398                 }
399 #endif
400                 f.name=argv[0]+3;
401                 ret = (lh_retrieve(prog,&f) != NULL);
402                 if (!ret)
403                         BIO_printf(bio_stdout, "%s\n", argv[0]);
404                 else
405                         BIO_printf(bio_stdout, "%s\n", argv[0]+3);
406                 BIO_free_all(bio_stdout);
407                 goto end;
408                 }
409         else if ((strcmp(argv[0],"quit") == 0) ||
410                 (strcmp(argv[0],"q") == 0) ||
411                 (strcmp(argv[0],"exit") == 0) ||
412                 (strcmp(argv[0],"bye") == 0))
413                 {
414                 ret= -1;
415                 goto end;
416                 }
417         else if ((strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0) ||
418                 (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0) ||
419                 (strcmp(argv[0],LIST_MESSAGE_DIGEST_ALGORITHMS) == 0) ||
420                 (strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0) ||
421                 (strcmp(argv[0],LIST_CIPHER_ALGORITHMS) == 0) ||
422                 (strcmp(argv[0],LIST_PUBLIC_KEY_ALGORITHMS) == 0))
423                 {
424                 int list_type;
425                 BIO *bio_stdout;
426
427                 if (strcmp(argv[0],LIST_STANDARD_COMMANDS) == 0)
428                         list_type = FUNC_TYPE_GENERAL;
429                 else if (strcmp(argv[0],LIST_MESSAGE_DIGEST_COMMANDS) == 0)
430                         list_type = FUNC_TYPE_MD;
431                 else if (strcmp(argv[0],LIST_MESSAGE_DIGEST_ALGORITHMS) == 0)
432                         list_type = FUNC_TYPE_MD_ALG;
433                 else if (strcmp(argv[0],LIST_PUBLIC_KEY_ALGORITHMS) == 0)
434                         list_type = FUNC_TYPE_PKEY;
435                 else if (strcmp(argv[0],LIST_CIPHER_ALGORITHMS) == 0)
436                         list_type = FUNC_TYPE_CIPHER_ALG;
437                 else /* strcmp(argv[0],LIST_CIPHER_COMMANDS) == 0 */
438                         list_type = FUNC_TYPE_CIPHER;
439                 bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE);
440 #ifdef OPENSSL_SYS_VMS
441                 {
442                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
443                 bio_stdout = BIO_push(tmpbio, bio_stdout);
444                 }
445 #endif
446
447                 if (!load_config(bio_err, NULL))
448                         goto end;
449
450                 if (list_type == FUNC_TYPE_PKEY)
451                         list_pkey(bio_stdout);  
452                 if (list_type == FUNC_TYPE_MD_ALG)
453                         list_md(bio_stdout);    
454                 if (list_type == FUNC_TYPE_CIPHER_ALG)
455                         list_cipher(bio_stdout);        
456                 else
457                         {
458                         for (fp=functions; fp->name != NULL; fp++)
459                                 if (fp->type == list_type)
460                                         BIO_printf(bio_stdout, "%s\n",
461                                                                 fp->name);
462                         }
463                 BIO_free_all(bio_stdout);
464                 ret=0;
465                 goto end;
466                 }
467         else
468                 {
469                 BIO_printf(bio_err,"openssl:Error: '%s' is an invalid command.\n",
470                         argv[0]);
471                 BIO_printf(bio_err, "\nStandard commands");
472                 i=0;
473                 tp=0;
474                 for (fp=functions; fp->name != NULL; fp++)
475                         {
476                         nl=0;
477 #ifdef OPENSSL_NO_CAMELLIA
478                         if (((i++) % 5) == 0)
479 #else
480                         if (((i++) % 4) == 0)
481 #endif
482                                 {
483                                 BIO_printf(bio_err,"\n");
484                                 nl=1;
485                                 }
486                         if (fp->type != tp)
487                                 {
488                                 tp=fp->type;
489                                 if (!nl) BIO_printf(bio_err,"\n");
490                                 if (tp == FUNC_TYPE_MD)
491                                         {
492                                         i=1;
493                                         BIO_printf(bio_err,
494                                                 "\nMessage Digest commands (see the `dgst' command for more details)\n");
495                                         }
496                                 else if (tp == FUNC_TYPE_CIPHER)
497                                         {
498                                         i=1;
499                                         BIO_printf(bio_err,"\nCipher commands (see the `enc' command for more details)\n");
500                                         }
501                                 }
502 #ifdef OPENSSL_NO_CAMELLIA
503                         BIO_printf(bio_err,"%-15s",fp->name);
504 #else
505                         BIO_printf(bio_err,"%-18s",fp->name);
506 #endif
507                         }
508                 BIO_printf(bio_err,"\n\n");
509                 ret=0;
510                 }
511 end:
512         return(ret);
513         }
514
515 static int SortFnByName(const void *_f1,const void *_f2)
516     {
517     const FUNCTION *f1=_f1;
518     const FUNCTION *f2=_f2;
519
520     if(f1->type != f2->type)
521         return f1->type-f2->type;
522     return strcmp(f1->name,f2->name);
523     }
524
525 static void list_pkey(BIO *out)
526         {
527         int i;
528         for (i = 0; i < EVP_PKEY_asn1_get_count(); i++)
529                 {
530                 const EVP_PKEY_ASN1_METHOD *ameth;
531                 int pkey_id, pkey_base_id, pkey_flags;
532                 const char *pinfo, *pem_str;
533                 ameth = EVP_PKEY_asn1_get0(i);
534                 EVP_PKEY_asn1_get0_info(&pkey_id, &pkey_base_id, &pkey_flags,
535                                                 &pinfo, &pem_str, ameth);
536                 if (pkey_flags & ASN1_PKEY_ALIAS)
537                         {
538                         BIO_printf(out, "Name: %s\n", 
539                                         OBJ_nid2ln(pkey_id));
540                         BIO_printf(out, "\tType: Alias to %s\n",
541                                         OBJ_nid2ln(pkey_base_id));
542                         }
543                 else
544                         {
545                         BIO_printf(out, "Name: %s\n", pinfo);
546                         BIO_printf(out, "\tType: %s Algorithm\n", 
547                                 pkey_flags & ASN1_PKEY_DYNAMIC ?
548                                         "External" : "Builtin");
549                         BIO_printf(out, "\tOID: %s\n", OBJ_nid2ln(pkey_id));
550                         if (pem_str == NULL)
551                                 pem_str = "(none)";
552                         BIO_printf(out, "\tPEM string: %s\n", pem_str);
553                         }
554                                         
555                 }
556         }
557
558 static void list_cipher_fn(const EVP_CIPHER *c,
559                         const char *from, const char *to, void *arg)
560         {
561         if (c)
562                 BIO_printf(arg, "%s\n", EVP_CIPHER_name(c));
563         else
564                 {
565                 if (!from)
566                         from = "<undefined>";
567                 if (!to)
568                         to = "<undefined>";
569                 BIO_printf(arg, "%s => %s\n", from, to);
570                 }
571         }
572
573 static void list_cipher(BIO *out)
574         {
575         EVP_CIPHER_do_all_sorted(list_cipher_fn, out);
576         }
577
578 static void list_md_fn(const EVP_MD *m,
579                         const char *from, const char *to, void *arg)
580         {
581         if (m)
582                 BIO_printf(arg, "%s\n", EVP_MD_name(m));
583         else
584                 {
585                 if (!from)
586                         from = "<undefined>";
587                 if (!to)
588                         to = "<undefined>";
589                 BIO_printf(arg, "%s => %s\n", from, to);
590                 }
591         }
592
593 static void list_md(BIO *out)
594         {
595         EVP_MD_do_all_sorted(list_md_fn, out);
596         }
597
598 static LHASH *prog_init(void)
599         {
600         LHASH *ret;
601         FUNCTION *f;
602         size_t i;
603
604         /* Purely so it looks nice when the user hits ? */
605         for(i=0,f=functions ; f->name != NULL ; ++f,++i)
606             ;
607         qsort(functions,i,sizeof *functions,SortFnByName);
608
609         if ((ret=lh_new(hash, cmp)) == NULL)
610                 return(NULL);
611
612         for (f=functions; f->name != NULL; f++)
613                 lh_insert(ret,f);
614         return(ret);
615         }
616
617 /* static int MS_CALLBACK cmp(FUNCTION *a, FUNCTION *b) */
618 static int MS_CALLBACK cmp(const void *a_void, const void *b_void)
619         {
620         return(strncmp(((const FUNCTION *)a_void)->name,
621                         ((const FUNCTION *)b_void)->name,8));
622         }
623
624 /* static unsigned long MS_CALLBACK hash(FUNCTION *a) */
625 static unsigned long MS_CALLBACK hash(const void *a_void)
626         {
627         return(lh_strhash(((const FUNCTION *)a_void)->name));
628         }