2 * Copyright (C) 2005-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file crypt.c openssl-based RSA encryption/decryption routines */
11 #include <sys/types.h>
12 #include <sys/socket.h>
13 #include <openssl/rand.h>
14 #include <openssl/err.h>
15 #include <openssl/rc4.h>
23 * Fill a buffer with random content.
25 * \param buf The buffer to fill.
26 * \param num The size of \a buf in bytes.
28 * This function puts \a num cryptographically strong pseudo-random bytes into
29 * buf. If libssl can not guarantee an unpredictable byte sequence (for example
30 * because the PRNG has not been seeded with enough randomness) the function
31 * logs an error message and calls exit().
33 void get_random_bytes_or_die(unsigned char *buf
, int num
)
37 /* RAND_bytes() returns 1 on success, 0 otherwise. */
38 if (RAND_bytes(buf
, num
) == 1)
40 err
= ERR_get_error();
41 PARA_EMERG_LOG("%s\n", ERR_reason_error_string(err
));
46 * Seed pseudo random number generators.
48 * This function reads 64 bytes from /dev/urandom and adds them to the SSL
49 * PRNG. It also seeds the PRNG used by random() with a random seed obtained
50 * from SSL. If /dev/random could not be read, an error message is logged and
51 * the function calls exit().
53 * \sa RAND_load_file(3), \ref get_random_bytes_or_die(), srandom(3),
54 * random(3), \ref para_random().
56 void init_random_seed_or_die(void)
58 int seed
, ret
= RAND_load_file("/dev/urandom", 64);
61 PARA_EMERG_LOG("could not seed PRNG (ret = %d)\n", ret
);
64 get_random_bytes_or_die((unsigned char *)&seed
, sizeof(seed
));
68 static EVP_PKEY
*load_key(const char *file
, int private)
71 EVP_PKEY
*pkey
= NULL
;
73 key
= BIO_new(BIO_s_file());
76 if (BIO_read_filename(key
, file
) > 0) {
77 if (private == LOAD_PRIVATE_KEY
)
78 pkey
= PEM_read_bio_PrivateKey(key
, NULL
, NULL
, NULL
);
80 pkey
= PEM_read_bio_PUBKEY(key
, NULL
, NULL
, NULL
);
87 * read an RSA key from a file
89 * \param key_file the file containing the key
90 * \param rsa RSA structure is returned here
91 * \param private if non-zero, read the private key, otherwise the public key
93 * \return The size of the RSA key on success, negative on errors.
95 * \sa openssl(1), rsa(1).
97 int get_rsa_key(char *key_file
, RSA
**rsa
, int private)
99 EVP_PKEY
*key
= load_key(key_file
, private);
102 return (private == LOAD_PRIVATE_KEY
)? -E_PRIVATE_KEY
104 *rsa
= EVP_PKEY_get1_RSA(key
);
108 return RSA_size(*rsa
);
112 * free an RSA structure
114 * \param rsa pointer to the RSA struct to free
116 * This must be called for any key obtained by get_rsa_key().
118 void rsa_free(RSA
*rsa
)
125 * decrypt a buffer using an RSA key
127 * \param key_file full path of the rsa key
128 * \param outbuf the output buffer
129 * \param inbuf the encrypted input buffer
130 * \param rsa_inlen the length of \a inbuf
132 * The \a outbuf must be large enough to hold at least \a rsa_inlen bytes.
134 * \return The size of the recovered plaintext on success, negative on errors.
136 * \sa RSA_private_decrypt(3)
138 int para_decrypt_buffer(char *key_file
, unsigned char *outbuf
, unsigned char *inbuf
,
142 int ret
, inlen
= rsa_inlen
;
146 ret
= get_rsa_key(key_file
, &rsa
, LOAD_PRIVATE_KEY
);
149 ret
= RSA_private_decrypt(inlen
, inbuf
, outbuf
, rsa
, RSA_PKCS1_OAEP_PADDING
);
151 return (ret
> 0)? ret
: -E_DECRYPT
;
155 * encrypt a buffer using an RSA key
157 * \param rsa: public rsa key
158 * \param inbuf the input buffer
159 * \param len the length of \a inbuf
160 * \param outbuf the output buffer
162 * \return The size of the encrypted data on success, negative on errors
164 * \sa RSA_public_encrypt(3)
166 int para_encrypt_buffer(RSA
*rsa
, unsigned char *inbuf
,
167 unsigned len
, unsigned char *outbuf
)
169 int ret
, flen
= len
; /* RSA_public_encrypt expects a signed int */
173 ret
= RSA_public_encrypt(flen
, inbuf
, outbuf
, rsa
, RSA_PKCS1_OAEP_PADDING
);
174 return ret
< 0? -E_ENCRYPT
: ret
;
178 * Encrypt and send a buffer.
180 * \param rc4c The rc4 crypt context.
181 * \param buf The buffer to send.
182 * \param len The size of \a buf in bytes.
184 * \return The return value of the underyling call to write_all().
186 * \sa \ref write_all(), RC4(3).
188 int rc4_send_bin_buffer(struct rc4_context
*rc4c
, const char *buf
, size_t len
)
194 tmp
= para_malloc(len
);
195 RC4(&rc4c
->send_key
, len
, (const unsigned char *)buf
, tmp
);
196 ret
= write_all(rc4c
->fd
, (char *)tmp
, &len
);
202 * Encrypt and send a \p NULL-terminated buffer.
204 * \param rc4c The rc4 crypt context.
205 * \param buf The buffer to send.
207 * \return The return value of the underyling call to rc4_send_bin_buffer().
209 int rc4_send_buffer(struct rc4_context
*rc4c
, const char *buf
)
211 return rc4_send_bin_buffer(rc4c
, buf
, strlen(buf
));
215 * Format, encrypt and send a buffer.
217 * \param rc4c The rc4 crypt context.
218 * \param fmt A format string.
220 * \return The return value of the underyling call to rc4_send_buffer().
222 __printf_2_3
int rc4_send_va_buffer(struct rc4_context
*rc4c
, const char *fmt
, ...)
227 PARA_VSPRINTF(fmt
, msg
);
228 ret
= rc4_send_buffer(rc4c
, msg
);
234 * Receive a buffer and decrypt it.
236 * \param rc4c The rc4 crypt context.
237 * \param buf The buffer to write the decrypted data to.
238 * \param size The size of \a buf.
240 * \return The number of bytes received on success, negative on errors, zero if
241 * the peer has performed an orderly shutdown.
243 * \sa recv(2), RC4(3).
245 int rc4_recv_bin_buffer(struct rc4_context
*rc4c
, char *buf
, size_t size
)
247 unsigned char *tmp
= para_malloc(size
);
248 ssize_t ret
= recv(rc4c
->fd
, tmp
, size
, 0);
251 RC4(&rc4c
->recv_key
, ret
, tmp
, (unsigned char *)buf
);
253 ret
= -ERRNO_TO_PARA_ERROR(errno
);
259 * Receive a buffer, decrypt it and write terminating NULL byte.
261 * \param rc4c The rc4 crypt context.
262 * \param buf The buffer to write the decrypted data to.
263 * \param size The size of \a buf.
265 * Read at most \a size - 1 bytes from file descriptor given by \a rc4c,
266 * decrypt the received data and write a NULL byte at the end of the decrypted
269 * \return The return value of the underlying call to \ref
270 * rc4_recv_bin_buffer().
272 int rc4_recv_buffer(struct rc4_context
*rc4c
, char *buf
, size_t size
)
277 n
= rc4_recv_bin_buffer(rc4c
, buf
, size
- 1);