1 /* ====================================================================
2 * Copyright (c) 2005 The OpenSSL Project. Rights for redistribution
3 * and usage in source and binary forms are granted according to the
10 #if defined(__unix) || defined(__unix__)
14 #ifndef FINGERPRINT_PREMAIN_DSO_LOAD
16 #if defined(__GNUC__) && __GNUC__>=2
17 void FINGERPRINT_premain(void) __attribute__((constructor));
18 /* Most commonly this results in pointer to premain to be dropped
19 * to .ctors segment, which is traversed by GCC crtbegin.o upon
20 * program startup. Except on a.out OpenBSD where it results in
21 * _GLOBAL_$I$premain() {premain();} being auto-generated by
22 * compiler... But one way or another this is believed to cover
23 * *all* GCC targets. */
24 #elif defined(_MSC_VER)
26 __declspec(dllexport) /* this is essentially cosmetics... */
28 void FINGERPRINT_premain(void);
29 static int premain_wrapper(void) { FINGERPRINT_premain(); return 0; }
30 # pragma data_seg(".CRT$XCU")
31 static int (*p)(void) = premain_wrapper;
32 /* This results in pointer to premain to appear in .CRT segment,
33 * which is traversed by Visual C run-time initialization code.
34 * This applies to both Win32 and [all flavors of] Win64. */
36 #elif defined(__SUNPRO_C)
37 void FINGERPRINT_premain(void);
38 # pragma init(FINGERPRINT_premain)
39 /* This results in a call to premain to appear in .init segment. */
40 #elif defined(__DECC) && (defined(__VMS) || defined(VMS))
41 void FINGERPRINT_premain(void);
43 globaldef { "LIB$INITIALIZ" } readonly _align (LONGWORD)
45 globaldef { "LIB$INITIALIZE" } readonly _align (LONGWORD)
46 void (*x_FINGERPRINT_premain)(void) = FINGERPRINT_premain;
47 /* Refer to LIB$INITIALIZE to ensure it exists in the image. */
49 globaldef int (*lib_init_ref)() = lib$initialize;
52 The rest has to be taken care of through command line:
54 -Wl,-init,FINGERPRINT_premain on OSF1 and IRIX
55 -Wl,+init,FINGERPRINT_premain on HP-UX
56 -Wl,-binitfini:FINGERPRINT_premain on AIX
58 On ELF platforms this results in a call to premain to appear in
63 #define HMAC_SHA1_SIG "?have to make sure this string is unique"
66 static const unsigned char FINGERPRINT_ascii_value[40] = HMAC_SHA1_SIG;
68 #define atox(c) ((c)>='a'?((c)-'a'+10):((c)>='A'?(c)-'A'+10:(c)-'0'))
70 extern const void *FIPS_text_start(), *FIPS_text_end();
71 extern const unsigned char FIPS_rodata_start[], FIPS_rodata_end[];
72 extern unsigned char FIPS_signature[20];
73 extern unsigned int FIPS_incore_fingerprint(unsigned char *,unsigned int);
76 * As name suggests this code is executed prior main(). We use this
77 * opportunity to fingerprint sequestered code in virtual address
78 * space of target application.
80 void FINGERPRINT_premain(void)
81 { unsigned char sig[sizeof(FIPS_signature)];
82 const unsigned char *p=FINGERPRINT_ascii_value;
83 unsigned int len=sizeof(sig),i;
85 /* "volatilization" is done to disengage unwanted optimization... */
86 if (*((volatile unsigned char *)p)=='?')
87 { if (FIPS_text_start()==NULL)
88 { fprintf(stderr,"FIPS_text_start() returns NULL\n");
91 #if defined(DEBUG_FINGERPRINT_PREMAIN)
92 fprintf(stderr,".text:%p+%d=%p\n",FIPS_text_start(),
93 (int)((size_t)FIPS_text_end()-(size_t)FIPS_text_start()),
95 fprintf(stderr,".rodata:%p+%d=%p\n",FIPS_rodata_start,
96 (int)((size_t)FIPS_rodata_end-(size_t)FIPS_rodata_start),
100 len=FIPS_incore_fingerprint(sig,sizeof(sig));
102 if (len!=sizeof(sig))
103 { fprintf(stderr,"fingerprint length mismatch: %u\n",len);
107 for (i=0;i<len;i++) printf("%02x",sig[i]);
112 else if (FIPS_signature[0]=='\0') do
113 { for (i=0;i<sizeof(FIPS_signature);i++,p+=2)
114 FIPS_signature[i] = (atox(p[0])<<4)|atox(p[1]);
116 #if defined(DEBUG_FINGERPRINT_PREMAIN)
117 if (getenv("OPENSSL_FIPS")==NULL) break;
119 len=FIPS_incore_fingerprint(sig,sizeof(sig));
121 if (memcmp(FIPS_signature,sig,sizeof(FIPS_signature)))
122 { fprintf(stderr,"FINGERPRINT_premain: FIPS_signature mismatch\n");
131 #include <openssl/bio.h>
132 #include <openssl/dso.h>
133 #include <openssl/err.h>
135 int main(int argc,char *argv[])
141 { fprintf (stderr,"usage: %s libcrypto.dso\n",argv[0]);
145 if ((bio_err=BIO_new(BIO_s_file())) == NULL)
146 { fprintf (stderr,"unable to allocate BIO\n");
149 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
150 ERR_load_crypto_strings();
152 dso = DSO_load(NULL,argv[1],NULL,DSO_FLAG_NO_NAME_TRANSLATION);
154 { ERR_print_errors(bio_err);
158 /* This is not normally reached, because FINGERPRINT_premain should
159 * have executed and terminated application already upon DSO_load... */
160 func = DSO_bind_func(dso,"FINGERPRINT_premain");
162 { ERR_print_errors(bio_err);