summaryrefslogtreecommitdiff
path: root/gpg2ssh.c
blob: f696f659cc903d8938f9cdb21efd14b5118a389c (plain)
  1. #include "gnutls-helpers.h"
  2. #include <gnutls/openpgp.h>
  3. #include <gnutls/x509.h>
  4. /* for waitpid() */
  5. #include <sys/types.h>
  6. #include <sys/wait.h>
  7. /*
  8. Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
  9. Date: Tue, 08 Apr 2008
  10. License: GPL v3 or later
  11. monkeysphere public key translator: execute this with an GPG
  12. certificate (public key(s) + userid(s)) on stdin. It currently
  13. only works with RSA keys.
  14. It will spit out a version of the first key capable of being used
  15. for authentication on stdout. The output format should be suitable
  16. for appending a known_hosts file.
  17. Requirements: I've only built this so far with GnuTLS v2.3.4 --
  18. version 2.2.0 does not contain the appropriate pieces.
  19. */
  20. int main(int argc, char* argv[]) {
  21. gnutls_datum_t data;
  22. int ret;
  23. gnutls_openpgp_crt_t openpgp_crt;
  24. gnutls_openpgp_keyid_t keyid;
  25. printable_keyid p_keyid;
  26. unsigned int keyidx;
  27. unsigned int usage, bits;
  28. gnutls_pk_algorithm_t algo;
  29. gnutls_datum_t m, e, p, q, g, y;
  30. gnutls_datum_t algolabel;
  31. char output_data[10240];
  32. char userid[10240];
  33. size_t uidsz = sizeof(userid);
  34. const gnutls_datum_t* all[5];
  35. int pipefd;
  36. pid_t child_pid;
  37. char* const args[] = {"/usr/bin/base64", "--wrap=0", NULL};
  38. const char* algoname;
  39. int mpicount;
  40. init_gnutls();
  41. init_datum(&data);
  42. init_datum(&m);
  43. init_datum(&e);
  44. init_datum(&p);
  45. init_datum(&q);
  46. init_datum(&g);
  47. init_datum(&y);
  48. init_datum(&algolabel);
  49. init_keyid(keyid);
  50. /* slurp in the private key from stdin */
  51. if (ret = set_datum_fd(&data, 0), ret) {
  52. err("didn't read file descriptor 0\n");
  53. return 1;
  54. }
  55. if (ret = gnutls_openpgp_crt_init(&openpgp_crt), ret) {
  56. err("Failed to initialize OpenPGP certificate (error: %d)\n", ret);
  57. return 1;
  58. }
  59. /* format could be either: GNUTLS_OPENPGP_FMT_RAW,
  60. GNUTLS_OPENPGP_FMT_BASE64; if MONKEYSPHERE_RAW is set, use RAW,
  61. otherwise, use BASE64: */
  62. /* FIXME: we should be auto-detecting the input format, and
  63. translating it as needed. */
  64. if (getenv("MONKEYSPHERE_RAW")) {
  65. err("assuming RAW formatted certificate\n");
  66. if (ret = gnutls_openpgp_crt_import(openpgp_crt, &data, GNUTLS_OPENPGP_FMT_RAW), ret) {
  67. err("failed to import the OpenPGP certificate in RAW format (error: %d)\n", ret);
  68. return ret;
  69. }
  70. } else {
  71. err("assuming BASE64 formatted certificate\n");
  72. if (ret = gnutls_openpgp_crt_import (openpgp_crt, &data, GNUTLS_OPENPGP_FMT_BASE64), ret) {
  73. err("failed to import the OpenPGP certificate in BASE64 format (error: %d)\n", ret);
  74. return ret;
  75. }
  76. }
  77. if (gnutls_openpgp_crt_get_revoked_status(openpgp_crt)) {
  78. err("the primary key was revoked!\n");
  79. return 1;
  80. }
  81. /* FIXME: We're currently looking at the primary key or maybe the
  82. first authentication-capable subkey.
  83. Instead, we should be iterating through the primary key and all
  84. subkeys: for each one with the authentication usage flag set of a
  85. algorithm we can handle, we should output matching UserIDs and
  86. the SSH version of the key. */
  87. if (ret = gnutls_openpgp_crt_get_key_usage(openpgp_crt, &usage), ret) {
  88. err("failed to get the usage flags for the primary key (error: %d)\n", ret);
  89. return ret;
  90. }
  91. if (usage & GNUTLS_KEY_KEY_AGREEMENT) {
  92. err("the primary key can be used for authentication\n");
  93. algo = gnutls_openpgp_crt_get_pk_algorithm(openpgp_crt, &bits);
  94. if (algo < 0) {
  95. err("failed to get the algorithm of the OpenPGP public key (error: %d)\n", algo);
  96. return algo;
  97. } else if (algo == GNUTLS_PK_RSA) {
  98. err("OpenPGP RSA certificate, with %d bits\n", bits);
  99. ret = gnutls_openpgp_crt_get_pk_rsa_raw(openpgp_crt, &m, &e);
  100. if (GNUTLS_E_SUCCESS != ret) {
  101. err ("failed to export RSA key parameters (error: %d)\n", ret);
  102. return 1;
  103. }
  104. } else if (algo == GNUTLS_PK_DSA) {
  105. err("OpenPGP DSA Key, with %d bits\n", bits);
  106. ret = gnutls_openpgp_crt_get_pk_dsa_raw(openpgp_crt, &p, &q, &g, &y);
  107. if (GNUTLS_E_SUCCESS != ret) {
  108. err ("failed to export DSA key parameters (error: %d)\n", ret);
  109. return 1;
  110. }
  111. } else {
  112. err("OpenPGP Key was not RSA or DSA -- can't deal! (actual algorithm was: %d)\n", algo);
  113. return 1;
  114. }
  115. } else {
  116. err("primary key is only good for: 0x%08x. Trying subkeys...\n", usage);
  117. if (ret = gnutls_openpgp_crt_get_auth_subkey(openpgp_crt, keyid), ret) {
  118. err("failed to find a subkey capable of authentication (error: %d)\n", ret);
  119. return ret;
  120. }
  121. make_keyid_printable(p_keyid, keyid);
  122. err("found authentication subkey %.16s\n", p_keyid);
  123. ret = gnutls_openpgp_crt_get_subkey_idx(openpgp_crt, keyid);
  124. if (ret < 0) {
  125. err("could not get the index of subkey %.16s (error: %d)\n", ret);
  126. return ret;
  127. }
  128. keyidx = ret;
  129. if (gnutls_openpgp_crt_get_subkey_revoked_status(openpgp_crt, keyidx)) {
  130. err("The authentication subkey was revoked!\n");
  131. return 1;
  132. }
  133. if (ret = gnutls_openpgp_crt_get_subkey_usage(openpgp_crt, keyidx, &usage), ret) {
  134. err("could not figure out usage of subkey %.16s (error: %d)\n", p_keyid, ret);
  135. return ret;
  136. }
  137. if ((usage & GNUTLS_KEY_KEY_AGREEMENT) == 0) {
  138. err("could not find a subkey with authentication privileges.\n");
  139. return 1;
  140. }
  141. /* switch, based on the algorithm in question, to extract the MPI
  142. components: */
  143. algo = gnutls_openpgp_crt_get_subkey_pk_algorithm(openpgp_crt, keyidx, &bits);
  144. if (algo < 0) {
  145. err("failed to get the algorithm of the authentication subkey (error: %d)\n", algo);
  146. return algo;
  147. } else if (algo == GNUTLS_PK_RSA) {
  148. err("OpenPGP RSA subkey, with %d bits\n", bits);
  149. ret = gnutls_openpgp_crt_get_subkey_pk_rsa_raw(openpgp_crt, keyidx, &m, &e);
  150. if (GNUTLS_E_SUCCESS != ret) {
  151. err ("failed to export RSA subkey parameters (error: %d)\n", ret);
  152. return 1;
  153. }
  154. } else if (algo == GNUTLS_PK_DSA) {
  155. err("OpenPGP DSA subkey, with %d bits\n", bits);
  156. ret = gnutls_openpgp_crt_get_subkey_pk_dsa_raw(openpgp_crt, keyidx, &p, &q, &g, &y);
  157. if (GNUTLS_E_SUCCESS != ret) {
  158. err ("failed to export DSA subkey parameters (error: %d)\n", ret);
  159. return 1;
  160. }
  161. } else {
  162. err("OpenPGP subkey was not RSA or DSA -- can't deal! (actual algorithm was: %d)\n", algo);
  163. return 1;
  164. }
  165. }
  166. /* make sure userid is NULL-terminated */
  167. userid[sizeof(userid) - 1] = 0;
  168. uidsz--;
  169. /* FIXME: we're just choosing the first UserID from the certificate:
  170. instead, we should be selecting every User ID that is adequately
  171. signed and matches the spec, and aggregating them with commas for
  172. known_hosts output */
  173. if (ret = gnutls_openpgp_crt_get_name(openpgp_crt, 0, userid, &uidsz), ret) {
  174. err("Failed to fetch the first UserID (error: %d)\n", ret);
  175. return ret;
  176. }
  177. if (ret = validate_ssh_host_userid(userid), ret) {
  178. err("bad userid: not a valid ssh host.\n");
  179. return ret;
  180. }
  181. /* remove ssh:// from the beginning of userid */
  182. memmove(userid, userid + strlen("ssh://"), 1 + strlen(userid) - strlen("ssh://"));
  183. /* now we have algo, and the various MPI data are set. Can we
  184. export them cleanly? */
  185. /* for the moment, we'll just dump the info raw, and pipe it
  186. externally through coreutils' /usr/bin/base64 */
  187. if (algo == GNUTLS_PK_RSA) {
  188. algoname = "ssh-rsa";
  189. mpicount = 3;
  190. all[0] = &algolabel;
  191. all[1] = &e;
  192. all[2] = &m;
  193. } else if (algo == GNUTLS_PK_DSA) {
  194. algoname = "ssh-dss";
  195. mpicount = 5;
  196. all[0] = &algolabel;
  197. all[1] = &p;
  198. all[2] = &q;
  199. all[3] = &g;
  200. all[4] = &y;
  201. } else {
  202. err("no idea what this algorithm is: %d\n", algo);
  203. return 1;
  204. }
  205. if (ret = datum_from_string(&algolabel, algoname), ret) {
  206. err("couldn't label string (error: %d)\n", ret);
  207. return ret;
  208. }
  209. snprintf(output_data, sizeof(output_data), "%s %s ", userid, algoname);
  210. write(1, output_data, strlen(output_data));
  211. pipefd = create_writing_pipe(&child_pid, args[0], args);
  212. if (pipefd < 0) {
  213. err("failed to create a writing pipe (returned %d)\n", pipefd);
  214. return pipefd;
  215. }
  216. if (0 != write_data_fd_with_length(pipefd, all, mpicount)) {
  217. err("was not able to write out RSA key data\n");
  218. return 1;
  219. }
  220. close(pipefd);
  221. if (child_pid != waitpid(child_pid, NULL, 0)) {
  222. err("could not wait for child process to return for some reason.\n");
  223. return 1;
  224. }
  225. write(1, "\n", 1);
  226. gnutls_openpgp_crt_deinit(openpgp_crt);
  227. gnutls_global_deinit();
  228. return 0;
  229. }