forked from gojue/ecapture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenssl_3_0_offset.c
58 lines (53 loc) · 1.75 KB
/
openssl_3_0_offset.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// clang -I include/ -I . offset.c -o offset
#include <crypto/bio/bio_local.h>
#include <openssl/crypto.h>
#include <ssl/ssl_local.h>
#include <stddef.h>
#include <stdio.h>
#define SSL_STRUCT_OFFSETS \
X(ssl_st, version) \
X(ssl_st, session) \
X(ssl_st, s3) \
X(ssl_st, rbio) \
X(ssl_st, wbio) \
X(ssl_st, server) \
X(ssl_session_st, master_key) \
X(ssl_st, s3.client_random) \
X(ssl_session_st, cipher) \
X(ssl_session_st, cipher_id) \
X(ssl_cipher_st, id) \
X(ssl_st, handshake_secret) \
X(ssl_st, handshake_traffic_hash) \
X(ssl_st, client_app_traffic_secret) \
X(ssl_st, server_app_traffic_secret) \
X(ssl_st, exporter_master_secret) \
X(bio_st, num) \
X(bio_st, method) \
X(bio_method_st, type)
void toUpper(char *s) {
int i = 0;
while (s[i] != '\0') {
if (s[i] == '.') {
putchar('_');
} else {
putchar(toupper(s[i]));
}
i++;
}
}
void format(char *struct_name, char *field_name, size_t offset) {
printf("// %s->%s\n", struct_name, field_name);
printf("#define ");
toUpper(struct_name);
printf("_");
toUpper(field_name);
printf(" 0x%lx\n\n", offset);
}
int main() {
printf("/* OPENSSL_VERSION_TEXT: %s */\n", OPENSSL_VERSION_TEXT);
printf("/* OPENSSL_VERSION_NUMBER: %d */\n\n", OPENSSL_VERSION_NUMBER);
#define X(struct_name, field_name) format(#struct_name, #field_name, offsetof(struct struct_name, field_name));
SSL_STRUCT_OFFSETS
#undef X
return 0;
}