PostgreSQL Source Code git master
Loading...
Searching...
No Matches
px.c
Go to the documentation of this file.
1/*
2 * px.c
3 * Various cryptographic stuff for PostgreSQL.
4 *
5 * Copyright (c) 2001 Marko Kreen
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * contrib/pgcrypto/px.c
30 */
31
32#include "postgres.h"
33
34#include "px.h"
35
37{
38 int err;
39 const char *desc;
40};
41
42static const struct error_desc px_err_list[] = {
43 {PXE_OK, "Everything ok"},
44 {PXE_NO_HASH, "No such hash algorithm"},
45 {PXE_NO_CIPHER, "No such cipher algorithm"},
46 {PXE_BAD_OPTION, "Unknown option"},
47 {PXE_BAD_FORMAT, "Badly formatted type"},
48 {PXE_KEY_TOO_BIG, "Key was too big"},
49 {PXE_CIPHER_INIT, "Cipher cannot be initialized"},
50 {PXE_HASH_UNUSABLE_FOR_HMAC, "This hash algorithm is unusable for HMAC"},
51 {PXE_BUG, "pgcrypto bug"},
52 {PXE_ARGUMENT_ERROR, "Illegal argument to function"},
53 {PXE_UNKNOWN_SALT_ALGO, "Unknown salt algorithm"},
54 {PXE_BAD_SALT_ROUNDS, "Incorrect number of rounds"},
55 {PXE_NO_RANDOM, "Failed to generate strong random bits"},
56 {PXE_DECRYPT_FAILED, "Decryption failed"},
57 {PXE_ENCRYPT_FAILED, "Encryption failed"},
58 {PXE_PGP_CORRUPT_DATA, "Wrong key or corrupt data"},
59 {PXE_PGP_CORRUPT_ARMOR, "Corrupt ascii-armor"},
60 {PXE_PGP_UNSUPPORTED_COMPR, "Unsupported compression algorithm"},
61 {PXE_PGP_UNSUPPORTED_CIPHER, "Unsupported cipher algorithm"},
62 {PXE_PGP_UNSUPPORTED_HASH, "Unsupported digest algorithm"},
63 {PXE_PGP_COMPRESSION_ERROR, "Compression error"},
64 {PXE_PGP_NOT_TEXT, "Not text data"},
65 {PXE_PGP_UNEXPECTED_PKT, "Unexpected packet in key data"},
66 {PXE_PGP_MATH_FAILED, "Math operation failed"},
67 {PXE_PGP_SHORT_ELGAMAL_KEY, "Elgamal keys must be at least 1024 bits long"},
68 {PXE_PGP_KEY_TOO_BIG, "Public key too big"},
69 {PXE_PGP_UNKNOWN_PUBALGO, "Unknown public-key encryption algorithm"},
70 {PXE_PGP_WRONG_KEY, "Wrong key"},
72 "Several keys given - pgcrypto does not handle keyring"},
73 {PXE_PGP_EXPECT_PUBLIC_KEY, "Refusing to encrypt with secret key"},
74 {PXE_PGP_EXPECT_SECRET_KEY, "Cannot decrypt with public key"},
75 {PXE_PGP_NOT_V4_KEYPKT, "Only V4 key packets are supported"},
76 {PXE_PGP_KEYPKT_CORRUPT, "Corrupt key packet"},
77 {PXE_PGP_NO_USABLE_KEY, "No encryption key found"},
78 {PXE_PGP_NEED_SECRET_PSW, "Need password for secret key"},
79 {PXE_PGP_BAD_S2K_MODE, "Bad S2K mode"},
80 {PXE_PGP_UNSUPPORTED_PUBALGO, "Unsupported public key algorithm"},
81 {PXE_PGP_MULTIPLE_SUBKEYS, "Several subkeys not supported"},
82
83 {0, NULL},
84};
85
86/*
87 * Call ereport(ERROR, ...), with an error code and message corresponding to
88 * the PXE_* error code given as argument.
89 *
90 * This is similar to px_strerror(err), but for some errors, we fill in the
91 * error code and detail fields more appropriately.
92 */
93void
95{
96 if (err == PXE_NO_RANDOM)
97 {
100 errmsg("could not generate a random number")));
101 }
102 else
103 {
104 /* For other errors, use the message from the above list. */
107 errmsg("%s", px_strerror(err))));
108 }
109}
110
111const char *
113{
114 const struct error_desc *e;
115
116 for (e = px_err_list; e->desc; e++)
117 if (e->err == err)
118 return e->desc;
119 return "Bad error code";
120}
121
122/* memset that must not be optimized away */
123void
124px_memset(void *ptr, int c, size_t len)
125{
126 memset(ptr, c, len);
127}
128
129const char *
130px_resolve_alias(const PX_Alias *list, const char *name)
131{
132 while (list->name)
133 {
134 if (pg_strcasecmp(list->alias, name) == 0)
135 return list->name;
136 list++;
137 }
138 return name;
139}
140
141static void (*debug_handler) (const char *) = NULL;
142
143void
144px_set_debug_handler(void (*handler) (const char *))
145{
146 debug_handler = handler;
147}
148
149void
150px_debug(const char *fmt,...)
151{
152 va_list ap;
153
154 va_start(ap, fmt);
155 if (debug_handler)
156 {
157 char buf[512];
158
159 vsnprintf(buf, sizeof(buf), fmt, ap);
161 }
162 va_end(ap);
163}
164
165/*
166 * combo - cipher + padding (+ checksum)
167 */
168
169static unsigned
171{
172 return dlen + 512;
173}
174
175static unsigned
177{
178 return dlen;
179}
180
181static int
182combo_init(PX_Combo *cx, const uint8 *key, unsigned klen,
183 const uint8 *iv, unsigned ivlen)
184{
185 int err;
186 unsigned ks,
187 ivs;
188 PX_Cipher *c = cx->cipher;
189 uint8 *ivbuf = NULL;
190 uint8 *keybuf;
191
193
195 if (ivs > 0)
196 {
197 ivbuf = palloc0(ivs);
198 if (ivlen > ivs)
199 memcpy(ivbuf, iv, ivs);
200 else if (ivlen > 0)
201 memcpy(ivbuf, iv, ivlen);
202 }
203
204 if (klen > ks)
205 klen = ks;
206 keybuf = palloc0(ks);
207 memcpy(keybuf, key, klen);
208
209 err = px_cipher_init(c, keybuf, klen, ivbuf);
210
211 if (ivbuf)
212 pfree(ivbuf);
213 pfree(keybuf);
214
215 return err;
216}
217
218static int
220 uint8 *res, unsigned *rlen)
221{
222 return px_cipher_encrypt(cx->cipher, cx->padding, data, dlen, res, rlen);
223}
224
225static int
227 uint8 *res, unsigned *rlen)
228{
229 return px_cipher_decrypt(cx->cipher, cx->padding, data, dlen, res, rlen);
230}
231
232static void
234{
235 if (cx->cipher)
236 px_cipher_free(cx->cipher);
237 px_memset(cx, 0, sizeof(*cx));
238 pfree(cx);
239}
240
241/* PARSER */
242
243static int
244parse_cipher_name(char *full, char **cipher, char **pad)
245{
246 char *p,
247 *p2,
248 *q;
249
250 *cipher = full;
251 *pad = NULL;
252
253 p = strchr(full, '/');
254 if (p != NULL)
255 *p++ = 0;
256 while (p != NULL)
257 {
258 if ((q = strchr(p, '/')) != NULL)
259 *q++ = 0;
260
261 if (!*p)
262 {
263 p = q;
264 continue;
265 }
266 p2 = strchr(p, ':');
267 if (p2 != NULL)
268 {
269 *p2++ = 0;
270 if (strcmp(p, "pad") == 0)
271 *pad = p2;
272 else
273 return PXE_BAD_OPTION;
274 }
275 else
276 return PXE_BAD_FORMAT;
277
278 p = q;
279 }
280 return 0;
281}
282
283/* provider */
284
285int
286px_find_combo(const char *name, PX_Combo **res)
287{
288 int err;
289 char *buf,
290 *s_cipher,
291 *s_pad;
292
293 PX_Combo *cx;
294
296 buf = pstrdup(name);
297
299 if (err)
300 {
301 pfree(buf);
302 pfree(cx);
303 return err;
304 }
305
306 err = px_find_cipher(s_cipher, &cx->cipher);
307 if (err)
308 goto err1;
309
310 if (s_pad != NULL)
311 {
312 if (strcmp(s_pad, "pkcs") == 0)
313 cx->padding = 1;
314 else if (strcmp(s_pad, "none") == 0)
315 cx->padding = 0;
316 else
317 goto err1;
318 }
319 else
320 cx->padding = 1;
321
322 cx->init = combo_init;
323 cx->encrypt = combo_encrypt;
324 cx->decrypt = combo_decrypt;
325 cx->encrypt_len = combo_encrypt_len;
326 cx->decrypt_len = combo_decrypt_len;
327 cx->free = combo_free;
328
329 pfree(buf);
330
331 *res = cx;
332
333 return 0;
334
335err1:
336 if (cx->cipher)
337 px_cipher_free(cx->cipher);
338 pfree(cx);
339 pfree(buf);
340 return PXE_NO_CIPHER;
341}
uint8_t uint8
Definition c.h:544
int errcode(int sqlerrcode)
Definition elog.c:863
int errmsg(const char *fmt,...)
Definition elog.c:1080
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
void err(int eval, const char *fmt,...)
Definition err.c:43
#define palloc0_object(type)
Definition fe_memutils.h:75
int cx(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene, City *city_table)
char * pstrdup(const char *in)
Definition mcxt.c:1781
void pfree(void *pointer)
Definition mcxt.c:1616
void * palloc0(Size size)
Definition mcxt.c:1417
int px_find_cipher(const char *name, PX_Cipher **res)
Definition openssl.c:776
const void size_t len
const void * data
static char buf[DEFAULT_XLOG_SEG_SIZE]
#define vsnprintf
Definition port.h:259
int pg_strcasecmp(const char *s1, const char *s2)
char * c
e
static int fb(int x)
void px_THROW_ERROR(int err)
Definition px.c:94
static void combo_free(PX_Combo *cx)
Definition px.c:233
static int combo_encrypt(PX_Combo *cx, const uint8 *data, unsigned dlen, uint8 *res, unsigned *rlen)
Definition px.c:219
static int parse_cipher_name(char *full, char **cipher, char **pad)
Definition px.c:244
static const struct error_desc px_err_list[]
Definition px.c:42
static int combo_decrypt(PX_Combo *cx, const uint8 *data, unsigned dlen, uint8 *res, unsigned *rlen)
Definition px.c:226
static unsigned combo_decrypt_len(PX_Combo *cx, unsigned dlen)
Definition px.c:176
void px_debug(const char *fmt,...)
Definition px.c:150
static unsigned combo_encrypt_len(PX_Combo *cx, unsigned dlen)
Definition px.c:170
const char * px_strerror(int err)
Definition px.c:112
static void(* debug_handler)(const char *)
Definition px.c:141
void px_set_debug_handler(void(*handler)(const char *))
Definition px.c:144
const char * px_resolve_alias(const PX_Alias *list, const char *name)
Definition px.c:130
static int combo_init(PX_Combo *cx, const uint8 *key, unsigned klen, const uint8 *iv, unsigned ivlen)
Definition px.c:182
int px_find_combo(const char *name, PX_Combo **res)
Definition px.c:286
void px_memset(void *ptr, int c, size_t len)
Definition px.c:124
#define px_cipher_decrypt(c, padding, data, dlen, res, rlen)
Definition px.h:224
#define PXE_PGP_EXPECT_PUBLIC_KEY
Definition px.h:82
#define PXE_PGP_KEY_TOO_BIG
Definition px.h:78
#define px_cipher_free(c)
Definition px.h:226
#define PXE_PGP_UNSUPPORTED_COMPR
Definition px.h:69
#define PXE_PGP_BAD_S2K_MODE
Definition px.h:88
#define PXE_OK
Definition px.h:46
#define PXE_DECRYPT_FAILED
Definition px.h:64
#define px_cipher_iv_size(c)
Definition px.h:220
#define PXE_ARGUMENT_ERROR
Definition px.h:59
#define PXE_BAD_SALT_ROUNDS
Definition px.h:61
#define PXE_CIPHER_INIT
Definition px.h:54
#define PXE_PGP_UNEXPECTED_PKT
Definition px.h:74
#define PXE_PGP_MULTIPLE_KEYS
Definition px.h:81
#define PXE_ENCRYPT_FAILED
Definition px.h:65
#define PXE_PGP_UNSUPPORTED_PUBALGO
Definition px.h:89
#define PXE_PGP_NO_USABLE_KEY
Definition px.h:86
#define PXE_NO_HASH
Definition px.h:48
#define PXE_NO_CIPHER
Definition px.h:49
#define PXE_PGP_EXPECT_SECRET_KEY
Definition px.h:83
#define PXE_HASH_UNUSABLE_FOR_HMAC
Definition px.h:55
#define PXE_BAD_FORMAT
Definition px.h:52
#define PXE_BUG
Definition px.h:58
#define PXE_PGP_NEED_SECRET_PSW
Definition px.h:87
#define PXE_PGP_MULTIPLE_SUBKEYS
Definition px.h:90
#define PXE_PGP_COMPRESSION_ERROR
Definition px.h:72
#define PXE_PGP_WRONG_KEY
Definition px.h:80
#define PXE_PGP_CORRUPT_DATA
Definition px.h:67
#define PXE_NO_RANDOM
Definition px.h:63
#define PXE_UNKNOWN_SALT_ALGO
Definition px.h:60
#define PXE_PGP_MATH_FAILED
Definition px.h:76
#define PXE_PGP_UNSUPPORTED_CIPHER
Definition px.h:70
#define px_cipher_encrypt(c, padding, data, dlen, res, rlen)
Definition px.h:222
#define PXE_PGP_NOT_TEXT
Definition px.h:73
#define PXE_PGP_UNKNOWN_PUBALGO
Definition px.h:79
#define PXE_PGP_SHORT_ELGAMAL_KEY
Definition px.h:77
#define PXE_PGP_CORRUPT_ARMOR
Definition px.h:68
#define PXE_PGP_KEYPKT_CORRUPT
Definition px.h:85
#define px_cipher_init(c, k, klen, iv)
Definition px.h:221
#define PXE_BAD_OPTION
Definition px.h:51
#define PXE_PGP_UNSUPPORTED_HASH
Definition px.h:71
#define PXE_KEY_TOO_BIG
Definition px.h:53
#define px_cipher_key_size(c)
Definition px.h:218
#define PXE_PGP_NOT_V4_KEYPKT
Definition px.h:84
const char * desc
Definition px.c:39
int err
Definition px.c:38
Definition px.h:124
Definition px.h:164
const char * name