Start to overhaul RAND API
[openssl.git] / crypto / rand / rand_vms.c
1 /*
2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include "e_os.h"
11
12 #if defined(OPENSSL_SYS_VMS)
13 # include <openssl/rand.h>
14 # include "rand_lcl.h"
15 # include <descrip.h>
16 # include <jpidef.h>
17 # include <ssdef.h>
18 # include <starlet.h>
19 # include <efndef>
20 # ifdef __DECC
21 #  pragma message disable DOLLARID
22 # endif
23
24 /*
25  * Use 32-bit pointers almost everywhere.  Define the type to which to cast a
26  * pointer passed to an external function.
27  */
28 # if __INITIAL_POINTER_SIZE == 64
29 #  define PTR_T __void_ptr64
30 #  pragma pointer_size save
31 #  pragma pointer_size 32
32 # else
33 #  define PTR_T void *
34 # endif
35
36 static struct items_data_st {
37     short length, code;         /* length is number of bytes */
38 } items_data[] = {
39     {4, JPI$_BUFIO},
40     {4, JPI$_CPUTIM},
41     {4, JPI$_DIRIO},
42     {4, JPI$_IMAGECOUNT},
43     {8, JPI$_LAST_LOGIN_I},
44     {8, JPI$_LOGINTIM},
45     {4, JPI$_PAGEFLTS},
46     {4, JPI$_PID},
47     {4, JPI$_PPGCNT},
48     {4, JPI$_WSPEAK},
49     {4, JPI$_FINALEXC},
50     {0, 0}
51 };
52
53 int RAND_poll(void)
54 {
55     /* determine the number of items in the JPI array */
56     struct items_data_st item_entry;
57     int item_entry_count = OSSL_NELEM(items_data);
58     /* Create the JPI itemlist array to hold item_data content */
59     struct {
60         short length, code;
61         int *buffer;
62         int *retlen;
63     } item[item_entry_count], *pitem;
64     struct items_data_st *pitems_data;
65     int data_buffer[(item_entry_count * 2) + 4]; /* 8 bytes per entry max */
66     int iosb[2];
67     int sys_time[2];
68     int *ptr;
69     int i, j ;
70     int tmp_length   = 0;
71     int total_length = 0;
72
73     /* Setup itemlist for GETJPI */
74     pitems_data = items_data;
75     for (pitem = item; pitems_data->length != 0; pitem++) {
76         pitem->length = pitems_data->length;
77         pitem->code   = pitems_data->code;
78         pitem->buffer = &data_buffer[total_length];
79         pitem->retlen = 0;
80         /* total_length is in longwords */
81         total_length += pitems_data->length / 4;
82         pitems_data++;
83     }
84     pitem->length = pitem->code = 0;
85
86     /* Fill data_buffer with various info bits from this process */
87     if (sys$getjpiw(EFN$C_ENF, NULL, NULL, item, &iosb, 0, 0) != SS$_NORMAL)
88         return 0;
89
90     /* Now twist that data to seed the SSL random number init */
91     for (i = 0; i < total_length; i++) {
92         sys$gettim((struct _generic_64 *)&sys_time[0]);
93         srand(sys_time[0] * data_buffer[0] * data_buffer[1] + i);
94
95         if (i == (total_length - 1)) { /* for JPI$_FINALEXC */
96             ptr = &data_buffer[i];
97             for (j = 0; j < 4; j++) {
98                 data_buffer[i + j] = ptr[j];
99                 /* OK to use rand() just to scramble the seed */
100                 data_buffer[i + j] ^= (sys_time[0] ^ rand());
101                 tmp_length++;
102             }
103         } else {
104             /* OK to use rand() just to scramble the seed */
105             data_buffer[i] ^= (sys_time[0] ^ rand());
106         }
107     }
108
109     total_length += (tmp_length - 1);
110
111     /* size of seed is total_length*4 bytes (64bytes) */
112     RAND_add((PTR_T)data_buffer, total_length * 4, total_length * 2);
113     return 1;
114 }
115
116 #endif