summaryrefslogtreecommitdiff
path: root/gpg2ssh.c
blob: a109943e2533fc4ed1000841f5bc90fe8f0576a7 (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. if (getenv("MONKEYSPHERE_RAW")) {
  63. err("assuming RAW formatted certificate\n");
  64. if (ret = gnutls_openpgp_crt_import(openpgp_crt, &data, GNUTLS_OPENPGP_FMT_RAW), ret) {
  65. err("failed to import the OpenPGP certificate in RAW format (error: %d)\n", ret);
  66. return ret;
  67. }
  68. } else {
  69. err("assuming BASE64 formatted certificate\n");
  70. if (ret = gnutls_openpgp_crt_import (openpgp_crt, &data, GNUTLS_OPENPGP_FMT_BASE64), ret) {
  71. err("failed to import the OpenPGP certificate in BASE64 format (error: %d)\n", ret);
  72. return ret;
  73. }
  74. }
  75. if (gnutls_openpgp_crt_get_revoked_status(openpgp_crt)) {
  76. err("the primary key was revoked!\n");
  77. return 1;
  78. }
  79. if (ret = gnutls_openpgp_crt_get_key_usage(openpgp_crt, &usage), ret) {
  80. err("failed to get the usage flags for the primary key (error: %d)\n", ret);
  81. return ret;
  82. }
  83. if (usage & GNUTLS_KEY_KEY_AGREEMENT) {
  84. err("the primary key can be used for authentication\n");
  85. algo = gnutls_openpgp_crt_get_pk_algorithm(openpgp_crt, &bits);
  86. if (algo < 0) {
  87. err("failed to get the algorithm of the OpenPGP public key (error: %d)\n", algo);
  88. return algo;
  89. } else if (algo == GNUTLS_PK_RSA) {
  90. err("OpenPGP RSA certificate, with %d bits\n", bits);
  91. ret = gnutls_openpgp_crt_get_pk_rsa_raw(openpgp_crt, &m, &e);
  92. if (GNUTLS_E_SUCCESS != ret) {
  93. err ("failed to export RSA key parameters (error: %d)\n", ret);
  94. return 1;
  95. }
  96. } else if (algo == GNUTLS_PK_DSA) {
  97. err("OpenPGP DSA Key, with %d bits\n", bits);
  98. ret = gnutls_openpgp_crt_get_pk_dsa_raw(openpgp_crt, &p, &q, &g, &y);
  99. if (GNUTLS_E_SUCCESS != ret) {
  100. err ("failed to export DSA key parameters (error: %d)\n", ret);
  101. return 1;
  102. }
  103. } else {
  104. err("OpenPGP Key was not RSA or DSA -- can't deal! (actual algorithm was: %d)\n", algo);
  105. return 1;
  106. }
  107. } else {
  108. err("primary key is only good for: 0x%08x. Trying subkeys...\n", usage);
  109. if (ret = gnutls_openpgp_crt_get_auth_subkey(openpgp_crt, keyid), ret) {
  110. err("failed to find a subkey capable of authentication (error: %d)\n", ret);
  111. return ret;
  112. }
  113. make_keyid_printable(p_keyid, keyid);
  114. err("found authentication subkey %.16s\n", p_keyid);
  115. ret = gnutls_openpgp_crt_get_subkey_idx(openpgp_crt, keyid);
  116. if (ret < 0) {
  117. err("could not get the index of subkey %.16s (error: %d)\n", ret);
  118. return ret;
  119. }
  120. keyidx = ret;
  121. if (gnutls_openpgp_crt_get_subkey_revoked_status(openpgp_crt, keyidx)) {
  122. err("The authentication subkey was revoked!\n");
  123. return 1;
  124. }
  125. if (ret = gnutls_openpgp_crt_get_subkey_usage(openpgp_crt, keyidx, &usage), ret) {
  126. err("could not figure out usage of subkey %.16s (error: %d)\n", p_keyid, ret);
  127. return ret;
  128. }
  129. if ((usage & GNUTLS_KEY_KEY_AGREEMENT) == 0) {
  130. err("could not find a subkey with authentication privileges.\n");
  131. return 1;
  132. }
  133. /* switch, based on the algorithm in question, to extract the MPI
  134. components: */
  135. algo = gnutls_openpgp_crt_get_subkey_pk_algorithm(openpgp_crt, keyidx, &bits);
  136. if (algo < 0) {
  137. err("failed to get the algorithm of the authentication subkey (error: %d)\n", algo);
  138. return algo;
  139. } else if (algo == GNUTLS_PK_RSA) {
  140. err("OpenPGP RSA subkey, with %d bits\n", bits);
  141. ret = gnutls_openpgp_crt_get_subkey_pk_rsa_raw(openpgp_crt, keyidx, &m, &e);
  142. if (GNUTLS_E_SUCCESS != ret) {
  143. err ("failed to export RSA subkey parameters (error: %d)\n", ret);
  144. return 1;
  145. }
  146. } else if (algo == GNUTLS_PK_DSA) {
  147. err("OpenPGP DSA subkey, with %d bits\n", bits);
  148. ret = gnutls_openpgp_crt_get_subkey_pk_dsa_raw(openpgp_crt, keyidx, &p, &q, &g, &y);
  149. if (GNUTLS_E_SUCCESS != ret) {
  150. err ("failed to export DSA subkey parameters (error: %d)\n", ret);
  151. return 1;
  152. }
  153. } else {
  154. err("OpenPGP subkey was not RSA or DSA -- can't deal! (actual algorithm was: %d)\n", algo);
  155. return 1;
  156. }
  157. }
  158. /* make sure userid is NULL-terminated */
  159. userid[sizeof(userid) - 1] = 0;
  160. uidsz--;
  161. /* FIXME: we're just choosing the first UserID from the certificate:
  162. instead, we should be choosing the one that's adequately signed,
  163. and matches the monkeysphere specification. */
  164. if (ret = gnutls_openpgp_crt_get_name(openpgp_crt, 0, userid, &uidsz), ret) {
  165. err("Failed to fetch the first UserID (error: %d)\n", ret);
  166. return ret;
  167. }
  168. if (ret = validate_ssh_host_userid(userid), ret) {
  169. err("bad userid: not a valid ssh host.\n");
  170. return ret;
  171. }
  172. /* remove ssh:// from the beginning of userid */
  173. memmove(userid, userid + strlen("ssh://"), 1 + strlen(userid) - strlen("ssh://"));
  174. /* now we have algo, and the various MPI data are set. Can we
  175. export them cleanly? */
  176. /* for the moment, we'll just dump the info raw, and pipe it
  177. externally through coreutils' /usr/bin/base64 */
  178. if (algo == GNUTLS_PK_RSA) {
  179. algoname = "ssh-rsa";
  180. mpicount = 3;
  181. all[0] = &algolabel;
  182. all[1] = &e;
  183. all[2] = &m;
  184. } else if (algo == GNUTLS_PK_DSA) {
  185. algoname = "ssh-dss";
  186. mpicount = 5;
  187. all[0] = &algolabel;
  188. all[1] = &p;
  189. all[2] = &q;
  190. all[3] = &g;
  191. all[4] = &y;
  192. } else {
  193. err("no idea what this algorithm is: %d\n", algo);
  194. return 1;
  195. }
  196. if (ret = datum_from_string(&algolabel, algoname), ret) {
  197. err("couldn't label string (error: %d)\n", ret);
  198. return ret;
  199. }
  200. snprintf(output_data, sizeof(output_data), "%s %s ", userid, algoname);
  201. write(1, output_data, strlen(output_data));
  202. pipefd = create_writing_pipe(&child_pid, args[0], args);
  203. if (pipefd < 0) {
  204. err("failed to create a writing pipe (returned %d)\n", pipefd);
  205. return pipefd;
  206. }
  207. if (0 != write_data_fd_with_length(pipefd, all, mpicount)) {
  208. err("was not able to write out RSA key data\n");
  209. return 1;
  210. }
  211. close(pipefd);
  212. if (child_pid != waitpid(child_pid, NULL, 0)) {
  213. err("could not wait for child process to return for some reason.\n");
  214. return 1;
  215. }
  216. write(1, "\n", 1);
  217. gnutls_openpgp_crt_deinit(openpgp_crt);
  218. gnutls_global_deinit();
  219. return 0;
  220. }