/[winpt]/trunk/Src/wptKeyserver.cpp
ViewVC logotype

Diff of /trunk/Src/wptKeyserver.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 197 by twoaday, Mon Apr 10 07:38:06 2006 UTC revision 328 by twoaday, Fri Sep 25 16:07:38 2009 UTC
# Line 1  Line 1 
1  /* wptKeyserver.cpp - W32 Keyserver Access  /* wptKeyserver.cpp - W32 Keyserver Access
2   *      Copyright (C) 2000-2005 Timo Schulz   *      Copyright (C) 2000-2009 Timo Schulz
3   *      Copyright (C) 2001 Marco Cunha   *      Copyright (C) 2001 Marco Cunha
4   *   *
5   * This file is part of WinPT.   * This file is part of WinPT.
# Line 13  Line 13 
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * General Public License for more details.   * General Public License for more details.
  *  
  * You should have received a copy of the GNU General Public License  
  * along with WinPT; if not, write to the Free Software Foundation,  
  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  
16   */   */
   
17  #ifdef HAVE_CONFIG_H  #ifdef HAVE_CONFIG_H
18  #include <config.h>  #include <config.h>
19  #endif  #endif
# Line 29  Line 24 
24  #include <sys/stat.h>  #include <sys/stat.h>
25  #include <ctype.h>  #include <ctype.h>
26    
27    #include "wptGPG.h"
28  #include "wptKeyserver.h"  #include "wptKeyserver.h"
29  #include "wptErrors.h"  #include "wptErrors.h"
30  #include "wptTypes.h"  #include "wptTypes.h"
31  #include "wptNLS.h"  #include "wptNLS.h"
32  #include "wptW32API.h"  #include "wptW32API.h"
 #include "wptGPG.h"  
33  #include "wptRegistry.h"  #include "wptRegistry.h"
34    #include "wptUTF8.h"
35    #include "wptVersion.h"
36    #include "StringBuffer.h"
37    
 /* just map net_errno to a winsock error. */  
 #define net_errno ((int)WSAGetLastError ())  
38    
39    /* Map net_errno to a winsock error. */
40    #define net_errno ((int)WSAGetLastError ())
41    
42  keyserver server[MAX_KEYSERVERS] = {0};  keyserver server[MAX_KEYSERVERS] = {0};
43  keyserver_proxy_s proxy = {0};  keyserver_proxy_s proxy = {0};
44  static const char *server_list[] = {  static const char *server_list[] = {
45      "hkp://gnv.us.ks.cryptnet.net",      "hkp://pool.sks-keyservers.net",
     "hkp://keyserver.kjsl.com",  
     "hkp://sks.keyserver.penguin.de",  
46      "hkp://subkeys.pgp.net",      "hkp://subkeys.pgp.net",
47      "ldap://keyserver.pgp.com",      "http://minsky.surfnet.nl",
48      NULL      NULL
49  };  };
50    #define NUM_DEF_KEYSERVERS 3
51    
52    static char  hkp_err_msg[384];  /* Holds the error message from the server */
53  static char  hkp_errmsg[1024];  /* Holds the error message from the server */  static int   hkp_has_err = 0;   /* != 0 indicates an error occurred. */
 static int   hkp_err = 0;       /* != 0 indicates an error occurred. */  
