1 |
/* wptKeyserver.cpp - W32 Keyserver Access |
2 |
* Copyright (C) 2000-2006 Timo Schulz |
3 |
* Copyright (C) 2001 Marco Cunha |
4 |
* |
5 |
* This file is part of WinPT. |
6 |
* |
7 |
* WinPT is free software; you can redistribute it and/or |
8 |
* modify it under the terms of the GNU General Public License |
9 |
* as published by the Free Software Foundation; either version 2 |
10 |
* of the License, or (at your option) any later version. |
11 |
* |
12 |
* WinPT is distributed in the hope that it will be useful, |
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 |
* General Public License for more details. |
16 |
* |
17 |
* You should have received a copy of the GNU General Public License |
18 |
* along with WinPT; if not, write to the Free Software Foundation, |
19 |
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
20 |
*/ |
21 |
|
22 |
#ifdef HAVE_CONFIG_H |
23 |
#include <config.h> |
24 |
#endif |
25 |
|
26 |
#include <windows.h> |
27 |
#include <shlobj.h> |
28 |
#include <stdio.h> |
29 |
#include <sys/stat.h> |
30 |
#include <ctype.h> |
31 |
|
32 |
#include "wptGPG.h" |
33 |
#include "wptKeyserver.h" |
34 |
#include "wptErrors.h" |
35 |
#include "wptTypes.h" |
36 |
#include "wptNLS.h" |
37 |
#include "wptW32API.h" |
38 |
#include "wptRegistry.h" |
39 |
#include "wptUTF8.h" |
40 |
#include "wptVersion.h" |
41 |
|
42 |
|
43 |
/* Map net_errno to a winsock error. */ |
44 |
#define net_errno ((int)WSAGetLastError ()) |
45 |
|
46 |
|
47 |
keyserver server[MAX_KEYSERVERS] = {0}; |
48 |
keyserver_proxy_s proxy = {0}; |
49 |
static const char *server_list[] = { |
50 |
"hkp://sks.keyserver.penguin.de", |
51 |
"hkp://subkeys.pgp.net", |
52 |
"ldap://keyserver.pgp.com", |
53 |
NULL |
54 |
}; |
55 |
|
56 |
|
57 |
static char hkp_errmsg[1024]; /* Holds the error message from the server */ |
58 |
static int hkp_err = 0; /* != 0 indicates an error occurred. */ |
59 |
|
60 |
/* Default keyserver and port. */ |
61 |
char *default_keyserver = NULL; |
62 |
WORD default_keyserver_port = 0; |
63 |
|
64 |
/* Default socket timeout (secs). */ |
65 |
static size_t default_socket_timeout = 6; |
66 |
|
67 |
|
68 |
/* Wrapper for safe memory allocation. */ |
69 |
static char* |
70 |
safe_alloc (DWORD n) |
71 |
{ |
72 |
char *p; |
73 |
|
74 |
p = new char[n+1]; |
75 |
if (!p) |
76 |
BUG (0); |
77 |
memset (p, 0, n); |
78 |
return p; |
79 |
} |
80 |
|
81 |
/* Basic64 encode the input @inbuf to @outbuf. */ |
82 |
static void |
83 |
base64_encode (const char *inbuf, char *outbuf) |
84 |
{ |
85 |
char base64code[] = |
86 |
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |
87 |
int index = 0, temp = 0, res = 0; |
88 |
int i, inputlen, len = 0; |
89 |
|
90 |
inputlen = strlen (inbuf); |
91 |
for (i = 0; i < inputlen; i++) { |
92 |
res = temp; |
93 |
res = (res << 8) | (inbuf[i] & 0xFF); |
94 |
switch (index++) { |
95 |
case 0: |
96 |
outbuf[len++] = base64code[res >> 2 & 0x3F]; |
97 |
res &= 0x3; |
98 |
break; |
99 |
case 1: |
100 |
outbuf[len++] = base64code[res >> 4 & 0x3F]; |
101 |
res &= 0xF; |
102 |
break; |
103 |
case 2: |
104 |
outbuf[len++] = base64code[res >> 6 & 0x3F]; |
105 |
outbuf[len++] = base64code[res & 0x3F]; |
106 |
res = index = 0; |
107 |
break; |
108 |
} |
109 |
temp = res; |
110 |
} |
111 |
|
112 |
if (index == 2) { |
113 |
outbuf[len++] = base64code[temp << 2 & 0x3F]; |
114 |
outbuf[len++] = '='; |
115 |
} |
116 |
else if (index == 1) { |
117 |
outbuf[len++] = base64code[temp << 4 & 0x3F]; |
118 |
outbuf[len++] = '='; |
119 |
outbuf[len++] = '='; |
120 |
} |
121 |
|
122 |
outbuf[len] = '\0'; |
123 |
} |
124 |
|
125 |
|
126 |
/* Check that the given buffer contains a valid keyserver URL |
127 |
and return the prefix length, 0 in case of an error. */ |
128 |
static int |
129 |
check_URL (const char *buf) |
130 |
{ |
131 |
const char *proto[] = { |
132 |
"ldap://", |
133 |
"http://", |
134 |
"finger://", |
135 |
"hkp://", |
136 |
NULL}; |
137 |
int i; |
138 |
|
139 |
if (strlen (buf) < 7) |
140 |
return 0; |
141 |
|
142 |
for (i=0; proto[i] != NULL; i++) { |
143 |
if (strstr (buf, proto[i])) |
144 |
return strlen (proto[i]); |
145 |
} |
146 |
return 0; |
147 |
} |
148 |
|
149 |
|
150 |
/* Skip the URL schema and return only the host part of it. */ |
151 |
static const char* |
152 |
skip_type_prefix (const char *hostname) |
153 |
{ |
154 |
int pos; |
155 |
|
156 |
if (!hostname) |
157 |
return hostname; |
158 |
|
159 |
pos = check_URL (hostname); |
160 |
if (pos > 0) |
161 |
hostname += pos; |
162 |
return hostname; |
163 |
} |
164 |
|
165 |
/* Parse the keyserver response and extract the human |
166 |
readable text passages. */ |
167 |
static int |
168 |
parse_keyserver_error (const char *resp, char *txt, size_t txtlen) |
169 |
{ |
170 |
char *p, *p2; |
171 |
|
172 |
/* If we find no 'Error' substring, we assume a success. */ |
173 |
if (!stristr (resp, "Error")) |
174 |
return -1; |
175 |
|
176 |
memset (txt, 0, txtlen); |
177 |
p = strstr (resp, "\r\n\r\n"); |
178 |
if (!p) |
179 |
return -1; |
180 |
resp += (p-resp); |
181 |
p = strstr (resp, "<h1>"); |
182 |
if (!p) |
183 |
return -1; |
184 |
resp += (p-resp)+strlen ("<h1>"); |
185 |
p = strstr (resp, "</h1>"); |
186 |
if (!p) |
187 |
return -1; |
188 |
resp += (p-resp)+strlen ("</h1>"); |
189 |
p2 = strstr (resp, "</body>"); |
190 |
if (p2 != NULL) |
191 |
memcpy (txt, resp, (p2-resp)); |
192 |
else { |
193 |
if (!strnicmp (resp, "<p>", 3)) |
194 |
resp += 3; |
195 |
while (resp && *resp == '\r' || *resp == '\n') |
196 |
resp++; |
197 |
memcpy (txt, resp, strlen (resp)); |
198 |
} |
199 |
return 0; |
200 |
} |
201 |
|
202 |
|
203 |
/* Check that the keyserver response indicates an OK. |
204 |
Return 0 on success. */ |
205 |
static int |
206 |
check_hkp_response (const char *resp, int recv) |
207 |
{ |
208 |
int ec; |
209 |
|
210 |
log_debug ("check_hkp_response: '%s'\r\n", resp); |
211 |
ec = recv ? WPTERR_WINSOCK_RECVKEY : WPTERR_WINSOCK_SENDKEY; |
212 |
if (!strstr (resp, "HTTP/1.0 200 OK") && |
213 |
!strstr (resp, "HTTP/1.1 200 OK") && |
214 |
!strstr (resp, "HTTP/1.0 500 OK") && |
215 |
!strstr (resp, "HTTP/1.1 500 OK")) |
216 |
return ec; /* http error */ |
217 |
|
218 |
if (!parse_keyserver_error (resp, hkp_errmsg, DIM (hkp_errmsg)-2)) { |
219 |
if (!strlen (hkp_errmsg)) |
220 |
_snprintf (hkp_errmsg, DIM (hkp_errmsg)-1, |
221 |
"Unknown keyserver error"); |
222 |
hkp_err = 1; |
223 |
return ec; |
224 |
} |
225 |
return 0; |
226 |
} |
227 |
|
228 |
|
229 |
/* Read a single line (\r\n) from a socket. |
230 |
Return 0 on success. */ |
231 |
static int |
232 |
sock_getline (int fd, char *buf, int buflen, int *nbytes) |
233 |
{ |
234 |
char ch; |
235 |
int nread = 0; |
236 |
|
237 |
if (nbytes) |
238 |
*nbytes = 0; |
239 |
*buf = 0; |
240 |
while (recv (fd, &ch, 1, 0) > 0) { |
241 |
*buf++ = ch; |
242 |
nread++; |
243 |
if (ch == '\r') |
244 |
continue; /* remove this char. */ |
245 |
if (ch == '\n' || nread == (buflen - 1)) { |
246 |
*buf = 0; |
247 |
if (nbytes) |
248 |
*nbytes = nread; |
249 |
return 0; |
250 |
} |
251 |
} |
252 |
|
253 |
return -1; |
254 |
} |
255 |
|
256 |
|
257 |
/* Perform a select() on the given fd to find out |
258 |
is there is data for reading. Wait at least @nsecs seconds. */ |
259 |
static int |
260 |
sock_select (int fd, int nsecs) |
261 |
{ |
262 |
FD_SET rfd; |
263 |
timeval tv = {nsecs, 0}; |
264 |
|
265 |
FD_ZERO (&rfd); |
266 |
FD_SET (fd, &rfd); |
267 |
if (select (fd + 1, &rfd, NULL, NULL, &tv) == SOCKET_ERROR) { |
268 |
log_debug ("sock_select: select() failed ec=%d.\r\n", net_errno); |
269 |
return SOCKET_ERROR; |
270 |
} |
271 |
if (FD_ISSET (fd, &rfd)) |
272 |
return 1; |
273 |
return 0; |
274 |
} |
275 |
|
276 |
|
277 |
/* Read from a socket @fd to buffer @buf with a fixed timeout |
278 |
of 10 seconds. The amount of bytes which were read are |
279 |
returned in @nbytes. |
280 |
Return value: 0 on success. */ |
281 |
static int |
282 |
sock_read (int fd, char *buf, size_t buflen, int *nbytes) |
283 |
{ |
284 |
int nread; |
285 |
size_t nleft = buflen; |
286 |
size_t n = 0; |
287 |
int rc; |
288 |
|
289 |
if (nbytes) |
290 |
*nbytes = 0; |
291 |
while (nleft > 0) { |
292 |
if (n >= default_socket_timeout) |
293 |
return WPTERR_WINSOCK_TIMEOUT; |
294 |
rc = sock_select (fd, 1); |
295 |
if (rc == SOCKET_ERROR) |
296 |
return rc; |
297 |
else if (!rc) |
298 |
n++; |
299 |
else { |
300 |
nread = recv (fd, buf, nleft, 0); |
301 |
if (nread == SOCKET_ERROR) { |
302 |
log_debug ("sock_read: recv() failed ec=%d.\r\n", net_errno); |
303 |
return SOCKET_ERROR; |
304 |
} |
305 |
else if (!nread) |
306 |
break; |
307 |
nleft -= nread; |
308 |
buf += nread; |
309 |
} |
310 |
} |
311 |
if (nbytes) |
312 |
*nbytes = buflen - nleft; |
313 |
|
314 |
return 0; |
315 |
} |
316 |
|
317 |
|
318 |
/* Helper to create a string from the gpgme data and |
319 |
then release the gpgme data object. */ |
320 |
char* |
321 |
data_release_and_get_mem (gpgme_data_t in, size_t *r_bufferlen) |
322 |
{ |
323 |
size_t n; |
324 |
char *buffer, *p; |
325 |
|
326 |
gpg_data_putc (in, '\0'); |
327 |
p = gpgme_data_release_and_get_mem (in, &n); |
328 |
buffer = m_strdup (p); |
329 |
if (r_bufferlen) |
330 |
*r_bufferlen = n; |
331 |
gpgme_free (p); |
332 |
return buffer; |
333 |
} |
334 |
|
335 |
|
336 |
/* Read much data as possible from the socket @fd and |
337 |
return the data in @buffer. Caller must free data. |
338 |
Return value: 0 on success. */ |
339 |
int |
340 |
sock_read_ext (int fd, char **buffer, size_t *r_bufferlen) |
341 |
{ |
342 |
gpgme_data_t dh; |
343 |
char buf[1024]; |
344 |
size_t timeout=0; |
345 |
int nread, rc; |
346 |
|
347 |
if (gpgme_data_new (&dh)) |
348 |
return SOCKET_ERROR; |
349 |
while (timeout < default_socket_timeout) { |
350 |
rc = sock_select (fd, 1); |
351 |
if (rc == SOCKET_ERROR) { |
352 |
gpgme_data_release (dh); |
353 |
return rc; |
354 |
} |
355 |
else if (!rc) |
356 |
timeout++; /* socket not ready yet. */ |
357 |
else { |
358 |
nread = recv (fd, buf, DIM (buf), 0); |
359 |
if (nread == SOCKET_ERROR) |
360 |
return SOCKET_ERROR; |
361 |
else if (!nread) |
362 |
break; |
363 |
gpgme_data_write (dh, buf, nread); |
364 |
} |
365 |
} |
366 |
if (timeout >= default_socket_timeout) |
367 |
return WPTERR_WINSOCK_TIMEOUT; |
368 |
*buffer = data_release_and_get_mem (dh, r_bufferlen); |
369 |
return 0; |
370 |
} |
371 |
|
372 |
|
373 |
/* Write the buffer @buf with the length @buflen to a socket @fd. */ |
374 |
static int |
375 |
sock_write (int fd, const char *buf, size_t buflen) |
376 |
{ |
377 |
int nwritten; |
378 |
int nleft = buflen; |
379 |
|
380 |
while (nleft > 0) { |
381 |
nwritten = send (fd, buf, nleft, 0); |
382 |
if (nwritten == SOCKET_ERROR) { |
383 |
log_debug ("sock_write: send() failed ec=%d\r\n", net_errno); |
384 |
return SOCKET_ERROR; |
385 |
} |
386 |
nleft -= nwritten; |
387 |
buf += nwritten; |
388 |
} |
389 |
|
390 |
return 0; |
391 |
} |
392 |
|
393 |
|
394 |
/* Initialize the Winsock2 interface.*/ |
395 |
int |
396 |
wsock_init (void) |
397 |
{ |
398 |
WSADATA wsa; |
399 |
|
400 |
if (WSAStartup (0x202, &wsa)) { |
401 |
log_debug ("wsock_init: WSAStartup failed ec=%d\r\n", net_errno); |
402 |
return WPTERR_WINSOCK_INIT; |
403 |
} |
404 |
return 0; |
405 |
} |
406 |
|
407 |
|
408 |
/* Cleanup the Winsock2 interface. */ |
409 |
void |
410 |
wsock_end (void) |
411 |
{ |
412 |
char *p; |
413 |
int i; |
414 |
|
415 |
#ifdef WINPT_MOBILE |
416 |
p = m_strdup ("keyserver.conf"); |
417 |
#else |
418 |
p = make_special_filename (CSIDL_APPDATA, "winpt\\keyserver.conf", NULL); |
419 |
#endif |
420 |
kserver_save_conf (p); |
421 |
free_if_alloc (p); |
422 |
free_if_alloc (default_keyserver); |
423 |
for (i=0; i < MAX_KEYSERVERS; i++) { |
424 |
if (server[i].name != NULL) |
425 |
free_if_alloc (server[i].name); |
426 |
} |
427 |
kserver_proxy_release (&proxy); |
428 |
WSACleanup (); |
429 |
log_debug ("wsock_end: cleanup finished.\r\n"); |
430 |
} |
431 |
|
432 |
|
433 |
/* Return a string representation of a winsock error. */ |
434 |
const char* |
435 |
wsock_strerror (void) |
436 |
{ |
437 |
int ec = WSAGetLastError (); |
438 |
|
439 |
if (!ec) |
440 |
return ""; |
441 |
switch (ec) { |
442 |
case WSAENETDOWN: |
443 |
return _("Network unreachable"); |
444 |
|
445 |
case WSAEHOSTUNREACH: |
446 |
return _("Host unreachable"); |
447 |
|
448 |
case WSAHOST_NOT_FOUND: |
449 |
return _("Could not resolve host name"); |
450 |
|
451 |
case WSAECONNREFUSED: |
452 |
return _("Connection refused"); |
453 |
|
454 |
case WSAETIMEDOUT: |
455 |
case WSAECONNABORTED: |
456 |
return _("Connection timeout"); |
457 |
|
458 |
case WSAENETRESET: |
459 |
case WSAECONNRESET: |
460 |
return _("Connection resetted by peer"); |
461 |
|
462 |
case WSAESHUTDOWN: |
463 |
return _("Socket has been shutdown"); |
464 |
|
465 |
default: |
466 |
break; |
467 |
} |
468 |
|
469 |
return ""; |
470 |
} |
471 |
|
472 |
|
473 |
/* Set default socket timeout for all reading operations. */ |
474 |
void |
475 |
kserver_set_socket_timeout (size_t nsec) |
476 |
{ |
477 |
if (nsec < 0 || nsec > 3600) |
478 |
nsec = 0; |
479 |
default_socket_timeout = nsec; |
480 |
} |
481 |
|
482 |
|
483 |
/* Return the last keyserver error as a string. */ |
484 |
const char* |
485 |
kserver_strerror (void) |
486 |
{ |
487 |
if (hkp_err) |
488 |
return hkp_errmsg; |
489 |
return NULL; |
490 |
} |
491 |
|
492 |
|
493 |
/* Read a keyserver from the list at index @idx. |
494 |
Return value: keyserver name at the given position. */ |
495 |
const char* |
496 |
kserver_get_hostname (int idx, int type, WORD *port) |
497 |
{ |
498 |
if (type == -1) { |
499 |
*port = default_keyserver_port; |
500 |
return default_keyserver; |
501 |
} |
502 |
else if (!type && (size_t)idx < DIM (server_list)) { |
503 |
/* XXX: handle non HKP servers. */ |
504 |
*port = HKP_PORT; |
505 |
return server_list[idx]; |
506 |
} |
507 |
return NULL; |
508 |
} |
509 |
|
510 |
|
511 |
/* Check if the computer is connected to the internet. |
512 |
Return 0 on success -1 otherwise. */ |
513 |
int |
514 |
kserver_check_inet_connection (void) |
515 |
{ |
516 |
int fd; |
517 |
|
518 |
if (!kserver_connect (default_keyserver, default_keyserver_port, &fd)) { |
519 |
closesocket (fd); |
520 |
return 0; |
521 |
} |
522 |
log_debug ("kserver_check_inet_connection: no inet connection.\r\n"); |
523 |
return -1; |
524 |
} |
525 |
|
526 |
|
527 |
/* If the request contains the keyid, it have to be |
528 |
always postfix with '0x'+keyid. This code checks |
529 |
if the keyid is a decimal value and if so if it contains |
530 |
the '0x'. If not it is inserted. */ |
531 |
const char* |
532 |
kserver_check_keyid (const char *keyid) |
533 |
{ |
534 |
static char id[22]; |
535 |
|
536 |
if (strstr (keyid, "@")) |
537 |
return keyid; /* email address */ |
538 |
if (strncmp (keyid, "0x", 2)) { |
539 |
memset (&id, 0, sizeof (id)); |
540 |
_snprintf (id, DIM (id)-1, "0x%s", keyid); |
541 |
return id; |
542 |
} |
543 |
return keyid; |
544 |
} |
545 |
|
546 |
|
547 |
/* Update the keyserver proxy user. */ |
548 |
static void |
549 |
update_proxy_user (const char *proxy_user, const char *proxy_pass) |
550 |
{ |
551 |
char t[257]; /* user:pass = 127+1+127+1 = 257 */ |
552 |
int n = 0; |
553 |
|
554 |
n = 4*strlen (proxy_user) / 3 + 32 + strlen (proxy_pass) + 2; |
555 |
free_if_alloc (proxy.base64_user); |
556 |
proxy.base64_user = safe_alloc (n+1); |
557 |
_snprintf (t, DIM (t)-1, "%s:%s", proxy_user, proxy_pass); |
558 |
base64_encode (t, proxy.base64_user); |
559 |
free_if_alloc (proxy.user); |
560 |
free_if_alloc (proxy.pass); |
561 |
proxy.user = m_strdup (proxy_user); |
562 |
proxy.pass = m_strdup (proxy_pass); |
563 |
} |
564 |
|
565 |
|
566 |
/* Get the port number from the given protocol. */ |
567 |
static int |
568 |
port_from_proto (int proto) |
569 |
{ |
570 |
switch (proto) { |
571 |
case KSPROTO_LDAP: return LDAP_PORT; |
572 |
case KSPROTO_FINGER: return FINGER_PORT; |
573 |
case KSPROTO_HTTP: return HKP_PORT; |
574 |
} |
575 |
return 0; |
576 |
} |
577 |
|
578 |
|
579 |
/* Get the port number from the given URL. */ |
580 |
static int |
581 |
proto_from_URL (const char *buf) |
582 |
{ |
583 |
if (strstr (buf, "ldap")) |
584 |
return KSPROTO_LDAP; |
585 |
else if (strstr (buf, "finger")) |
586 |
return KSPROTO_FINGER; |
587 |
return KSPROTO_HKP; |
588 |
} |
589 |
|
590 |
|
591 |
/* Set the default keyserver. |
592 |
If @hostname is NULL, use the predefined keyserver. */ |
593 |
void |
594 |
keyserver_set_default (const char *hostname, WORD port) |
595 |
{ |
596 |
if (!port) |
597 |
port = HKP_PORT; |
598 |
if (hostname != NULL) { |
599 |
free_if_alloc (default_keyserver); |
600 |
default_keyserver = m_strdup (hostname); |
601 |
default_keyserver_port = port; |
602 |
} |
603 |
if (!default_keyserver) { |
604 |
default_keyserver = m_strdup (DEF_HKP_KEYSERVER); |
605 |
default_keyserver_port = HKP_PORT; |
606 |
} |
607 |
server[0].name = m_strdup (default_keyserver); |
608 |
server[0].used = 1; |
609 |
server[0].port = port; |
610 |
server[0].proto = proto_from_URL (default_keyserver); |
611 |
} |
612 |
|
613 |
|
614 |
/* Skip all kind of whitespace chars in @str. */ |
615 |
static const char* |
616 |
skip_whitespace (const char *str) |
617 |
{ |
618 |
while (str && *str) { |
619 |
if (*str == ' ' || |
620 |
*str == '\t' || |
621 |
*str == '\n' || |
622 |
*str == '\r') { |
623 |
str++; |
624 |
continue; |
625 |
} |
626 |
break; |
627 |
} |
628 |
return str; |
629 |
} |
630 |
|
631 |
|
632 |
/* Save the keyserver config file in @conf. */ |
633 |
int |
634 |
kserver_save_conf (const char *conf) |
635 |
{ |
636 |
FILE *fp; |
637 |
int pos; |
638 |
|
639 |
fp = fopen (conf, "wb"); |
640 |
if (!fp) { |
641 |
msg_box (NULL, _("Could not save keyserver.conf file"), |
642 |
_("Keyserver"), MB_ERR); |
643 |
return -1; |
644 |
} |
645 |
|
646 |
fprintf (fp, "# do NOT manually modify this file, it will be " |
647 |
"generated automatically!!\r\n"); |
648 |
for (pos = 0; pos < MAX_KEYSERVERS; pos++) { |
649 |
if (!server[pos].used) |
650 |
continue; |
651 |
fprintf (fp, "%s:%d\r\n", server[pos].name, server[pos].port); |
652 |
} |
653 |
fclose (fp); |
654 |
return 0; |
655 |
} |
656 |
|
657 |
|
658 |
/* Return the specified keyserver config setting @key as an integer. */ |
659 |
static int |
660 |
get_conf_kserver_int (const char *key) |
661 |
{ |
662 |
char *p; |
663 |
int val = 0; |
664 |
|
665 |
p = get_reg_entry_keyserver (key); |
666 |
if (p && *p) |
667 |
val = atoi (p); |
668 |
free_if_alloc (p); |
669 |
return val; |
670 |
} |
671 |
|
672 |
|
673 |
/* Read the proxy configuration and store it into @prox. */ |
674 |
static void |
675 |
read_proxy_config (keyserver_proxy_t prox) |
676 |
{ |
677 |
char *proto; |
678 |
|
679 |
if (!prox) |
680 |
return; |
681 |
|
682 |
proto = get_reg_entry_keyserver("Proto"); |
683 |
if (proto != NULL && strlen (proto) > 0) |
684 |
prox->proto = atoi (proto); |
685 |
else |
686 |
prox->proto = PROXY_PROTO_NONE; |
687 |
free_if_alloc (proto); |
688 |
free_if_alloc (prox->host); |
689 |
prox->host = get_reg_entry_keyserver ("Host"); |
690 |
free_if_alloc (prox->user); |
691 |
prox->user = get_reg_entry_keyserver ("User"); |
692 |
free_if_alloc (prox->pass); |
693 |
prox->pass = get_reg_entry_keyserver ("Pass"); |
694 |
prox->port = get_conf_kserver_int ("Port"); |
695 |
} |
696 |
|
697 |
|
698 |
/* Load the keyserver config file @conf. */ |
699 |
int |
700 |
kserver_load_conf (const char *conf) |
701 |
{ |
702 |
FILE *fp; |
703 |
char buf[1024], *s, *p; |
704 |
char *user = NULL, *pass = NULL; |
705 |
int no_config=0, chk_pos; |
706 |
int pos; |
707 |
|
708 |
for (pos = 0; pos < MAX_KEYSERVERS; pos++) { |
709 |
server[pos].used = 0; |
710 |
server[pos].port = HKP_PORT; |
711 |
server[pos].name = NULL; |
712 |
} |
713 |
|
714 |
fp = fopen (conf, "rb"); |
715 |
if (!fp) { |
716 |
for (pos = 0; server_list[pos]; pos++) { |
717 |
server[pos].used = 1; |
718 |
server[pos].name = m_strdup (server_list[pos]); |
719 |
server[pos].proto = proto_from_URL (server_list[pos]); |
720 |
} |
721 |
no_config = 1; |
722 |
} |
723 |
read_proxy_config (&proxy); |
724 |
if (user && pass) |
725 |
update_proxy_user (user, pass); |
726 |
else if (user && !pass || !user && pass) { |
727 |
msg_box (NULL, _("Invalid proxy configuration. " |
728 |
"You need to set a user and a password " |
729 |
"to use proxy authentication!"), |
730 |
_("Proxy Error"), MB_ERR); |
731 |
} |
732 |
/* check if the host has a http:// prefix and skip it */ |
733 |
if (proxy.host && !strncmp (proxy.host, "http://", 7)) { |
734 |
char *host = m_strdup (proxy.host+7); |
735 |
free_if_alloc (proxy.host); |
736 |
proxy.host = host; |
737 |
} |
738 |
free_if_alloc (user); |
739 |
free_if_alloc (pass); |
740 |
|
741 |
pos = 0; |
742 |
while (fp && !feof (fp)) { |
743 |
s = fgets (buf, DIM (buf)-1, fp); |
744 |
if (!s) |
745 |
break; |
746 |
if (strstr (buf, "\r\n")) |
747 |
buf[strlen (buf)-2] = '\0'; |
748 |
if (strstr (buf, "\n")) |
749 |
buf[strlen (buf)-1] = '\0'; |
750 |
s = (char *)skip_whitespace (buf); |
751 |
if (*s == '#' || strlen (s) < 7) |
752 |
continue; |
753 |
chk_pos = check_URL (s); |
754 |
if (!chk_pos) { |
755 |
msg_box (NULL, _("All entries of this file must have a valid prefix.\n" |
756 |
"Currently HKP/HTTP, LDAP and FINGER are supported.\n"), |
757 |
_("Keyserver Error"), MB_ERR); |
758 |
continue; |
759 |
} |
760 |
p = strchr (s+chk_pos, ':'); |
761 |
server[pos].used = 1; |
762 |
server[pos].proto = proto_from_URL (s); |
763 |
server[pos].port = port_from_proto (server[pos].proto); |
764 |
if (!p) |
765 |
server[pos].name = m_strdup (s); |
766 |
else { |
767 |
server[pos].port = atol (p+1); |
768 |
if (server[pos].port < 0 || server[pos].port > 65536) |
769 |
server[pos].port = HKP_PORT; |
770 |
server[pos].name = safe_alloc ((p-s)+2); |
771 |
memset (server[pos].name, 0, (p-s)+2); |
772 |
memcpy (server[pos].name, s, (p-s)); |
773 |
} |
774 |
pos++; |
775 |
if (pos > MAX_KEYSERVERS) { |
776 |
msg_box (NULL, _("The keyserver limit is exceeded"), |
777 |
_("Keyserver Warning"), MB_INFO); |
778 |
break; |
779 |
} |
780 |
} |
781 |
if (fp) |
782 |
fclose (fp); |
783 |
if (!pos) { |
784 |
/* Only issue an error if the config file exist but |
785 |
it has no valid entries. */ |
786 |
keyserver_set_default (NULL, HKP_PORT); |
787 |
if (!no_config) |
788 |
return WPTERR_CONFIG_FILE; |
789 |
} |
790 |
|
791 |
return 0; |
792 |
} |
793 |
|
794 |
|
795 |
/* Connect to the keyserver @hostname (port @port). |
796 |
Return value: 0 on success */ |
797 |
int |
798 |
kserver_connect (const char *hostname, WORD port, int *conn_fd) |
799 |
{ |
800 |
struct hostent *hp; |
801 |
struct sockaddr_in sock; |
802 |
char host[128] = {0}; |
803 |
DWORD iaddr; |
804 |
bool use_proxy = proxy.host != NULL; |
805 |
int rc, fd; |
806 |
|
807 |
if (!port) |
808 |
port = HKP_PORT; |
809 |
if (conn_fd) |
810 |
*conn_fd = 0; |
811 |
hostname = skip_type_prefix (hostname); |
812 |
log_debug ("kserver_connect: %s:%d\r\n", hostname, port); |
813 |
|
814 |
if (use_proxy && proxy.proto == PROXY_PROTO_HTTP) |
815 |
port = proxy.port; |
816 |
memset (&sock, 0, sizeof (sock)); |
817 |
sock.sin_family = AF_INET; |
818 |
sock.sin_port = htons (port); |
819 |
strncpy (host, use_proxy? proxy.host : hostname, DIM (host)-1); |
820 |
|
821 |
if ((iaddr = inet_addr (host)) != INADDR_NONE) |
822 |
memcpy (&sock.sin_addr, &iaddr, sizeof (iaddr)); |
823 |
else if ((hp = gethostbyname (host))) { |
824 |
if (hp->h_addrtype != AF_INET || hp->h_length != 4) { |
825 |
log_debug ("gethostbyname: unknown address type.\r\n"); |
826 |
return WPTERR_WINSOCK_RESOLVE; |
827 |
} |
828 |
memcpy (&sock.sin_addr, hp->h_addr, hp->h_length); |
829 |
} |
830 |
else { |
831 |
log_debug ("gethostbyname: failed ec=%d.\r\n", net_errno); |
832 |
return use_proxy? WPTERR_WINSOCK_PROXY : WPTERR_WINSOCK_RESOLVE; |
833 |
} |
834 |
fd = socket (AF_INET, SOCK_STREAM, 0); |
835 |
if (fd == INVALID_SOCKET) |
836 |
return WPTERR_WINSOCK_SOCKET; |
837 |
rc = connect (fd, (struct sockaddr *) &sock, sizeof (sock)); |
838 |
if (rc == SOCKET_ERROR) { |
839 |
log_debug ("connect: failed ec=%d.\r\n", net_errno); |
840 |
closesocket (fd); |
841 |
return use_proxy? WPTERR_WINSOCK_PROXY : WPTERR_WINSOCK_CONNECT; |
842 |
} |
843 |
|
844 |
if (proxy.proto == PROXY_PROTO_SOCKS5) { |
845 |
/* XXX: finish code and provide errors constants. */ |
846 |
rc = socks_handshake (&proxy, fd, hostname, port); |
847 |
if (rc) { |
848 |
closesocket (fd); |
849 |
return WPTERR_GENERAL; |
850 |
} |
851 |
} |
852 |
|
853 |
if (conn_fd) |
854 |
*conn_fd = fd; |
855 |
WSASetLastError (0); |
856 |
return 0; |
857 |
} |
858 |
|
859 |
|
860 |
/* Check if the URL needs to be encoded or not. */ |
861 |
static bool |
862 |
URL_must_encoded (const char *url) |
863 |
{ |
864 |
if (strchr (url, '.') || strchr (url, '@') || strchr (url, ' ')) |
865 |
return true; |
866 |
return false; |
867 |
} |
868 |
|
869 |
|
870 |
/* Perform URL encoding of the given data. */ |
871 |
static char* |
872 |
URL_encode (const char *url, DWORD ulen, DWORD *ret_nlen) |
873 |
{ |
874 |
gpgme_data_t hd; |
875 |
char numbuf[5], *p; |
876 |
size_t i, nlen; |
877 |
|
878 |
if (gpgme_data_new (&hd)) |
879 |
BUG (0); |
880 |
for (i=0; i < ulen; i++) { |
881 |
if (isalnum (url[i]) || url[i] == '-') |
882 |
gpg_data_putc (hd, url[i]); |
883 |
else if (url[i] == ' ') |
884 |
gpg_data_putc (hd, '+'); |
885 |
else { |
886 |
sprintf (numbuf, "%%%02X", url[i]); |
887 |
gpgme_data_write (hd, numbuf, strlen (numbuf)); |
888 |
} |
889 |
} |
890 |
|
891 |
p = data_release_and_get_mem (hd, &nlen); |
892 |
if (ret_nlen) |
893 |
*ret_nlen = nlen; |
894 |
return p; |
895 |
} |
896 |
|
897 |
|
898 |
/* Format a request for the given keyid (send). */ |
899 |
static char* |
900 |
kserver_send_request (const char *hostname, WORD port, |
901 |
const char *pubkey, DWORD octets) |
902 |
{ |
903 |
const char *fmt; |
904 |
char *request; |
905 |
char *enc_pubkey; |
906 |
DWORD enc_octets; |
907 |
int reqlen; |
908 |
|
909 |
log_debug ("kserver_send_request: %s:%d\r\n", hostname, port); |
910 |
|
911 |
if (!port) |
912 |
port = HKP_PORT; |
913 |
enc_pubkey = URL_encode (pubkey, octets, &enc_octets); |
914 |
reqlen = 2*strlen (hostname) + 2*32/*port*/ + enc_octets + 32 /*len*/ + 1; |
915 |
|
916 |
if (proxy.user && proxy.proto == PROXY_PROTO_HTTP) { |
917 |
fmt = "POST http://%s:%d/pks/add HTTP/1.0\r\n" |
918 |
"Referer: \r\n" |
919 |
"User-Agent: WinPT/W32\r\n" |
920 |
"Host: %s:%d\r\n" |
921 |
"Proxy-Authorization: Basic %s\r\n" |
922 |
"Content-type: application/x-www-form-urlencoded\r\n" |
923 |
"Content-length: %d\r\n" |
924 |
"\r\n" |
925 |
"keytext=%s" |
926 |
"\r\n"; |
927 |
reqlen += strlen (fmt) + strlen (proxy.base64_user) + 1; |
928 |
request = safe_alloc (reqlen+1); |
929 |
_snprintf (request, reqlen, fmt, |
930 |
skip_type_prefix (hostname), port, hostname, port, |
931 |
proxy.base64_user, enc_octets+9, enc_pubkey); |
932 |
} |
933 |
else { |
934 |
fmt = "POST /pks/add HTTP/1.0\r\n" |
935 |
"Referer: \r\n" |
936 |
"User-Agent: WinPT/W32\r\n" |
937 |
"Host: %s:%d\r\n" |
938 |
"Content-type: application/x-www-form-urlencoded\r\n" |
939 |
"Content-length: %d\r\n" |
940 |
"\r\n" |
941 |
"keytext=%s" |
942 |
"\r\n"; |
943 |
reqlen += strlen (fmt)+1; |
944 |
request = safe_alloc (reqlen+1); |
945 |
_snprintf (request, reqlen, fmt, |
946 |
skip_type_prefix (hostname), port, |
947 |
enc_octets+9, enc_pubkey); |
948 |
} |
949 |
|
950 |
free_if_alloc (enc_pubkey); |
951 |
log_debug ("request:\r\n%s\r\n", request); |
952 |
return request; |
953 |
} |
954 |
|
955 |
|
956 |
/* Interface for receiving a public key. */ |
957 |
int |
958 |
kserver_recvkey (const char *hostname, WORD port, const char *keyid, |
959 |
char **r_key, size_t *r_keylen) |
960 |
{ |
961 |
const char *fmt; |
962 |
char *request = NULL; |
963 |
int conn_fd; |
964 |
int rc, reqlen; |
965 |
|
966 |
if (!port) |
967 |
port = HKP_PORT; |
968 |
hkp_err = 0; /* reset */ |
969 |
rc = kserver_connect (hostname, port, &conn_fd); |
970 |
if (rc) |
971 |
goto leave; |
972 |
|
973 |
reqlen = strlen (hostname)+32+strlen (keyid)+1; |
974 |
if (proxy.host && proxy.user && proxy.proto == PROXY_PROTO_HTTP) { |
975 |
fmt = "GET http://%s:%d/pks/lookup?op=get&search=%s HTTP/1.0\r\n" |
976 |
"Proxy-Authorization: Basic %s\r\n\r\n"; |
977 |
reqlen =+ strlen (fmt) + strlen (proxy.base64_user)+1; |
978 |
request = safe_alloc (reqlen+1); |
979 |
_snprintf (request, reqlen, fmt, skip_type_prefix (hostname), port, |
980 |
keyid, proxy.base64_user); |
981 |
} |
982 |
else if (proxy.host && proxy.proto == PROXY_PROTO_HTTP) { |
983 |
fmt = "GET http://%s:%d/pks/lookup?op=get&search=%s HTTP/1.0\r\n\r\n"; |
984 |
reqlen += strlen (fmt)+1; |
985 |
request = safe_alloc (reqlen+1); |
986 |
_snprintf (request, reqlen, fmt, skip_type_prefix (hostname), |
987 |
port, keyid); |
988 |
} |
989 |
else { |
990 |
fmt = "GET /pks/lookup?op=get&search=%s HTTP/1.0\r\n\r\n"; |
991 |
reqlen += strlen (fmt)+1; |
992 |
request = safe_alloc (reqlen+1); |
993 |
_snprintf (request, reqlen, fmt, keyid); |
994 |
} |
995 |
|
996 |
log_debug ("request:\r\n%s\r\n", request); |
997 |
|
998 |
rc = sock_write (conn_fd, request, strlen (request)); |
999 |
if (rc == SOCKET_ERROR) { |
1000 |
rc = WPTERR_WINSOCK_RECVKEY; |
1001 |
goto leave; |
1002 |
} |
1003 |
|
1004 |
rc = sock_read_ext (conn_fd, r_key, r_keylen); |
1005 |
if (rc == SOCKET_ERROR) { |
1006 |
rc = WPTERR_WINSOCK_RECVKEY; |
1007 |
goto leave; |
1008 |
} |
1009 |
|
1010 |
log_debug ("response:\r\n%s\r\n", *r_key); |
1011 |
rc = check_hkp_response (*r_key, 1); |
1012 |
if (rc) |
1013 |
goto leave; |
1014 |
|
1015 |
WSASetLastError (0); |
1016 |
|
1017 |
leave: |
1018 |
closesocket (conn_fd); |
1019 |
free_if_alloc (request); |
1020 |
return rc; |
1021 |
} |
1022 |
|
1023 |
|
1024 |
/* Interface to send a public key. */ |
1025 |
int |
1026 |
kserver_sendkey (const char *hostname, WORD port, |
1027 |
const char *pubkey, size_t len) |
1028 |
{ |
1029 |
char *request = NULL; |
1030 |
char log[2048] = {0}; |
1031 |
int conn_fd, n; |
1032 |
int rc; |
1033 |
|
1034 |
hkp_err = 0; /* reset */ |
1035 |
rc = kserver_connect (hostname, port, &conn_fd); |
1036 |
if (rc) |
1037 |
goto leave; |
1038 |
|
1039 |
request = kserver_send_request (hostname, port, pubkey, len); |
1040 |
rc = sock_write (conn_fd, request, strlen (request)); |
1041 |
if (rc == SOCKET_ERROR) { |
1042 |
rc = WPTERR_WINSOCK_SENDKEY; |
1043 |
goto leave; |
1044 |
} |
1045 |
|
1046 |
rc = sock_read (conn_fd, log, DIM (log)-1, &n); |
1047 |
if (rc == SOCKET_ERROR) { |
1048 |
rc = WPTERR_WINSOCK_SENDKEY; |
1049 |
goto leave; |
1050 |
} |
1051 |
|
1052 |
log_debug ("kserver_sendkey: read %d bytes\r\n%s\r\n", n, log); |
1053 |
rc = check_hkp_response (log, 0); |
1054 |
if (rc) |
1055 |
goto leave; |
1056 |
|
1057 |
WSASetLastError (0); |
1058 |
|
1059 |
leave: |
1060 |
closesocket (conn_fd); |
1061 |
free_if_alloc (request); |
1062 |
return rc; |
1063 |
} |
1064 |
|
1065 |
|
1066 |
/* Check keyserver response. */ |
1067 |
static int |
1068 |
kserver_search_chkresp (int fd) |
1069 |
{ |
1070 |
char buf[128]; |
1071 |
int n=0; |
1072 |
|
1073 |
/* parse response 'HTTP/1.0 500 OK' */ |
1074 |
if (sock_getline (fd, buf, DIM (buf)-1, &n)) |
1075 |
return WPTERR_KEYSERVER_NOTFOUND; |
1076 |
|
1077 |
log_debug ("kserver_search_chkpresp: %s\r\n", buf); |
1078 |
if (strncmp (buf, "HTTP/1.", 7)) |
1079 |
return WPTERR_KEYSERVER_NOTFOUND; |
1080 |
if (strncmp (buf+(8+1), "200", 3)) |
1081 |
return WPTERR_KEYSERVER_NOTFOUND; |
1082 |
return 0; |
1083 |
} |
1084 |
|
1085 |
|
1086 |
/* End the keyserver search procedure. */ |
1087 |
void |
1088 |
kserver_search_end (int conn_fd) |
1089 |
{ |
1090 |
log_debug ("kserver_search_end: fd=%d\r\n", conn_fd); |
1091 |
closesocket (conn_fd); |
1092 |
} |
1093 |
|
1094 |
|
1095 |
/* Extract the amount of keys from the info record. */ |
1096 |
static size_t |
1097 |
count_keys_in_response (char *buf) |
1098 |
{ |
1099 |
char *p; |
1100 |
int recno = 0; |
1101 |
size_t n = 0; |
1102 |
|
1103 |
/* info:1:4 */ |
1104 |
if (strncmp (buf, "info", 4)) |
1105 |
return 0; |
1106 |
p = strtok (buf, ":"); |
1107 |
while (p != NULL) { |
1108 |
recno++; |
1109 |
if (recno == 3) |
1110 |
n = atoi (p); |
1111 |
p = strtok (NULL, ":"); |
1112 |
} |
1113 |
return n; |
1114 |
} |
1115 |
|
1116 |
|
1117 |
/* Start the keyserver search. |
1118 |
Connect to host @hostname and port @port. |
1119 |
The pattern are given in @pattern. |
1120 |
The socket is returned in @conn_fd and @nkeys contains |
1121 |
the amount of keys which were found. */ |
1122 |
int |
1123 |
kserver_search_begin (const char *hostname, WORD port, |
1124 |
const char *pattern, int *conn_fd, size_t *nkeys) |
1125 |
{ |
1126 |
const char *fmt; |
1127 |
char *request = NULL; |
1128 |
char *enc_patt = NULL; |
1129 |
char status[128]; |
1130 |
int rc, sock_fd; |
1131 |
int reqlen; |
1132 |
|
1133 |
*conn_fd = 0; |
1134 |
|
1135 |
rc = kserver_connect (hostname, port, &sock_fd); |
1136 |
if (rc) |
1137 |
goto leave; |
1138 |
|
1139 |
enc_patt = URL_encode (pattern, strlen (pattern), NULL); |
1140 |
reqlen = strlen (enc_patt) + strlen (hostname) + 32 + 1; |
1141 |
|
1142 |
if (proxy.host && proxy.user && proxy.proto == PROXY_PROTO_HTTP) { |
1143 |
fmt = "GET http://%s:%d/pks/lookup?options=mr&op=index&search=%s HTTP/1.0\r\n" |
1144 |
"Proxy-Authorization: Basic %s\r\n\r\n"; |
1145 |
reqlen += strlen (proxy.base64_user) + strlen (fmt) + 1; |
1146 |
request = safe_alloc (reqlen+1); |
1147 |
_snprintf (request, reqlen, fmt, skip_type_prefix (hostname), port, |
1148 |
enc_patt, proxy.base64_user); |
1149 |
} |
1150 |
else if (proxy.host && proxy.proto == PROXY_PROTO_HTTP) { |
1151 |
fmt = "GET http://%s:%d/pks/lookup?options=mr&op=index&search=%s HTTP/1.0\r\n\r\n"; |
1152 |
reqlen += strlen (fmt)+1; |
1153 |
request = safe_alloc (reqlen+1); |
1154 |
_snprintf (request, reqlen, skip_type_prefix (hostname), port, |
1155 |
enc_patt); |
1156 |
} |
1157 |
else { |
1158 |
fmt = "GET /pks/lookup?options=mr&op=index&search=%s HTTP/1.0\r\n\r\n"; |
1159 |
reqlen += strlen (fmt)+1; |
1160 |
request = safe_alloc (reqlen+1); |
1161 |
_snprintf (request, reqlen, fmt, enc_patt); |
1162 |
} |
1163 |
|
1164 |
log_debug ("kserver_search_begin:\r\n%s\r\n", request); |
1165 |
if (sock_write (sock_fd, request, strlen (request)) == SOCKET_ERROR) { |
1166 |
rc = WPTERR_GENERAL; |
1167 |
goto leave; |
1168 |
} |
1169 |
|
1170 |
rc = kserver_search_chkresp (sock_fd); |
1171 |
if (rc) { |
1172 |
closesocket (sock_fd); |
1173 |
sock_fd = 0; |
1174 |
goto leave; |
1175 |
} |
1176 |
|
1177 |
/* Skip all lines until we reach the "info:" record. */ |
1178 |
for (;;) { |
1179 |
if (sock_getline (sock_fd, status, DIM (status)-1, &reqlen)) { |
1180 |
log_debug ("kserver_search_begin: retrieving status line failed.\r\n"); |
1181 |
closesocket (sock_fd); |
1182 |
sock_fd = 0; |
1183 |
rc = WPTERR_GENERAL; |
1184 |
break; |
1185 |
} |
1186 |
if (!strncmp (status, "info:", 5)) |
1187 |
break; |
1188 |
} |
1189 |
|
1190 |
if (!rc) |
1191 |
*nkeys = count_keys_in_response (status); |
1192 |
*conn_fd = sock_fd; |
1193 |
|
1194 |
leave: |
1195 |
free_if_alloc (request); |
1196 |
free_if_alloc (enc_patt); |
1197 |
return rc; |
1198 |
} |
1199 |
|
1200 |
|
1201 |
/* Parse a single pub record returned by the keyserver. */ |
1202 |
static void |
1203 |
parse_pub_record (keyserver_key_s *key, char *buf) |
1204 |
{ |
1205 |
enum pub_rec_t {ID=1, KEYID, ALGO, SIZE, CREATE, EXPIRE}; |
1206 |
char *p; |
1207 |
int recno = 0; |
1208 |
int off = 0; |
1209 |
|
1210 |
/* pub:BF3DF9B4:17:1024:925411133:: */ |
1211 |
p = strtok (buf, ":"); |
1212 |
while (p != NULL) { |
1213 |
recno++; |
1214 |
switch (recno) { |
1215 |
case ID: |
1216 |
break; |
1217 |
|
1218 |
case KEYID: |
1219 |
/* If for any reason the returned record actually contains |
1220 |
a fingerprint instead of a key ID, we truncate the fpr. */ |
1221 |
off = strlen (p) == 40? 32 : 0; |
1222 |
free_if_alloc (key->keyid); |
1223 |
key->keyid = m_strdup (p+off); |
1224 |
break; |
1225 |
|
1226 |
case ALGO: |
1227 |
key->algo = atoi (p); |
1228 |
break; |
1229 |
|
1230 |
case SIZE: |
1231 |
key->bits = atoi (p); |
1232 |
break; |
1233 |
|
1234 |
case CREATE: |
1235 |
key->creation = strtoul (p, NULL, 10); |
1236 |
break; |
1237 |
|
1238 |
case EXPIRE: |
1239 |
key->expires = strtoul (p, NULL, 10); |
1240 |
break; |
1241 |
} |
1242 |
p = strtok (NULL, ":"); |
1243 |
} |
1244 |
} |
1245 |
|
1246 |
|
1247 |
/* Parse a single user id returned by the keyserver. */ |
1248 |
static void |
1249 |
parse_uid_record (keyserver_key_s *key, char *buf) |
1250 |
{ |
1251 |
enum uid_rec_t {ID=1, UID, CREATE, EXPIRE}; |
1252 |
keyserver_uid_s *u, *n; |
1253 |
char *p, *raw; |
1254 |
int recno = 0; |
1255 |
|
1256 |
/* uid:Timo Schulz <[email protected]>:1138440360:: */ |
1257 |
u = new keyserver_uid_s; |
1258 |
memset (u, 0, sizeof *u); |
1259 |
|
1260 |
p = strtok (buf, ":"); |
1261 |
while (p != NULL) { |
1262 |
recno++; |
1263 |
|
1264 |
switch (recno) { |
1265 |
case ID: |
1266 |
break; |
1267 |
|
1268 |
case UID: |
1269 |
unhexify_buffer (p, &raw); |
1270 |
u->uid = utf8_to_native (raw); |
1271 |
free_if_alloc (raw); |
1272 |
break; |
1273 |
|
1274 |
case CREATE: |
1275 |
u->creation = strtoul (p, NULL, 10); |
1276 |
break; |
1277 |
|
1278 |
case EXPIRE: |
1279 |
u->expires = strtoul (p, NULL, 10); |
1280 |
break; |
1281 |
} |
1282 |
|
1283 |
p = strtok (NULL, ":"); |
1284 |
} |
1285 |
if (!key->uids) |
1286 |
key->uids = u; |
1287 |
else { |
1288 |
for (n = key->uids; n->next; n=n->next) |
1289 |
; |
1290 |
n->next = u; |
1291 |
} |
1292 |
} |
1293 |
|
1294 |
|
1295 |
/* Peek the next 3 bytes to check if the next line |
1296 |
would be a new "pub" record. In this case, return |
1297 |
-1 as an EOF indication, 0 otherwise. */ |
1298 |
static int |
1299 |
is_key_eof (int fd) |
1300 |
{ |
1301 |
char buf[64]; |
1302 |
int n; |
1303 |
|
1304 |
n = recv (fd, buf, 3, MSG_PEEK); |
1305 |
if (n < 3 || strncmp (buf, "pub", 3)) |
1306 |
return 0; |
1307 |
return -1; |
1308 |
} |
1309 |
|
1310 |
|
1311 |
/* Return the next key from the search response. */ |
1312 |
int |
1313 |
kserver_search_next (int fd, keyserver_key_s **r_key) |
1314 |
{ |
1315 |
keyserver_uid_s *uid, *u = NULL; |
1316 |
keyserver_key_s *key; |
1317 |
char buf[512]; |
1318 |
int n = 0; |
1319 |
long max = 0; |
1320 |
|
1321 |
log_debug ("keyserver_search_next:\r\n"); |
1322 |
*r_key = NULL; |
1323 |
|
1324 |
key = new keyserver_key_s; |
1325 |
memset (key, 0, sizeof *key); |
1326 |
for (;;) { |
1327 |
if (sock_getline (fd, buf, DIM (buf)-1, &n)) |
1328 |
break; |
1329 |
/*log_debug ("record: '%s'\r\n", buf); */ |
1330 |
if (!strncmp (buf, "pub", 3)) |
1331 |
parse_pub_record (key, buf); |
1332 |
else |
1333 |
parse_uid_record (key, buf); |
1334 |
if (is_key_eof (fd)) |
1335 |
break; |
1336 |
} |
1337 |
|
1338 |
/* the uid with the newest self sig is used as the |
1339 |
primary user id. */ |
1340 |
for (uid = key->uids; uid; uid = uid->next) { |
1341 |
if (uid->creation > max) { |
1342 |
max = uid->creation; |
1343 |
u = uid; |
1344 |
} |
1345 |
} |
1346 |
|
1347 |
key->main_uid = u? u : key->uids; |
1348 |
*r_key = key; |
1349 |
return 0; |
1350 |
} |
1351 |
|
1352 |
|
1353 |
/* Release the keyserver key @key and all its elements. */ |
1354 |
void |
1355 |
kserver_release_key (keyserver_key_s *key) |
1356 |
{ |
1357 |
keyserver_uid_s *u; |
1358 |
|
1359 |
while (key->uids) { |
1360 |
u = key->uids->next; |
1361 |
free_if_alloc (key->uids->uid); |
1362 |
free_if_alloc (key->uids); |
1363 |
key->uids = u; |
1364 |
} |
1365 |
free_if_alloc (key->keyid); |
1366 |
free_if_alloc (key); |
1367 |
} |
1368 |
|
1369 |
|
1370 |
/* Release mbmers in the proxy context @ctx. */ |
1371 |
void |
1372 |
kserver_proxy_release (keyserver_proxy_t ctx) |
1373 |
{ |
1374 |
free_if_alloc (ctx->host); |
1375 |
free_if_alloc (ctx->pass); |
1376 |
free_if_alloc (ctx->user); |
1377 |
ctx->port = ctx->proto = 0; |
1378 |
} |
1379 |
|
1380 |
|
1381 |
/* Spawn a process given by @cmdl. */ |
1382 |
static int |
1383 |
spawn_application (char *cmdl) |
1384 |
{ |
1385 |
STARTUPINFO si; |
1386 |
PROCESS_INFORMATION pi; |
1387 |
int rc = 0; |
1388 |
|
1389 |
memset (&si, 0, sizeof (si)); |
1390 |
si.cb = sizeof (si); |
1391 |
si.dwFlags = STARTF_USESHOWWINDOW; |
1392 |
si.wShowWindow = SW_HIDE; |
1393 |
memset (&pi, 0, sizeof (pi)); |
1394 |
|
1395 |
if (!CreateProcess (NULL, cmdl, NULL, NULL, FALSE, 0, |
1396 |
NULL, NULL, &si, &pi)) { |
1397 |
log_box ("Keyserver Plugin", MB_ERR, "Could not spawn helper process"); |
1398 |
rc = -1; |
1399 |
} |
1400 |
|
1401 |
CloseHandle (pi.hThread); |
1402 |
WaitForSingleObject (pi.hProcess, INFINITE); |
1403 |
CloseHandle (pi.hProcess); |
1404 |
return rc; |
1405 |
} |
1406 |
|
1407 |
|
1408 |
static FILE* |
1409 |
do_spawn_ldap_helper (const char *host, const char *keyid) |
1410 |
{ |
1411 |
FILE *fp = NULL; |
1412 |
char *p, *sep; |
1413 |
char *ksprg; |
1414 |
char outf[256], inf[256]; |
1415 |
size_t n; |
1416 |
|
1417 |
p = get_gnupg_prog (); |
1418 |
n = strlen (p) + 1 + 128; |
1419 |
ksprg = safe_alloc (n+1); |
1420 |
if (!ksprg) |
1421 |
BUG (0); |
1422 |
sep = strrchr (p, '\\'); |
1423 |
if (sep != NULL) |
1424 |
p[(sep-p)] = 0; |
1425 |
|
1426 |
_snprintf (ksprg, n, "%s\\gpgkeys_ldap.exe", p); |
1427 |
free_if_alloc (p); |
1428 |
if (file_exist_check (ksprg)) { |
1429 |
log_box ("LDAP Keyserver Plugin", MB_ERR, |
1430 |
"%s: could not find LDAP keyserver module!", ksprg); |
1431 |
fp = NULL; |
1432 |
goto leave; |
1433 |
} |
1434 |
get_temp_name (outf, DIM (outf)-1, keyid); |
1435 |
get_temp_name (inf, DIM (inf)-1, NULL); |
1436 |
fp = fopen (inf, "w+b"); |
1437 |
if (!fp) { |
1438 |
log_box ("LDAP Keyserver Plugin", MB_ERR, "%s: %s", inf, |
1439 |
winpt_strerror (WPTERR_FILE_OPEN)); |
1440 |
goto leave; |
1441 |
} |
1442 |
fprintf (fp, |
1443 |
"VERSION 1\n" |
1444 |
"PROGRAM %d.%d.%d\n" |
1445 |
"SCHEME ldap\n" |
1446 |
"HOST %s\n" |
1447 |
"COMMAND GET\n" |
1448 |
"\n" |
1449 |
"%s\n", |
1450 |
gpgver[0], gpgver[1], gpgver[2], |
1451 |
host? skip_type_prefix (host): "64.94.85.200", keyid); |
1452 |
fclose (fp); |
1453 |
|
1454 |
p = safe_alloc (strlen (ksprg) + strlen (inf) + strlen (outf) + 32); |
1455 |
sprintf (p, "%s -o %s %s", ksprg, outf, inf); |
1456 |
if (spawn_application (p)) { |
1457 |
fp = NULL; |
1458 |
goto leave; |
1459 |
} |
1460 |
fp = fopen (outf, "rb"); |
1461 |
if (!fp) |
1462 |
log_box ("LDAP Keyserver Plugin", MB_ERR, "%s: %s", outf, |
1463 |
winpt_strerror (WPTERR_FILE_OPEN)); |
1464 |
|
1465 |
leave: |
1466 |
DeleteFile (inf); |
1467 |
DeleteFile (outf); |
1468 |
free_if_alloc (p); |
1469 |
free_if_alloc (ksprg); |
1470 |
return fp; |
1471 |
} |
1472 |
|
1473 |
/* Receive an key via LDAP from host @host with the keyid @keyid. |
1474 |
@key contains the key on success. */ |
1475 |
int |
1476 |
ldap_recvkey (const char *host, const char *keyid, |
1477 |
char **r_key, size_t *r_keylen) |
1478 |
{ |
1479 |
gpgme_data_t raw; |
1480 |
FILE *fp; |
1481 |
const char *s; |
1482 |
char buf[512]; |
1483 |
int start_key = 0, failed = 0; |
1484 |
int rc = 0; |
1485 |
|
1486 |
fp = do_spawn_ldap_helper (host, keyid); |
1487 |
if (!fp) |
1488 |
return WPTERR_GENERAL; |
1489 |
|
1490 |
if (gpgme_data_new (&raw)) |
1491 |
BUG (0); |
1492 |
while (!feof (fp)) { |
1493 |
s = fgets (buf, DIM (buf)-1, fp); |
1494 |
if (!s) |
1495 |
break; |
1496 |
if (strstr (s, "KEY") && strstr (s, "FAILED")) { |
1497 |
failed = 1; |
1498 |
break; |
1499 |
} |
1500 |
if (!start_key && strstr (s, "KEY") && strstr (s, "BEGIN")) { |
1501 |
start_key = 1; |
1502 |
continue; |
1503 |
} |
1504 |
if (!start_key) |
1505 |
continue; |
1506 |
gpgme_data_write (raw, buf, strlen (buf)); |
1507 |
if (strstr (s, "KEY") && strstr (s, "END")) |
1508 |
break; |
1509 |
} |
1510 |
fclose (fp); |
1511 |
|
1512 |
if (failed) |
1513 |
rc = WPTERR_WINSOCK_RECVKEY; |
1514 |
*r_key = data_release_and_get_mem (raw, r_keylen); |
1515 |
return rc; |
1516 |
} |
1517 |
|
1518 |
|
1519 |
/* Receive an key via FINGER from host @host with the user @user. |
1520 |
On success @key contains the key. */ |
1521 |
int |
1522 |
finger_recvkey (const char *host, const char *user, |
1523 |
char **r_key, size_t *r_keylen) |
1524 |
{ |
1525 |
gpgme_data_t raw; |
1526 |
char buf[256+1]; |
1527 |
int fd, nread; |
1528 |
int start_key = 0; |
1529 |
int rc=0; |
1530 |
|
1531 |
rc = kserver_connect (host, FINGER_PORT, &fd); |
1532 |
if (rc) |
1533 |
return rc; |
1534 |
|
1535 |
sock_write (fd, user, strlen (user)); |
1536 |
sock_write (fd, "\r\n", 2); |
1537 |
|
1538 |
if (gpgme_data_new (&raw)) |
1539 |
return WPTERR_WINSOCK_RECVKEY; |
1540 |
|
1541 |
for (;;) { |
1542 |
if (sock_getline (fd, buf, DIM (buf)-2, &nread)) |
1543 |
break; |
1544 |
strcat (buf, "\n"); |
1545 |
if (strstr (buf, "BEGIN PGP PUBLIC KEY BLOCK")) { |
1546 |
gpgme_data_write (raw, buf, nread); |
1547 |
start_key = 1; |
1548 |
} |
1549 |
else if (strstr (buf, "END PGP PUBLIC KEY BLOCK" ) && start_key) { |
1550 |
gpgme_data_write (raw, buf, nread); |
1551 |
start_key--; |
1552 |
break; |
1553 |
} |
1554 |
else if (start_key) |
1555 |
gpgme_data_write (raw, buf, nread); |
1556 |
} |
1557 |
|
1558 |
closesocket (fd); |
1559 |
if (start_key != 0) |
1560 |
rc = WPTERR_WINSOCK_RECVKEY; |
1561 |
*r_key = data_release_and_get_mem (raw, r_keylen); |
1562 |
return rc; |
1563 |
} |
1564 |
|
1565 |
|
1566 |
/* Check if the given name @name is a valid inernet address |
1567 |
which means an dotted IP or a valid DNS name. |
1568 |
Return value: 0 on success. */ |
1569 |
int |
1570 |
check_inet_address (const char *addr) |
1571 |
{ |
1572 |
const char *not_allowed = "=!ยง$%&@#*~\\/}][{<>|,;:'"; |
1573 |
size_t i; |
1574 |
|
1575 |
for (i=0; i < strlen (addr); i++) { |
1576 |
if (strchr (not_allowed, addr[i])) |
1577 |
return -1; |
1578 |
} |
1579 |
return 0; |
1580 |
} |
1581 |
|
1582 |
|
1583 |
/* Split the URL @r_keyserver into the host and the port |
1584 |
part if possible. */ |
1585 |
gpgme_error_t |
1586 |
parse_keyserver_url (char **r_keyserver, unsigned short *r_port) |
1587 |
{ |
1588 |
char *p; |
1589 |
char *url = *r_keyserver; |
1590 |
int off = 0; |
1591 |
|
1592 |
/* no port is given so use the default port. */ |
1593 |
p = strrchr (url, ':'); |
1594 |
if (p == strchr (url, ':')) { |
1595 |
int port = port_from_proto (proto_from_URL (url)); |
1596 |
if (!port) |
1597 |
port = HKP_PORT; |
1598 |
*r_port = port; |
1599 |
return 0; |
1600 |
} |
1601 |
|
1602 |
if (url[(p-url)-1] == '/') /* remove / in .de/:11371 */ |
1603 |
off = 1; |
1604 |
|
1605 |
*r_keyserver = substr (url, 0, (p-url)-off); |
1606 |
*r_port = atoi (url+(p-url)+1); |
1607 |
free_if_alloc (url); |
1608 |
return 0; |
1609 |
} |