54    
55  /* Default keyserver and port. */  /* Default keyserver and port. */
56  char *default_keyserver = NULL;  char *default_keyserver = NULL;
57  WORD default_keyserver_port = 0;  WORD default_keyserver_port = 0;
58    
59  /* Default socket timeout. */  /* Default socket timeout (secs). */
60  static int default_socket_timeout = 6;  static size_t default_socket_timeout = 6;
61    
62    
63    /* Wrapper for safe memory allocation. */
64    static char*
65    safe_alloc (DWORD n)
66    {
67        char *p = new char[n+1];
68        if (!p)
69            BUG (0);
70        memset (p, 0, n);
71        return p;
72    }
73    
74    
75  /* Basic64 encode the input @inbuf to @outbuf. */  /* Basic64 encode the input @inbuf to @outbuf. */
76  static void  static void
# Line 70  base64_encode (const char *inbuf, char * Line 79  base64_encode (const char *inbuf, char *
79      char base64code[] =      char base64code[] =
80          "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";          "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
81      int index = 0, temp = 0, res = 0;      int index = 0, temp = 0, res = 0;
82      int i = 0, inputlen = 0, len = 0;      int inputlen, len = 0;
83            
84      inputlen = strlen (inbuf);      inputlen = strlen (inbuf);
85      for (i = 0; i < inputlen; i++) {      for (int i = 0; i < inputlen; i++) {
86          res = temp;          res = temp;
87          res = (res << 8) | (inbuf[i] & 0xFF);          res = (res << 8) | (inbuf[i] & 0xFF);
88          switch (index++) {          switch (index++) {
# Line 83  base64_encode (const char *inbuf, char * Line 92  base64_encode (const char *inbuf, char *
92              break;              break;
93          case 1:          case 1:
94              outbuf[len++] = base64code[res >> 4 & 0x3F];              outbuf[len++] = base64code[res >> 4 & 0x3F];
95              res &= 0xF;              res &= 0xF;
96              break;              break;
97          case 2:          case 2:
98              outbuf[len++] = base64code[res >> 6 & 0x3F];              outbuf[len++] = base64code[res >> 6 & 0x3F];
# Line 108  base64_encode (const char *inbuf, char * Line 117  base64_encode (const char *inbuf, char *
117  }  }
118    
119    
120    /* Check that the given buffer contains a valid keyserver URL
121       and return the prefix length, 0 in case of an error. */
122    static int
123    check_URL (const char *buf)
124    {
125        if (strstr (buf, "hkp://"))
126            return 6;
127        if (strstr (buf, "http://"))
128            return 7;
129        return 0;
130    }
131    
132    
133  /* Skip the URL schema and return only the host part of it. */  /* Skip the URL schema and return only the host part of it. */
134  static const char*  static const char*
135  skip_type_prefix (const char *hostname)  skip_type_prefix (const char *hostname)
136  {  {
137      if (hostname && !strncmp (hostname, "http://", 7))      int pos;
138          hostname += 7;  
139      else if (hostname && !strncmp (hostname, "hkp://", 6))      if (!hostname)
140          hostname += 6;          return hostname;
141      else if (hostname && !strncmp (hostname, "finger://", 9))  
142          hostname += 9;      pos = check_URL (hostname);
143      else if (hostname && !strncmp (hostname, "ldap://", 7))      if (pos > 0)
144          hostname += 7;          hostname += pos;
145      return hostname;      return hostname;
146  }  }
147    
148    
149    /* Parse the keyserver response and extract the human
150       readable text passages. */
151    static int
152    parse_keyserver_error (const char *resp, char *txt, size_t txtlen)
153    {
154        char *p, *p2;
155    
156        /* If we find no 'Error' substring we assume a success. */
157        if (!stristr (resp, "Error"))
158            return -1;
159    
160        memset (txt, 0, txtlen);
161        p = strstr (resp, "\r\n\r\n");
162        if (!p)
163            return -1;
164        resp += (p-resp);
165        p = strstr (resp, "<h1>");
166        if (!p)
167            return -1;
168        resp += (p-resp)+strlen ("<h1>");
169        p = strstr (resp, "</h1>");
170        if (!p)
171            return -1;
172        resp += (p-resp)+strlen ("</h1>");
173        p2 = strstr (resp, "</body>");
174        if (p2 != NULL)
175            memcpy (txt, resp, (p2-resp));
176        else {
177            if (!strnicmp (resp, "<p>", 3))
178                resp += 3;
179            while (resp && (*resp == '\r' || *resp == '\n'))
180                resp++;
181            memcpy (txt, resp, strlen (resp));
182        }
183        return 0;
184    }
185    
186    
187  /* Check that the keyserver response indicates an OK.  /* Check that the keyserver response indicates an OK.
188     Return 0 on success. */     Return 0 on success. */
189  static int  static int
190  check_hkp_response (const char *resp, int recv)  check_hkp_response (const char *resp, int recv)
191  {      {
192      char *p, *end;      int ec;
     int ec, len;  
193    
194      ec = recv ? WPTERR_WINSOCK_RECVKEY : WPTERR_WINSOCK_SENDKEY;      ec = recv ? WPTERR_WINSOCK_RECVKEY : WPTERR_WINSOCK_SENDKEY;
195      if (!strstr (resp, "HTTP/1.0 200 OK") &&      if (!resp)
         !strstr (resp, "HTTP/1.1 200 OK")) /* http error */  
196          return ec;          return ec;
197      if (strstr (resp, "Public Key Server -- Error")      log_debug ("check_hkp_response: '%s'\r\n", resp);    
198          || strstr (resp, "Public Key Server -- Error")      if (!strstr (resp, "HTTP/1.0 200 OK") &&
199          || strstr (resp, "No matching keys in database")) {          !strstr (resp, "HTTP/1.1 200 OK") &&
200          p = strstr (resp, "<p>");          !strstr (resp, "HTTP/1.0 500 OK") &&
201          if (p && strlen (p) < sizeof (hkp_errmsg)) {          !strstr (resp, "HTTP/1.1 500 OK"))
202              end = strstr (p, "</p>");          return ec; /* http error */
203              len = end? (end - p + 1) : strlen (p);  
204              memset (hkp_errmsg, 0, sizeof (hkp_errmsg));      if (!parse_keyserver_error (resp, hkp_err_msg, DIM (hkp_err_msg)-2)) {
205              strncpy (hkp_errmsg, p, len);          if (!strlen (hkp_err_msg))
206              hkp_err = 1;              _snprintf (hkp_err_msg, DIM (hkp_err_msg)-1,
207          }                          "Unknown keyserver error");
208            hkp_has_err = 1;
209          return ec;          return ec;
210      }      }
211      return 0;      return 0;
# Line 159  static int Line 218  static int
218  sock_getline (int fd, char *buf, int buflen, int *nbytes)  sock_getline (int fd, char *buf, int buflen, int *nbytes)
219  {  {
220      char ch;      char ch;
221      int nread = 0;            int nread;
222            
223      if (nbytes)      if (nbytes)
224          *nbytes = 0;          *nbytes = 0;
225      *buf = 0;      *buf = 0;
226        nread = 0;
227      while (recv (fd, &ch, 1, 0) > 0) {      while (recv (fd, &ch, 1, 0) > 0) {
228          *buf++ = ch;          *buf++ = ch;
229          nread++;          nread++;
# Line 182  sock_getline (int fd, char *buf, int buf Line 242  sock_getline (int fd, char *buf, int buf
242    
243    
244  /* Perform a select() on the given fd to find out  /* Perform a select() on the given fd to find out
245     is there is data for reading. Wait at least @nsecs seconds. */     is there is data for reading. Wait at least @nsecs milli seconds. */
246  static int  static int
247  sock_select (int fd, int nsecs)  sock_select (int fd, int nmsecs)
248  {  {
249      FD_SET rfd;      FD_SET rfd;
250      timeval tv = {nsecs, 0};      timeval tv = {0, nmsecs*1000};
251    
252      FD_ZERO (&rfd);      FD_ZERO (&rfd);
253      FD_SET (fd, &rfd);      FD_SET (fd, &rfd);
# Line 206  sock_select (int fd, int nsecs) Line 266  sock_select (int fd, int nsecs)
266     returned in @nbytes.     returned in @nbytes.
267     Return value: 0 on success. */     Return value: 0 on success. */
268  static int  static int
269  sock_read (int fd, char *buf, int buflen, int *nbytes)  sock_read (int fd, char *buf, size_t buflen, int *nbytes)
270  {  {    
271      DWORD nread;      size_t nleft = buflen;
272      int nleft = buflen;      size_t n;
273      int rc, n = 0;      int nread;
274        int rc;
275            
276      if (nbytes)      if (nbytes)
277          *nbytes = 0;          *nbytes = 0;
278        n = 0;
279      while (nleft > 0) {      while (nleft > 0) {
280          if (n >= default_socket_timeout)          if (n >= default_socket_timeout)
281              return WPTERR_WINSOCK_TIMEOUT;              return WPTERR_WINSOCK_TIMEOUT;
282          rc = sock_select (fd, 1);          rc = sock_select (fd, 400);
283          if (rc == SOCKET_ERROR)          if (rc == SOCKET_ERROR)
284              return rc;              return rc;
285          else if (!rc)          else if (!rc)
# Line 240  sock_read (int fd, char *buf, int buflen Line 302  sock_read (int fd, char *buf, int buflen
302      return 0;      return 0;
303  }  }
304    
305    
306    /* Helper to create a string from the gpgme data and
307       then release the gpgme data object. */
308    char*
309    data_release_and_get_mem (gpgme_data_t in, size_t *r_bufferlen)
310    {    
311        char *buffer, *p;
312        size_t n;
313    
314        gpg_data_putc (in, '\0');
315        p = gpgme_data_release_and_get_mem (in, &n);
316        buffer = m_strdup (p);
317        if (r_bufferlen)
318            *r_bufferlen = n;
319        gpgme_free (p);
320        return buffer;
321    }
322    
323    
324  /* Read much data as possible from the socket @fd and  /* Read much data as possible from the socket @fd and
325     return the data in @buffer. Caller must free data.     return the data in @buffer. Caller must free data.
326     Return value: 0 on success. */     Return value: 0 on success. */
327  int  int
328  sock_read_ext (int fd, char **buffer, int *r_bufferlen)  sock_read_ext (int fd, char **buffer, size_t *r_bufferlen)
329  {  {
330      gpgme_data_t dh;      gpgme_data_t dh;
331      char buf[1024], *p;      char buf[1024];
332      size_t n=0;      size_t timeout=0;
333      int nread, rc;      int rc;
334    
335      gpgme_data_new (&dh);      *buffer = NULL;
336      while (n < 10) {      if (gpgme_data_new (&dh))
337          rc = sock_select (fd, 1);          return SOCKET_ERROR;
338        while (timeout < default_socket_timeout) {
339            rc = sock_select (fd, 500);
340          if (rc == SOCKET_ERROR) {          if (rc == SOCKET_ERROR) {
341              gpgme_data_release (dh);              gpgme_data_release (dh);
342              return rc;              return rc;
343          }          }
344          else if (!rc)          else if (!rc)
345              n++;              timeout++; /* socket not ready yet. */
346          else {          else {
347              nread = recv (fd, buf, sizeof (buf), 0);              int nread = recv (fd, buf, DIM (buf), 0);
348                log_debug ("recv n=%d bytes\r\n", nread);
349              if (nread == SOCKET_ERROR)              if (nread == SOCKET_ERROR)
350                  return SOCKET_ERROR;                  return SOCKET_ERROR;
351              else if (!nread)              else if (!nread)
# Line 269  sock_read_ext (int fd, char **buffer, in Line 353  sock_read_ext (int fd, char **buffer, in
353              gpgme_data_write (dh, buf, nread);              gpgme_data_write (dh, buf, nread);
354          }          }
355      }      }
356      gpg_data_putc (dh, '\0');      
357      p = gpgme_data_release_and_get_mem (dh, &n);      if (timeout >= default_socket_timeout) {
358      *buffer = m_strdup (p);          gpgme_data_release (dh);
359      if (r_bufferlen)          log_debug ("sock_read_ext: timeout\r\n");
360          *r_bufferlen = n;          return WPTERR_WINSOCK_TIMEOUT;
361      gpgme_free (p);      }
362        log_debug ("sock_read_ext: success\r\n");
363        *buffer = data_release_and_get_mem (dh, r_bufferlen);
364      return 0;      return 0;
365  }  }
366    
367    
368  /* Write the buffer @buf with the length @buflen to a socket @fd. */  /* Write the buffer @buf with the length @buflen to a socket @fd. */
369  static int  static int
370  sock_write (int fd, const char *buf, int buflen)  sock_write (int fd, const char *buf, size_t buflen)
371  {  {
372      DWORD nwritten;      int nwritten;
373      int nleft = buflen;      int nleft = buflen;
374    
375      while (nleft > 0) {      while (nleft > 0) {
# Line 314  wsock_init (void) Line 400  wsock_init (void)
400  }  }
401    
402    
403  /* Cleanup the Winsock2 interface. */  /* Cleanup the Winsock2 interface and free all resources. */
404  void  void
405  wsock_end (void)  wsock_end (void)
406  {  {
407      char *p;      if (default_keyserver != NULL) {
408      int i;          char str_port[64];
409            set_reg_entry_keyserver ("Default", default_keyserver);
410      p = make_special_filename (CSIDL_APPDATA, "winpt\\keyserver.conf", NULL);          free_if_alloc (default_keyserver);
411      kserver_save_conf (p);          sprintf (str_port, "%d", default_keyserver_port);
412      free_if_alloc (p);          set_reg_entry_keyserver ("Default_Port", str_port);
413      free_if_alloc (default_keyserver);      }  
414      for (i=0; i < MAX_KEYSERVERS; i++) {      for (int i=0; i < MAX_KEYSERVERS; i++) {
415          if (server[i].used && server[i].name != NULL)          if (server[i].name != NULL)
416              free_if_alloc (server[i].name);              free_if_alloc (server[i].name);
417      }      }
418      kserver_proxy_release (&proxy);      kserver_proxy_release (&proxy);
419      WSACleanup ();      WSACleanup ();
420        log_debug ("wsock_end: cleanup finished.\r\n");
421  }  }
422    
423    
424  /* Return a string representation of a winsock error. */  /* Return a string representation of a winsock error. */
425  const char*  const char*
426  wsock_strerror (void)  wsock_strerror (void)
427  {      {
     static char buf[384];  
428      int ec = WSAGetLastError ();      int ec = WSAGetLastError ();
429            
430        if (!ec)
431            return "";
432      switch (ec) {      switch (ec) {
433        case WSANOTINITIALISED:
434            return _("Winsock subsystem has not been initialized");
435            
436      case WSAENETDOWN:      case WSAENETDOWN:
437          return _("The network subsystem has failed");          return _("Network subsystem has failed");
438    
439    
440        case WSATRY_AGAIN:
441            return _("Nonauthoritative host not found, or server failure");
442            
443      case WSAHOST_NOT_FOUND:      case WSAHOST_NOT_FOUND:
444          return _("Authoritative Answer Host not found");          return _("Could not resolve host name");
445    
446      case WSAETIMEDOUT:      case WSAETIMEDOUT:
447          return _("The connection has been dropped because of a network failure");      case WSAECONNABORTED:
448            return _("Connection timeout");
449    
450        case WSAENETRESET:
451        case WSAECONNRESET:
452            return _("Connection resetted by peer");
453    
454        case WSAENETUNREACH:
455            return _("The network cannot be reached from this host at this time");
456            
457        case WSAEHOSTUNREACH:
458            return _("A socket operation was attempted to an unreachable host");
459            
460        case WSAECONNREFUSED:
461            return _("The attempt to connect was forcefully rejected");
462            
463        case WSAESHUTDOWN:
464            return _("Socket has been shutdown");
465    
466      default:      default:
467          _snprintf (buf, sizeof (buf) -1, _("Unknown Winsock error ec=%d"),ec);          break;
         return buf;  
468      }      }
469      return NULL;  
470        return _("Unknown network error");
471  }  }
472    
473    
474  /* Set default socket timeout for all reading operations. */  /* Set default socket timeout for all reading operations. */
475  void  void
476  kserver_set_socket_timeout (int nsec)  kserver_set_socket_timeout (size_t nsec)
477  {  {
478      if (nsec < 0)      if (nsec < 0 || nsec > 3600)
479          nsec = 0;          nsec = 10;
480      default_socket_timeout = nsec;      default_socket_timeout = nsec;
481  }  }
482    
# Line 370  kserver_set_socket_timeout (int nsec) Line 485  kserver_set_socket_timeout (int nsec)
485  const char*  const char*
486  kserver_strerror (void)  kserver_strerror (void)
487  {        {      
488      if (hkp_err)      return hkp_has_err? hkp_err_msg : NULL;
         return hkp_errmsg;  
     return NULL;  
489  }  }
490    
491    
# Line 385  kserver_get_hostname (int idx, int type, Line 498  kserver_get_hostname (int idx, int type,
498          *port = default_keyserver_port;          *port = default_keyserver_port;
499          return default_keyserver;          return default_keyserver;
500      }      }
501      else if (!type && idx < DIM (server_list)) {      else if (!type && (size_t)idx < DIM (server_list)) {
502          *port = HKP_PORT;          *port = HKP_PORT;
503          return server_list[idx];          return server_list[idx];
504      }      }
# Line 404  kserver_check_inet_connection (void) Line 517  kserver_check_inet_connection (void)
517          closesocket (fd);          closesocket (fd);
518          return 0;          return 0;
519      }      }
520        log_debug ("kserver_check_inet_connection: no inet connection.\r\n");
521      return -1;      return -1;
522  }  }
523    
# Line 415  kserver_check_inet_connection (void) Line 529  kserver_check_inet_connection (void)
529  const char*  const char*
530  kserver_check_keyid (const char *keyid)  kserver_check_keyid (const char *keyid)
531  {        {      
532      static char id[21];      static char id[64];
533    
534      if (strstr (keyid, "@"))      if (strstr (keyid, "@"))
535          return keyid; /* email address */          return keyid; /* email address */
536      if (strncmp (keyid, "0x", 2)) {      if (strncmp (keyid, "0x", 2)) {
537          memset (&id, 0, sizeof (id));          memset (&id, 0, sizeof (id));
538          _snprintf (id, sizeof (id)-1, "0x%s", keyid);          _snprintf (id, DIM (id)-1, "0x%s", keyid);
539          return id;          return id;
540      }      }
541      return keyid;      return keyid;
# Line 433  static void Line 547  static void
547  update_proxy_user (const char *proxy_user, const char *proxy_pass)  update_proxy_user (const char *proxy_user, const char *proxy_pass)
548  {  {
549      char t[257]; /* user:pass = 127+1+127+1 = 257 */      char t[257]; /* user:pass = 127+1+127+1 = 257 */
550      int n = 0;      size_t n;
551    
552      n = 4*strlen (proxy_user) / 3 + 32 + strlen (proxy_pass) + 2;      n = 4*(strlen (proxy_user) + strlen (proxy_pass))/3 + 32 + 2;
553      free_if_alloc (proxy.base64_user);      free_if_alloc (proxy.base64_user);
554      proxy.base64_user = new char[n];      proxy.base64_user = safe_alloc (n+1);
555      if (!proxy.base64_user)      _snprintf (t, DIM (t)-1, "%s:%s", proxy_user, proxy_pass);
         BUG (0);  
     _snprintf (t, sizeof (t)-1, "%s:%s", proxy_user, proxy_pass);  
556      base64_encode (t, proxy.base64_user);      base64_encode (t, proxy.base64_user);
557      free_if_alloc (proxy.user);      free_if_alloc (proxy.user);
558      free_if_alloc (proxy.pass);      free_if_alloc (proxy.pass);
# Line 449  update_proxy_user (const char *proxy_use Line 561  update_proxy_user (const char *proxy_use
561  }  }
562    
563    
564  /* Check that the given buffer contains a valid keyserver URL. */  /* Set the default keyserver. The position is always one. */
 static int  
 check_URL (const char * buf)  
 {  
     if (strlen (buf) < 7)  
         return -1;  
     if (!strstr (buf, "ldap://")  
         && !strstr (buf, "http://")  
         && !strstr (buf, "finger://")  
         && !strstr (buf, "hkp://"))  
         return -1;  
     return 0;  
 }  
       
   
 /* Get the port number from the given protocol. */  
 static int  
 port_from_proto (int proto)  
 {  
     switch (proto) {  
     case KSPROTO_LDAP: return 0;  
     case KSPROTO_FINGER: return FINGER_PORT;  
     case KSPROTO_HTTP: return HKP_PORT;  
     }  
     return 0;  
 }  
   
   
 /* Get the port number from the given URL. */  
 static int  
 proto_from_URL (const char *buf)  
 {  
     if (strstr( buf, "ldap"))  
         return KSPROTO_LDAP;  
     else if (strstr( buf, "finger"))  
         return KSPROTO_FINGER;  
     return KSPROTO_HKP;  
 }  
   
   
565  void  void
566  keyserver_set_default (const char *hostname, WORD port)  keyserver_set_default (const char *hostname, WORD port)
567  {  {
568      if (hostname != NULL) {      int pos=0;
569          free_if_alloc (default_keyserver);      
570          default_keyserver = m_strdup (hostname);      if (port == 0)
         if (!default_keyserver)  
             BUG (0);  
         default_keyserver_port = port;  
     }  
     if (!port)  
571          port = HKP_PORT;          port = HKP_PORT;
572      if (!default_keyserver)      
573          default_keyserver = m_strdup (DEF_HKP_KEYSERVER);      free_if_alloc (default_keyserver);
574      server[0].name =  m_strdup (default_keyserver);      default_keyserver = m_strdup (hostname);
575      server[0].used = 1;      default_keyserver_port = port;
576      server[0].port = port;      
577      server[0].proto = proto_from_URL (default_keyserver);      while (pos < MAX_KEYSERVERS) {
578            if (server[pos].is_default)
579                break;
580            if (server[pos].used) {
581                pos++;
582                continue;
583            }
584            break;
585        }
586        free_if_alloc (server[pos].name);
587        server[pos].name =  m_strdup (default_keyserver);
588        server[pos].used = 1;
589        server[pos].port = port;
590        server[pos].is_default = 1;
591  }  }
592    
593    
594  /* Skip all kind of whitespace chars in @str. */  /* Skip all kind of whitespace chars in @str.
595  static const char*  static const char*
596  skip_whitespace (const char *str)  skip_whitespace (const char *str)
597  {  {
# Line 525  skip_whitespace (const char *str) Line 606  skip_whitespace (const char *str)
606          break;          break;
607      }      }
608      return str;      return str;
609    }*/
610    
611    
612    /* Return the specified keyserver config setting @key as an integer. */
613    static int
614    get_conf_kserver_int (const char *key)
615    {
616        char *p;
617        int val = 0;
618    
619        p = get_reg_entry_keyserver (key);
620        if (p && *p)
621            val = atoi (p);
622        free_if_alloc (p);
623        return val;
624  }  }
625    
626    
627  /* Save the keyserver config file in @conf. */  /* Read the proxy configuration and store it into @prox. */
628  int  static void
629  kserver_save_conf (const char *conf)  read_proxy_config (keyserver_proxy_t prox)
630  {  {
631      FILE *fp;      char *proto;
     int pos;  
632    
633      fp = fopen (conf, "wb");      if (!prox)
634      if (!fp) {          return;
635          msg_box (NULL, _("Could not save keyserver.conf file"),      
636                   _("Keyserver"), MB_ERR);      proto = get_reg_entry_keyserver("Proto");
637          return -1;      if (proto != NULL && strlen (proto) > 0)
638      }          prox->proto = atoi (proto);
639        else
640            prox->proto = PROXY_PROTO_NONE;
641        free_if_alloc (proto);
642        
643        free_if_alloc (prox->host);
644        prox->host = get_reg_entry_keyserver ("Host");
645        
646        free_if_alloc (prox->user);
647        prox->user = get_reg_entry_keyserver ("User");
648        
649        free_if_alloc (prox->pass);
650        prox->pass = get_reg_entry_keyserver ("Pass");
651        
652        prox->port = get_conf_kserver_int ("Port");
653    }
654    
655      fprintf (fp, "# do NOT manually modify this file, it will be "  
656                   "generated automatically!!\r\n");  static int
657      for (pos = 0; pos < MAX_KEYSERVERS; pos++) {  is_keyserver_present (const char *name)
658          if (!server[pos].used)  {
659              continue;      for (int i=0; i < MAX_KEYSERVERS; i++) {
660          fprintf (fp, "%s:%d\r\n", server[pos].name, server[pos].port);          if (server[i].name != NULL &&
661                stricmp (server[i].name, name) == 0)
662                return 1;
663      }      }
     fclose (fp);  
664      return 0;      return 0;
665  }  }
666    
667    /* Load the keyserver configuration. */
 /* Load the keyserver config file @conf. */  
668  int  int
669  kserver_load_conf (const char *conf)  kserver_load_conf (void)
670  {      {
671      FILE *fp;      char *str_server, *str_port;
672      char buf[1024], *s, *p;      int port, list_pos;    
     char *user = NULL, *pass = NULL;      
     int no_config=0, chk_pos=0;  
     int pos;  
       
     for (pos = 0; pos < MAX_KEYSERVERS; pos++) {  
         server[pos].used = 0;  
         server[pos].port = HKP_PORT;  
     }  
673            
674      fp = fopen (conf, "rb");      /* If a preferred keyserver is available, load
675      if (!fp) {       * the values and store it at position 0.
676          for (pos = 0; server_list[pos]; pos++) {       */
677              server[pos].used = 1;      str_server = get_reg_entry_keyserver("Default");
678              server[pos].name = m_strdup (server_list[pos]);      if (str_server && *str_server) {
679              server[pos].proto = proto_from_URL (server_list[pos]);          port = HKP_PORT;
680          }          str_port = get_reg_entry_keyserver("Default_Port");
681          no_config=1;          if (str_port && *str_port)
682      }              port = atoi (str_port);        
683      get_reg_proxy_prefs (&proxy);          keyserver_set_default (str_server, port);
684      if (user && pass)          free_if_alloc (str_port);
685          update_proxy_user (user, pass);      }
686      else if (user && !pass || !user && pass) {      free_if_alloc (str_server);
687          msg_box (NULL, _("Invalid proxy configuration."      
688                           "You need to set a user and a password"      /* Now add the default pool servers after the
689                           "to use proxy authentication!"),       * preferred keyserver if present.
690                           _("Proxy Error"), MB_ERR);       */
691      }      list_pos = 1;
692      /* check if the host has a http:// prefix and skip it */      for (int i=0; server_list[i] != NULL; i++) {
693      if (proxy.host && !strncmp (proxy.host, "http://", 7)) {          if (is_keyserver_present (server_list[i]))
         char *host = m_strdup (proxy.host+7);  
         if (!host)  
             BUG (0);  
         free_if_alloc (proxy.host);  
         proxy.host = host;  
     }  
     free_if_alloc (user);  
     free_if_alloc (pass);  
       
     pos = 0;  
     while (fp && !feof (fp)) {  
         s = fgets (buf, sizeof (buf)-1, fp);  
         if (!s)  
             break;  
         if (strstr (buf, "\r\n"))  
             buf[strlen (buf)-2] = '\0';  
         if (strstr (buf, "\n"))  
             buf[strlen (buf)-1] = '\0';  
         s = (char *)skip_whitespace (buf);  
         if (*s == '#' || strlen (s) < 7)  
             continue;  
         if (check_URL (s)) {  
             msg_box (NULL, _("All entries of this file must have a valid prefix.\n"  
                              "Currently HKP/HTTP, LDAP and FINGER are supported.\n"),  
                              _("Keyserver Error"), MB_ERR);  
694              continue;              continue;
695          }          server[list_pos].used = 1;
696          chk_pos = 6;          server[list_pos].port = HKP_PORT;
697          if (strstr (s, "finger"))          server[list_pos].name = m_strdup (server_list[i]);
698              chk_pos = 10;          server[list_pos].is_default = 0;
699          p = strchr (s+chk_pos, ':');          list_pos++;
700          server[pos].used = 1;          if (list_pos > MAX_KEYSERVERS)
         server[pos].proto = proto_from_URL (s);  
         server[pos].port = port_from_proto (server[pos].proto);  
         if (!p)  
             server[pos].name = m_strdup (s);  
         else {        
             server[pos].port = atol (p+1);  
             if (server[pos].port < 0 || server[pos].port > 65536)  
                 server[pos].port = HKP_PORT;  
             server[pos].name = new char [(p-s)+2];  
             if (!server[pos].name)  
                 BUG (0);  
             memset (server[pos].name, 0, (p-s)+2);  
             memcpy (server[pos].name, s, (p-s));  
         }  
         pos++;  
         if (pos > MAX_KEYSERVERS) {  
             msg_box (NULL, _("The keyserver limit is exceeded"),  
                      _("Keyserver Warning"), MB_INFO);  
701              break;              break;
         }  
702      }      }
     if (fp)  
         fclose (fp);  
     if (!pos) {  
         /* only issue an error if the config file exist but  
            it has no valid entries. */  
         keyserver_set_default (NULL, HKP_PORT);  
         if (!no_config)  
             return WPTERR_CONFIG_FILE;  
     }  
   
703      return 0;      return 0;
704  }  }
705    
# Line 665  kserver_connect (const char *hostname, W Line 713  kserver_connect (const char *hostname, W
713      struct sockaddr_in sock;      struct sockaddr_in sock;
714      char host[128] = {0};      char host[128] = {0};
715      DWORD iaddr;      DWORD iaddr;
716        bool use_proxy = proxy.host != NULL;
717      int rc, fd;      int rc, fd;
718    
     log_debug ("kserver_connect: %s:%d\r\n", hostname, port);  
   
719      if (!port)      if (!port)
720          port = HKP_PORT;          port = HKP_PORT;
721      if (conn_fd)      if (conn_fd)
722          *conn_fd = 0;          *conn_fd = 0;
723      hostname = skip_type_prefix (hostname);      hostname = skip_type_prefix (hostname);
724        log_debug ("kserver_connect: %s:%d\r\n", hostname, port);
725            
726      if (proxy.host && proxy.proto == PROXY_PROTO_HTTP)      if (use_proxy && proxy.proto == PROXY_PROTO_HTTP)
727          port = proxy.port;          port = proxy.port;
728      memset (&sock, 0, sizeof (sock));      memset (&sock, 0, sizeof (sock));
729      sock.sin_family = AF_INET;      sock.sin_family = AF_INET;
730      sock.sin_port = htons (port);      sock.sin_port = htons (port);
731      if (proxy.host)      strncpy (host, use_proxy? proxy.host : hostname, DIM (host)-1);
         strncpy (host, proxy.host, 127);  
     else  
         strncpy (host, hostname, 127);  
732    
733      if ((iaddr = inet_addr (host)) != INADDR_NONE)      if ((iaddr = inet_addr (host)) != INADDR_NONE)
734          memcpy (&sock.sin_addr, &iaddr, sizeof (iaddr));          memcpy (&sock.sin_addr, &iaddr, sizeof (iaddr));
# Line 695  kserver_connect (const char *hostname, W Line 740  kserver_connect (const char *hostname, W
740          memcpy (&sock.sin_addr, hp->h_addr, hp->h_length);          memcpy (&sock.sin_addr, hp->h_addr, hp->h_length);
741      }      }
742      else {      else {
743          log_debug ("gethostbyname: failed ec=%d.\r\n", net_errno);          log_debug ("gethostbyname(%s): failed ec=%d.\r\n", host, net_errno);
744          return WPTERR_WINSOCK_RESOLVE;          return use_proxy? WPTERR_WINSOCK_PROXY : WPTERR_WINSOCK_RESOLVE;
745      }      }
746      fd = socket (AF_INET, SOCK_STREAM, 0);      fd = socket (AF_INET, SOCK_STREAM, 0);
747      if (fd == INVALID_SOCKET)        if (fd == INVALID_SOCKET)  
# Line 705  kserver_connect (const char *hostname, W Line 750  kserver_connect (const char *hostname, W
750      if (rc == SOCKET_ERROR) {      if (rc == SOCKET_ERROR) {
751          log_debug ("connect: failed ec=%d.\r\n", net_errno);          log_debug ("connect: failed ec=%d.\r\n", net_errno);
752          closesocket (fd);          closesocket (fd);
753          return WPTERR_WINSOCK_CONNECT;          return use_proxy? WPTERR_WINSOCK_PROXY : WPTERR_WINSOCK_CONNECT;
     }  
   
     if (proxy.proto == PROXY_PROTO_SOCKS5) {  
         rc = socks_handshake (&proxy, fd, hostname, port);  
         if (rc) {  
             closesocket (fd);  
             return WPTERR_GENERAL; /* XXX: use better code. */  
         }  
754      }      }
755        
756      if (conn_fd)      if (conn_fd)
757          *conn_fd = fd;          *conn_fd = fd;
758      WSASetLastError (0);      WSASetLastError (0);
# Line 723  kserver_connect (const char *hostname, W Line 760  kserver_connect (const char *hostname, W
760  }  }
761    
762    
763    /* Check if the URL needs to be encoded or not.
764  static bool  static bool
765  URL_must_encoded (const char *url)  URL_must_encoded (const char *url)
766  {  {
767      if (strchr (url, '.') || strchr (url, '@') || strchr (url, ' '))      if (strchr (url, '.') || strchr (url, '@') || strchr (url, ' '))
768          return true;          return true;
769      return false;      return false;
770  }  }*/
771    
772    
773  /* Perform URL encoding of the given data. */  /* Perform URL encoding of the given data. */
774  static char*  static char*
775  URL_encode (const char *url, size_t ulen, size_t *ret_nlen)  URL_encode (const char *url, DWORD ulen, DWORD *ret_nlen)
776  {  {
777      gpgme_data_t hd;      gpgme_data_t hd;
778      char numbuf[5], *pp, *p;      char numbuf[8], *p;
779      size_t i, n;      size_t i, nlen;
780    
781      gpgme_data_new (&hd);      if (gpgme_data_new (&hd))
782            BUG (0);
783      for (i=0; i < ulen; i++) {      for (i=0; i < ulen; i++) {
784          if (isalnum (url[i]) || url[i] == '-')          if (isalnum (url[i]) || url[i] == '-')
785              gpg_data_putc (hd, url[i]);              gpg_data_putc (hd, url[i]);
# Line 751  URL_encode (const char *url, size_t ulen Line 790  URL_encode (const char *url, size_t ulen
790              gpgme_data_write (hd, numbuf, strlen (numbuf));              gpgme_data_write (hd, numbuf, strlen (numbuf));
791          }          }
792      }      }
     gpg_data_putc (hd, '\0');  
793    
794      /* Copy memory to avoid that we need to use gpgme_free later. */      p = data_release_and_get_mem (hd, &nlen);
     pp = gpgme_data_release_and_get_mem (hd, &n);  
     p = m_strdup (pp);  
     gpgme_free (pp);  
795      if (ret_nlen)      if (ret_nlen)
796          *ret_nlen = n;          *ret_nlen = nlen;
797      return p;      return p;
798  }  }
799    
# Line 766  URL_encode (const char *url, size_t ulen Line 801  URL_encode (const char *url, size_t ulen
801  /* Format a request for the given keyid (send). */  /* Format a request for the given keyid (send). */
802  static char*  static char*
803  kserver_send_request (const char *hostname, WORD port,  kserver_send_request (const char *hostname, WORD port,
804                        const char *pubkey, int octets)                        const char *pubkey, DWORD octets)
805  {  {
806      char *request = NULL;      const char *fmt;
807      char *enc_pubkey = NULL;      char *request;
808      size_t enc_octets;      char *enc_pubkey;
809        DWORD enc_octets;
810      int reqlen;      int reqlen;
811    
812      log_debug ("kserver_send_request: %s:%d\r\n", hostname, port);      log_debug ("kserver_send_request: %s:%d\r\n", hostname, port);
813    
814      if (!port)      if (!port)
815          port = HKP_PORT;          port = HKP_PORT;
     reqlen = 512 + strlen (hostname) + 2*strlen (pubkey);  
     if (proxy.proto == PROXY_PROTO_HTTP && proxy.base64_user)  
         reqlen += strlen (proxy.base64_user) + 1;  
     request = new char[reqlen];  
     if (!request)  
         BUG (0);  
816      enc_pubkey = URL_encode (pubkey, octets, &enc_octets);      enc_pubkey = URL_encode (pubkey, octets, &enc_octets);
817      if (!enc_pubkey || !enc_octets) {      reqlen = 2*strlen (hostname) + 2*32/*port*/ + enc_octets + 32 /*len*/ + 1;
         free_if_alloc (request);  
         return NULL;  
     }  
818            
819      if (proxy.user && proxy.proto == PROXY_PROTO_HTTP) {      if (proxy.user && proxy.proto == PROXY_PROTO_HTTP) {
820          _snprintf (request, reqlen-1,          fmt = "POST http://%s:%d/pks/add HTTP/1.0\r\n"
821                     "POST http://%s:%d/pks/add HTTP/1.0\r\n"                "Referer: \r\n"
822                     "Referer: \r\n"                "User-Agent: WinPT/W32\r\n"
823                     "User-Agent: WinPT/W32\r\n"                "Host: %s:%d\r\n"
824                     "Host: %s:%d\r\n"                "Proxy-Authorization: Basic %s\r\n"
825                     "Proxy-Authorization: Basic %s\r\n"                "Content-type: application/x-www-form-urlencoded\r\n"
826                     "Content-type: application/x-www-form-urlencoded\r\n"                "Content-length: %d\r\n"
827                     "Content-length: %d\r\n"                "Connection: close\r\n"
828                     "\r\n"                "\r\n"
829                     "keytext=%s"                "keytext=%s"
830                     "\r\n",                "\r\n";
831                     skip_type_prefix (hostname), port, hostname, port,          reqlen += strlen (fmt) + strlen (proxy.base64_user) + 1;
832            request = safe_alloc (reqlen+1);
833            _snprintf (request, reqlen, fmt,
834                       skip_type_prefix (hostname), port, hostname, port,
835                     proxy.base64_user, enc_octets+9, enc_pubkey);                     proxy.base64_user, enc_octets+9, enc_pubkey);
836      }      }
837      else {      else {
838          _snprintf (request, reqlen-1,          fmt = "POST /pks/add HTTP/1.0\r\n"
839                     "POST /pks/add HTTP/1.0\r\n"                "Referer: \r\n"
840                     "Referer: \r\n"                "User-Agent: WinPT/W32\r\n"
841                     "User-Agent: WinPT/W32\r\n"                "Host: %s:%d\r\n"
842                     "Host: %s:%d\r\n"                "Content-type: application/x-www-form-urlencoded\r\n"
843                     "Content-type: application/x-www-form-urlencoded\r\n"                "Content-length: %d\r\n"
844                     "Content-length: %d\r\n"                "Connection: close\r\n"
845                     "\r\n"                "\r\n"
846                     "keytext=%s"                "keytext=%s"
847                     "\r\n",                "\r\n";
848                     skip_type_prefix (hostname), port,          reqlen += strlen (fmt)+1;
849            request = safe_alloc (reqlen+1);
850            _snprintf (request, reqlen, fmt,
851                       skip_type_prefix (hostname), port,
852                     enc_octets+9, enc_pubkey);                     enc_octets+9, enc_pubkey);
853      }      }
     free_if_alloc (enc_pubkey);  
854    
855      log_debug ("%s\r\n", request);      free_if_alloc (enc_pubkey);
856        log_debug ("request:\r\n%s\r\n", request);
857      return request;      return request;
858  }  }
859    
860    
861    /* Interface for receiving a public key. */
862  int  int
863  kserver_recvkey_ext (const char *hostname, WORD port, const char *keyid,  kserver_recvkey (const char *hostname, WORD port, const char *keyid,
864                       char **r_key, int *r_keylen)                   char **r_key, size_t *r_keylen)
865  {  {
866      char *request = NULL;      StringBuffer req;
867        const char *reqbuf;
868      int conn_fd;      int conn_fd;
869      int rc, n;      int rc;
870    
871      if (!port)      if (!port)
872          port = HKP_PORT;          port = HKP_PORT;
873      hkp_err = 0; /* reset */          hkp_has_err = 0; /* reset */
874      rc = kserver_connect (hostname, port, &conn_fd);      rc = kserver_connect (hostname, port, &conn_fd);
875      if (rc)      if (rc)
876          goto leave;          goto leave;
877        
     request = new char[300+1];  
     if (!request)  
         BUG (0);  
       
878      if (proxy.host && proxy.user && proxy.proto == PROXY_PROTO_HTTP) {      if (proxy.host && proxy.user && proxy.proto == PROXY_PROTO_HTTP) {
879          _snprintf (request, 300,          req = req + "GET http://" + skip_type_prefix (hostname) +
880              "GET http://%s:%d/pks/lookup?op=get&search=%s HTTP/1.0\r\n"              ":" + port +
881              "Proxy-Authorization: Basic %s\r\n\r\n",              "/pks/lookup?op=get&search=" + keyid + " HTTP/1.0\r\n" +
882              skip_type_prefix (hostname), port, keyid, proxy.base64_user);              "Proxy-Authorization: Basic " + proxy.base64_user + "\r\n" +
883                "Host: " + skip_type_prefix (hostname) + ":" + port + "\r\n"+
884                "Connection: close\r\n"+
885                "\r\n";
886      }      }
887      else if (proxy.host && proxy.proto == PROXY_PROTO_HTTP) {      else if (proxy.host && proxy.proto == PROXY_PROTO_HTTP) {
888          _snprintf (request, 300,          req = req + "GET http://" + skip_type_prefix (hostname) +
889              "GET http://%s:%d/pks/lookup?op=get&search=%s HTTP/1.0\r\n\r\n",              ":" + port + "/pks/lookup?op=get&search=" + keyid +
890              skip_type_prefix (hostname), port, keyid);              " HTTP/1.0\r\n" +
891      }                  "Host: " + skip_type_prefix (hostname) + ":" + port + "\r\n"+
892      else {              "Connection: close\r\n"+
893          _snprintf (request, 300,              "\r\n";
             "GET /pks/lookup?op=get&search=%s HTTP/1.0\r\n\r\n", keyid);  
894      }      }
895        else
896      log_debug ("%s\r\n", request);          req = req + "GET /pks/lookup?op=get&search=" + keyid +    
897                " HTTP/1.0\r\n"+ // FIXME
898                "Host: " + skip_type_prefix (hostname) + ":" + port + "\r\n"+
899                "Connection: close\r\n"+
900                "\r\n";
901            
902      rc = sock_write (conn_fd, request, strlen (request));      log_debug ("req:\r\n%s\r\n", req.getBuffer ());  
903    
904        reqbuf = req.getBuffer ();
905        rc = sock_write (conn_fd, reqbuf, strlen (reqbuf));
906      if (rc == SOCKET_ERROR) {      if (rc == SOCKET_ERROR) {
907          rc = WPTERR_WINSOCK_RECVKEY;          rc = WPTERR_WINSOCK_RECVKEY;
908          goto leave;          goto leave;
909      }      }
910            
911      rc = sock_read_ext (conn_fd, r_key, &n);      rc = sock_read_ext (conn_fd, r_key, r_keylen);
912      if (rc == SOCKET_ERROR) {      if (rc == SOCKET_ERROR) {
913          rc = WPTERR_WINSOCK_RECVKEY;          rc = WPTERR_WINSOCK_RECVKEY;
914          goto leave;          goto leave;
915      }      }
916    
917      if (r_keylen)      log_debug ("response:\r\n%s\r\n", *r_key);
         *r_keylen = n;  
     log_debug ("%s\r\n", *r_key);  
918      rc = check_hkp_response (*r_key, 1);      rc = check_hkp_response (*r_key, 1);
919      if (rc)      if (rc)
920          goto leave;          goto leave;
# Line 885  kserver_recvkey_ext (const char *hostnam Line 923  kserver_recvkey_ext (const char *hostnam
923            
924  leave:  leave:
925      closesocket (conn_fd);      closesocket (conn_fd);
     free_if_alloc (request);  
926      return rc;      return rc;
927  }  }
928    
 /* Interface for receiving a public key. */  
 int  
 kserver_recvkey (const char *hostname, WORD port, const char *keyid,  
                  char *key, int maxkeylen)  
 {  
     char *tmpkey;  
     int rc, nread=0;  
   
     /* XXX: just a wrapper around the new method, replace it  
             soon as possible. */  
     rc = kserver_recvkey_ext (hostname, port, keyid, &tmpkey, &nread);  
     if (rc)  
         return rc;  
   
     if (nread > maxkeylen) {  
         free_if_alloc (tmpkey);  
         return WPTERR_GENERAL;  
     }  
     strcpy (key, tmpkey);  
     free_if_alloc (tmpkey);  
     return 0;  
 }  
   
929    
930  /* Interface to send a public key. */  /* Interface to send a public key. */
931  int  int
932  kserver_sendkey (const char *hostname, WORD port, const char *pubkey, int len )  kserver_sendkey (const char *hostname, WORD port,
933                     const char *pubkey, size_t len)
934  {  {
935      char *request = NULL;      char *request = NULL;
936      char log[2048] = {0};      char log[2048] = {0};
937      int conn_fd, n;      int conn_fd, n;
938      int rc;      int rc;
939            
940      hkp_err = 0; /* reset */      hkp_has_err = 0; /* reset */
941      rc = kserver_connect (hostname, port, &conn_fd);      rc = kserver_connect (hostname, port, &conn_fd);
942      if (rc)      if (rc)
943          goto leave;          goto leave;
944            
945      request = kserver_send_request (hostname, port, pubkey, len);      request = kserver_send_request (hostname, port, pubkey, len);
     if (request == NULL) {  
         rc = WPTERR_GENERAL;  
         goto leave;      
     }  
       
946      rc = sock_write (conn_fd, request, strlen (request));      rc = sock_write (conn_fd, request, strlen (request));
947      if (rc == SOCKET_ERROR) {      if (rc == SOCKET_ERROR) {
948          rc = WPTERR_WINSOCK_SENDKEY;          rc = WPTERR_WINSOCK_SENDKEY;
949          goto leave;              goto leave;    
950      }      }
951            
952      rc = sock_read (conn_fd, log, sizeof (log)-1, &n);      rc = sock_read (conn_fd, log, DIM (log)-1, &n);
953      if (rc == SOCKET_ERROR) {      if (rc == SOCKET_ERROR) {
954          rc = WPTERR_WINSOCK_SENDKEY;          rc = WPTERR_WINSOCK_SENDKEY;
955          goto leave;          goto leave;
# Line 951  kserver_sendkey (const char *hostname, W Line 961  kserver_sendkey (const char *hostname, W
961          goto leave;          goto leave;
962            
963      WSASetLastError (0);      WSASetLastError (0);
964        
965  leave:  leave:
966      closesocket (conn_fd);      closesocket (conn_fd);
967      free_if_alloc (request);      free_if_alloc (request);
# Line 967  kserver_search_chkresp (int fd) Line 977  kserver_search_chkresp (int fd)
977      int n=0;      int n=0;
978            
979      /* parse response 'HTTP/1.0 500 OK' */      /* parse response 'HTTP/1.0 500 OK' */
980      if (sock_getline (fd, buf, 127, &n))      if (sock_getline (fd, buf, DIM (buf)-1, &n))
981          return WPTERR_KEYSERVER_NOTFOUND;          return WPTERR_KEYSERVER_NOTFOUND;
982    
983      log_debug ("kserver_search_chkpresp: %s\r\n", buf);      log_debug ("kserver_search_chkpresp: %s\r\n", buf);
# Line 988  kserver_search_end (int conn_fd) Line 998  kserver_search_end (int conn_fd)
998  }  }
999    
1000    
1001  /* Begin keyserver search procedure. */  /* Extract the amount of keys from the info record. */
1002    static size_t
1003    count_keys_in_response (char *buf)
1004    {
1005        char *p;
1006        int recno = 0;
1007        size_t n = 0;
1008    
1009        /* info:1:4 */
1010        if (strncmp (buf, "info", 4))
1011            return 0;
1012        p = strtok (buf, ":");
1013        while (p != NULL) {
1014            recno++;
1015            if (recno == 3)
1016                n = atoi (p);
1017            p = strtok (NULL, ":");
1018        }
1019        return n;
1020    }
1021    
1022    
1023    /* Start the keyserver search.
1024       Connect to host @hostname and port @port.
1025       The pattern are given in @pattern.
1026       The socket is returned in @conn_fd and @nkeys contains
1027       the amount of keys which were found. */
1028  int  int
1029  kserver_search_begin (const char *hostname, WORD port,  kserver_search_begin (const char *hostname, WORD port,
1030                        const char *pattern, int *conn_fd)                        const char *pattern, int *conn_fd, size_t *nkeys)
1031  {  {
1032      char *request = NULL;  
1033        StringBuffer req;
1034        const char *reqbuf;
1035      char *enc_patt = NULL;      char *enc_patt = NULL;
1036      int n;      char status[128];
1037      int rc, sock_fd;      int rc, sock_fd;
1038        int nread;
1039            
1040        *conn_fd = 0;
1041    
1042      rc = kserver_connect (hostname, port, &sock_fd);      rc = kserver_connect (hostname, port, &sock_fd);
1043      if (rc) {      if (rc)
         *conn_fd = 0;  
1044          goto leave;          goto leave;
     }  
1045    
1046      enc_patt = URL_encode (pattern, strlen (pattern), NULL);      enc_patt = URL_encode (pattern, strlen (pattern), NULL);
     n = 140 + strlen (enc_patt) + strlen (hostname) + 32 + 2;  
     if (proxy.base64_user)  
         n += strlen (proxy.base64_user) + 1;  
     request = new char[n+1];  
     if (!request)  
         BUG (0);  
       
1047      if (proxy.host && proxy.user && proxy.proto == PROXY_PROTO_HTTP) {      if (proxy.host && proxy.user && proxy.proto == PROXY_PROTO_HTTP) {
1048          _snprintf (request, n,          req = req + "GET http://" + skip_type_prefix (hostname) + ":" + port +
1049              "GET http://%s:%d/pks/lookup?op=index&search=%s HTTP/1.0\r\n"              "/pks/lookup?options=mr&op=index&search=" + enc_patt +
1050              "Proxy-Authorization: Basic %s\r\n\r\n",              " HTTP/1.0\r\n" +
1051              skip_type_prefix (hostname), port, enc_patt, proxy.base64_user);              "Host: " + skip_type_prefix (hostname)  + ":" + port+ "\r\n"+
1052                "Connection: close\r\n" +
1053                "Proxy-Authorization: Basic " + proxy.base64_user + "\r\n\r\n";
1054      }          }    
1055      else if (proxy.host && proxy.proto == PROXY_PROTO_HTTP) {      else if (proxy.host && proxy.proto == PROXY_PROTO_HTTP) {
1056          _snprintf (request, n,          req = req + "GET http://" + skip_type_prefix (hostname) + ":" + port +
1057              "GET http://%s:%d/pks/lookup?op=index&search=%s HTTP/1.0\r\n\r\n",              "/pks/lookup?options=mr&op=index&search=" + enc_patt +
1058              skip_type_prefix (hostname), port, enc_patt);              " HTTP/1.0\r\n"+
1059                "Host: " + skip_type_prefix (hostname)  + ":" + port+ "\r\n"+
1060                "Connection: close\r\n"+
1061                "\r\n";
1062      }      }
1063      else {      else {
1064          _snprintf (request, n,          req = req + "GET /pks/lookup?options=mr&op=index&search=" +
1065                     "GET /pks/lookup?op=index&search=%s HTTP/1.0\r\n\r\n",           enc_patt + " HTTP/1.0\r\n" +
1066                     enc_patt);           "Host: " + skip_type_prefix (hostname)  + ":" + port+ "\r\n"+
1067             "Connection: close\r\n"+
1068             "\r\n";
1069      }      }
1070            
1071      log_debug ("kserver_search_begin:\r\n%s\r\n", request);      log_debug ("kserver_search_begin:\r\n%s\r\n", req.getBuffer ());
1072            reqbuf = req.getBuffer ();
1073      if (sock_write (sock_fd, request, strlen (request)) == SOCKET_ERROR) {      if (sock_write (sock_fd, reqbuf, strlen (reqbuf)) == SOCKET_ERROR) {
1074          rc = WPTERR_GENERAL;          rc = WPTERR_GENERAL;
1075          goto leave;          goto leave;
1076      }      }
# Line 1040  kserver_search_begin (const char *hostna Line 1079  kserver_search_begin (const char *hostna
1079      if (rc) {      if (rc) {
1080          closesocket (sock_fd);          closesocket (sock_fd);
1081          sock_fd = 0;          sock_fd = 0;
1082            goto leave;
1083        }
1084    
1085        /* Skip all lines until we reach the "info:" record. */
1086        for (;;) {
1087            if (sock_getline (sock_fd, status, DIM (status)-1, &nread)) {  
1088                log_debug ("kserver_search_begin: retrieving status line failed.\r\n");
1089                closesocket (sock_fd);
1090                sock_fd = 0;
1091                rc = WPTERR_GENERAL;
1092                break;
1093            }
1094            if (!strncmp (status, "info:", 5))
1095                break;
1096      }      }
1097    
1098        if (!rc)
1099            *nkeys = count_keys_in_response (status);
1100      *conn_fd = sock_fd;      *conn_fd = sock_fd;
1101            
1102  leave:  leave:
     free_if_alloc (request);  
1103      free_if_alloc (enc_patt);      free_if_alloc (enc_patt);
1104      return rc;      return rc;
1105  }  }
1106    
1107    
1108    /* Parse a single pub record returned by the keyserver. */
1109    static void
1110  /* Convert an iso date @iso_date (YYYY-MM-DD) into the locale  parse_pub_record (keyserver_key_s *key, char *buf)
    representation and store it into @loc_date.  
    Return value: 0 on success. */  
 static int  
 parse_iso_date (const char *iso_date, char *loc_date, size_t loclen)  
1111  {  {
1112      SYSTEMTIME st;      enum pub_rec_t {ID=1, KEYID, ALGO, SIZE, CREATE, EXPIRE};
1113      char buf[16] = {0}, *p;      char *p;
1114      int pos=0;      int recno = 0;
1115        int off = 0;
1116    
1117      strncpy (buf, iso_date, sizeof (buf)-1);      /* pub:{BF3DF9B4, ED4681C9BF3DF9B4, FPR}:17:1024:925411133:: */
1118      p = strtok (buf, "-");      p = strtok (buf, ":");
1119      while (p != NULL) {      while (p != NULL) {
1120          switch (pos) {          recno++;
1121          case 0: st.wYear  = (WORD)atoi (p); pos++; break;          switch (recno) {
1122          case 1: st.wMonth = (WORD)atoi (p); pos++; break;          case ID:
1123          case 2: st.wDay   = (WORD)atoi (p); pos++; break;              break;
1124          default: break;  
1125            case KEYID:
1126                /* If for any reason the returned record actually contains
1127                   a fingerprint instead of a key ID, we truncate the fpr. */
1128                off = strlen (p) == 40? 32 : 0;
1129                free_if_alloc (key->keyid);
1130                key->keyid = m_strdup (p+off);
1131                break;
1132    
1133            case ALGO:
1134                key->algo = atoi (p);
1135                break;
1136                
1137            case SIZE:
1138                key->bits = atoi (p);
1139                break;
1140    
1141            case CREATE:
1142                key->creation = strtoul (p, NULL, 10);
1143                break;
1144    
1145            case EXPIRE:
1146                key->expires = strtoul (p, NULL, 10);
1147                break;
1148          }          }
1149          p = strtok (NULL, "-");          p = strtok (NULL, ":");
1150      }      }
     if (pos != 3)  
         return -1;  
       
     if (!GetDateFormat (LOCALE_USER_DEFAULT, DATE_SHORTDATE, &st,  
                         NULL, loc_date, loclen))  
         return -1;  
     return 0;  
1151  }  }
1152    
1153    
1154  int  /* Parse a single user id returned by the keyserver. */
1155  kserver_search_next (int fd, keyserver_key *key)  static void
1156    parse_uid_record (keyserver_key_s *key, char *buf)
1157  {  {
1158      char buf[1024], *p;      enum uid_rec_t {ID=1, UID, CREATE, EXPIRE};
1159      int uidlen, nbytes, pos = 0;      keyserver_uid_s *u, *n;
1160        char *p, *raw;
1161        int recno = 0;
1162    
1163        /* uid:Timo Schulz <[email protected]>:1138440360:: */
1164        u = new keyserver_uid_s;
1165        memset (u, 0, sizeof *u);
1166    
1167      log_debug ("keyserver_search_next:\r\n");      p = strtok (buf, ":");
1168            while (p != NULL) {
1169      if (sock_getline (fd, buf, sizeof (buf) - 1, &nbytes))          recno++;
         return WPTERR_GENERAL;  
1170    
1171      /* XXX: use maschine readable option. */          switch (recno) {
1172      log_debug ("%s\r\n", buf);          case ID:
1173                    break;
     if (!strncmp (buf, "pub", 3)) {  
         int revoked = strstr (buf, "KEY REVOKED") != NULL? 1 : 0;  
         key->bits = atol (buf+3);  
         p = strchr (buf, '>');  
         if (!p)  
             goto fail;  
         pos = p - buf + 1;  
         memcpy (key->keyid, buf + pos, 8);  
         key->keyid[8] = '\0';  
         p = strstr (buf, "</a>");  
         if (!p)  
             goto fail;  
         pos = p - buf + 5;  
         memcpy (key->date, buf + pos, 10);  
         key->date[10] = '\0';  
         parse_iso_date (key->date, key->date, sizeof (key->date)-1);  
         if (revoked) {  
             strcpy (key->uid, "KEY REVOKED: not checked");  
             return 0;  
         }  
         pos += 10;  
         p = buf + pos + 1;  
         while (p && *p != '>')  
             p++;  
         p++;  
         uidlen = strlen (p) - 10;  
         if (!strstr (p, "&lt;") && !strstr (p, "&gt;")) {  
             pos=0;  
             while (p && *p && pos < sizeof (key->uid)-1) {  
                 if (*p == '<')  
                     break;  
                 key->uid[pos++] = *p++;  
             }  
             key->uid[pos] ='\0';  
             return 0;  
         }  
1174    
1175          if (uidlen > sizeof (key->uid)-1)          case UID:
1176              uidlen = sizeof (key->uid)-1;              unhexify_buffer (p, &raw);
1177          memcpy (key->uid, p, uidlen);              u->uid = utf8_to_native (raw);
1178          key->uid[uidlen] = '\0';              free_if_alloc (raw);
1179          strcat (key->uid, ">");              break;
         p = strchr (key->uid, '&');  
         if (p) {  
             key->uid[(p-key->uid)] = '<';  
             memmove (key->uid+(p-key->uid)+1, key->uid+(p-key->uid)+4,  
                      strlen (key->uid)-3);  
         }  
         return 0;  
     }  
1180    
1181  fail:          case CREATE:
1182      key->bits = 0;              u->creation = strtoul (p, NULL, 10);
1183      memset (key, 0, sizeof *key);              break;
     return 0;  
 }  
1184    
1185            case EXPIRE:
1186                u->expires = strtoul (p, NULL, 10);
1187                break;
1188            }
1189    
1190  /* Release mbmers in the proxy context @ctx. */          p = strtok (NULL, ":");
1191  void      }
1192  kserver_proxy_release (keyserver_proxy_t ctx)      if (!key->uids)
1193  {          key->uids = u;
1194      free_if_alloc (ctx->host);      else {
1195      free_if_alloc (ctx->pass);          for (n = key->uids; n->next; n=n->next)
1196      free_if_alloc (ctx->user);              ;
1197      ctx->port = ctx->proto = 0;          n->next = u;
1198        }
1199  }  }
1200    
1201    
1202  /* Spawn a process given by @cmdl. */  /* Peek the next 3 bytes to check if the next line
1203       would be a new "pub" record. In this case, return
1204       -1 as an EOF indication, 0 otherwise. */
1205  static int  static int
1206  spawn_application (char *cmdl)  is_key_eof (int fd)
1207  {  {
1208      STARTUPINFO si;      char buf[64];
1209      PROCESS_INFORMATION pi;      int n;
1210      int rc = 0;  
1211        n = recv (fd, buf, 3, MSG_PEEK);
1212      memset (&si, 0, sizeof (si));      if (n < 3 || strncmp (buf, "pub", 3))
1213      si.cb = sizeof (si);          return 0;
1214      si.dwFlags = STARTF_USESHOWWINDOW;      return -1;
     si.wShowWindow = SW_HIDE;  
     memset (&pi, 0, sizeof (pi));  
   
     if (!CreateProcess (NULL, cmdl, NULL, NULL, FALSE, 0,  
                         NULL, NULL, &si, &pi)) {  
         log_box ("Keyserver Plugin", MB_ERR, "Could not spawn helper process");  
         rc = -1;  
     }  
   
     CloseHandle (pi.hThread);  
     WaitForSingleObject (pi.hProcess, INFINITE);  
     CloseHandle (pi.hProcess);  
     return rc;  
1215  }  }
1216    
1217    
1218  /* Receive an key via LDAP from host @host with the keyid @keyid.  /* Return the next key from the search response. */
    @key contains the key on success. */  
1219  int  int
1220  ldap_recvkey (const char *host, const char *keyid, char *key, int maxkeylen)  kserver_search_next (int fd, keyserver_key_s **r_key)
1221  {      {
1222      FILE *fp;      keyserver_uid_s *uid, *u = NULL;
1223      const char *s;      keyserver_key_s *key;
1224      char *ksprg = NULL, *p = NULL, *sep;      char buf[512];
1225      char inf[256], outf[256], buf[512];      int n = 0;
1226      DWORD n;      long max = 0;
     int start_key = 0, failed = 0;  
     int rc = 0;  
   
     p = get_gnupg_prog ();  
     n = strlen (p) + 1 + 128;  
     ksprg = new char[n+1];  
     if (!ksprg)  
         BUG (0);  
     sep = strrchr (p, '\\');  
     if (sep != NULL)  
         p[(sep-p)] = 0;  
   
     _snprintf (ksprg, n, "%s\\gpgkeys_ldap.exe", p);  
     free_if_alloc (p);  
     if (file_exist_check (ksprg)) {  
         log_box ("LDAP Keyserver Plugin", MB_ERR,  
                  "%s: could not find LDAP keyserver module!", ksprg);  
         rc = -1;  
         goto leave;  
     }  
     get_temp_name (outf, sizeof (outf)-1, keyid);  
     get_temp_name (inf, sizeof (inf)-1, NULL);  
     fp = fopen (inf, "w+b");  
     if (!fp) {  
         log_box ("LDAP Keyserver Plugin", MB_ERR, "%s: %s", inf,  
                  winpt_strerror (WPTERR_FILE_OPEN));  
         rc = -1;  
         goto leave;  
     }  
     fprintf (fp,  
         "VERSION 1\n"  
         "PROGRAM 1.4.3-cvs\n"  
         "SCHEME ldap\n"  
         "HOST %s\n"  
         "COMMAND GET\n"  
         "\n"  
         "%s\n",  
         host? skip_type_prefix (host): "64.94.85.200", keyid);  
     fclose (fp);  
1227    
1228      p = new char[strlen (ksprg) + strlen (inf) + strlen (outf) + 32];      log_debug ("keyserver_search_next:\r\n");
1229      if (!p)      *r_key = NULL;
         BUG (NULL);  
     sprintf (p, "%s -o %s %s", ksprg, outf, inf);  
     if (spawn_application (p)) {  
         rc = -1;  
         goto leave;  
     }  
1230    
1231      fp = fopen (outf, "rb");      key = new keyserver_key_s;
1232      if (!fp) {      memset (key, 0, sizeof *key);
1233          log_box ("LDAP Keyserver Plugin", MB_ERR, "%s: %s", outf,      for (;;) {
1234                   winpt_strerror (WPTERR_FILE_OPEN));          if (sock_getline (fd, buf, DIM (buf)-1, &n))
         rc = -1;  
         goto leave;  
     }  
     memset (key, 0, maxkeylen);  
     while (!feof (fp)) {  
         s = fgets (buf, sizeof (buf)-1, fp);  
         if (!s)  
1235              break;              break;
1236          if (strstr (s, "KEY") && strstr (s, "FAILED")) {          /*log_debug ("record: '%s'\r\n", buf); */
1237              failed = 1;          if (!strncmp (buf, "pub", 3))
1238                parse_pub_record (key, buf);
1239            else
1240                parse_uid_record (key, buf);
1241            if (is_key_eof (fd))
1242              break;              break;
1243        }
1244    
1245        /* the uid with the newest self sig is used as the
1246           primary user id. */
1247        for (uid = key->uids; uid; uid = uid->next) {
1248            if (uid->creation > max) {
1249                max = uid->creation;
1250                u = uid;
1251          }          }
         if (!start_key && strstr (s, "KEY") && strstr (s, "BEGIN")) {  
             start_key = 1;  
             continue;  
         }        
         if (!start_key)  
             continue;  
         strcat (key, buf);  
         maxkeylen -= strlen (buf);  
         if (maxkeylen < 0 || (strstr (s, "KEY") && strstr (s, "END")))  
             break;  
1252      }      }
     fclose (fp);  
1253    
1254  leave:      key->main_uid = u? u : key->uids;
1255      if (failed || !strlen (key))      *r_key = key;
1256          rc = WPTERR_WINSOCK_RECVKEY;      return 0;
     DeleteFile (inf);  
     DeleteFile (outf);  
     free_if_alloc (p);  
     free_if_alloc (ksprg);  
     return rc;  
1257  }  }
1258    
1259    
1260  /* Receive an key via FINGER from host @host with the user @user.  /* Release the keyserver key @key and all its elements. */
1261     On success @key contains the key. */  void
1262  int  kserver_release_key (keyserver_key_s *key)
 finger_recvkey (const char *host, const char *user, char *key, int maxkeylen)  
1263  {  {
1264      char buf[128];      keyserver_uid_s *u;
     int fd, nread;  
     int start_key = 0;  
     int rc=0;  
1265    
1266      rc = kserver_connect (host, FINGER_PORT, &fd);      while (key->uids) {
1267      if (rc)          u = key->uids->next;
1268          return rc;          free_if_alloc (key->uids->uid);
1269            free_if_alloc (key->uids);
1270            key->uids = u;
1271        }
1272        free_if_alloc (key->keyid);
1273        free_if_alloc (key);
1274    }
1275    
     sock_write (fd, user, strlen (user));  
     sock_write (fd, "\r\n", 2);  
1276    
1277      memset (key, 0, maxkeylen);  /* Release mbmers in the proxy context @ctx. */
1278      while (maxkeylen > 0) {  void
1279          if (sock_getline (fd, buf, sizeof (buf), &nread))  kserver_proxy_release (keyserver_proxy_t ctx)
1280              break;  {
1281          strcat (buf, "\n");      free_if_alloc (ctx->host);
1282          if (strstr (buf, "BEGIN PGP PUBLIC KEY BLOCK")) {      free_if_alloc (ctx->pass);
1283              strcat (key, buf);      free_if_alloc (ctx->user);
1284              start_key = 1;      ctx->port = ctx->proto = 0;
             maxkeylen -= nread;  
         }  
         else if (strstr (buf, "END PGP PUBLIC KEY BLOCK" ) && start_key) {  
             strcat (key, buf);  
             start_key--;  
             maxkeylen -= nread;  
             break;  
         }  
         else if (start_key) {  
             strcat (key, buf);  
             maxkeylen -= nread;  
         }  
     }  
     closesocket (fd);  
     if (start_key != 0)  
         rc = WPTERR_WINSOCK_RECVKEY;  
     return rc;  
1285  }  }
1286    
1287    
1288  /* Check if the given name @name is a valid hostname. */  /* Check if the given name @name is a valid inernet address
1289       which means an dotted IP or a valid DNS name.
1290       Return value: 0 on success. */
1291  int  int
1292  check_IP_or_hostname (const char *name)  check_inet_address (const char *addr)
1293  {  {
1294      const char *not_allowed = "=!�$%&@#*~\\/}][{<>|,;:'";      const char *not_allowed = "=!�$%&@#*~\\/}][{<>|,;:'";
     size_t i, j;  
1295    
1296      for (i=0; i < strlen (name); i++) {      for (size_t i=0; i < strlen (addr); i++) {
1297          for (j =0; j < strlen (not_allowed); j++) {          if (strchr (not_allowed, addr[i]))
1298              if (name[i] == not_allowed[j])              return -1;
1299                  return -1;      }
1300          }      return 0;
1301    }
1302    
1303    
1304    /* Split the URL @r_keyserver into the host and the port
1305       part if possible. */
1306    gpgme_error_t
1307    parse_keyserver_url (char **r_keyserver, unsigned short *r_port)
1308    {
1309        char *p;
1310        char *url = *r_keyserver;
1311        int off;
1312    
1313        /* no port is given so use the default port. */
1314        p = strrchr (url, ':');
1315        if (p == strchr (url, ':')) {
1316            *r_port = HKP_PORT;
1317            return 0;
1318      }      }
1319    
1320        if (url[(p-url)-1] == '/') /* remove / in .de/:11371 */
1321            off = 1;
1322        else
1323            off = 0;
1324    
1325        *r_keyserver = substr (url, 0, (p-url)-off);
1326        *r_port = atoi (url+(p-url)+1);
1327        free_if_alloc (url);
1328      return 0;      return 0;
1329  }  }

Legend:
Removed from v.197  
changed lines
  Added in v.328

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26