summaryrefslogtreecommitdiff
path: root/gpg2ssh.c
blob: a1e94df7998a55a56c88a97e9342abfe14153def (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. int pipestatus;
  41. init_gnutls();
  42. init_datum(&data);
  43. init_datum(&m);
  44. init_datum(&e);
  45. init_datum(&p);
  46. init_datum(&q);
  47. init_datum(&g);
  48. init_datum(&y);
  49. init_datum(&algolabel);
  50. init_keyid(keyid);
  51. /* slurp in the private key from stdin */
  52. if (ret = set_datum_fd(&data, 0), ret) {
  53. err("didn't read file descriptor 0\n");
  54. return 1;
  55. }
  56. if (ret = gnutls_openpgp_crt_init(&openpgp_crt), ret) {
  57. err("Failed to initialize OpenPGP certificate (error: %d)\n", ret);
  58. return 1;
  59. }
  60. /* format could be either: GNUTLS_OPENPGP_FMT_RAW,
  61. GNUTLS_OPENPGP_FMT_BASE64; if MONKEYSPHERE_RAW is set, use RAW,
  62. otherwise, use BASE64: */
  63. /* FIXME: we should be auto-detecting the input format, and
  64. translating it as needed. */
  65. if (getenv("MONKEYSPHERE_RAW")) {
  66. err("assuming RAW formatted certificate\n");
  67. if (ret = gnutls_openpgp_crt_import(openpgp_crt, &data, GNUTLS_OPENPGP_FMT_RAW), ret) {
  68. err("failed to import the OpenPGP certificate in RAW format (error: %d)\n", ret);
  69. return ret;
  70. }
  71. } else {
  72. err("assuming BASE64 formatted certificate\n");
  73. if (ret = gnutls_openpgp_crt_import (openpgp_crt, &data, GNUTLS_OPENPGP_FMT_BASE64), ret) {
  74. err("failed to import the OpenPGP certificate in BASE64 format (error: %d)\n", ret);
  75. return ret;
  76. }
  77. }
  78. if (gnutls_openpgp_crt_get_revoked_status(openpgp_crt)) {
  79. err("the primary key was revoked!\n");
  80. return 1;
  81. }
  82. /* FIXME: We're currently looking at the primary key or maybe the
  83. first authentication-capable subkey.
  84. Instead, we should be iterating through the primary key and all
  85. subkeys: for each one with the authentication usage flag set of a
  86. algorithm we can handle, we should output matching UserIDs and
  87. the SSH version of the key. */
  88. if (ret = gnutls_openpgp_crt_get_key_usage(openpgp_crt, &usage), ret) {
  89. err("failed to get the usage flags for the primary key (error: %d)\n", ret);
  90. return ret;
  91. }
  92. if (usage & GNUTLS_KEY_KEY_AGREEMENT) {
  93. err("the primary key can be used for authentication\n");
  94. algo = gnutls_openpgp_crt_get_pk_algorithm(openpgp_crt, &bits);
  95. if (algo < 0) {
  96. err("failed to get the algorithm of the OpenPGP public key (error: %d)\n", algo);
  97. return algo;
  98. } else if (algo == GNUTLS_PK_RSA) {
  99. err("OpenPGP RSA certificate, with %d bits\n", bits);
  100. ret = gnutls_openpgp_crt_get_pk_rsa_raw(openpgp_crt, &m, &e);
  101. if (GNUTLS_E_SUCCESS != ret) {
  102. err ("failed to export RSA key parameters (error: %d)\n", ret);
  103. return 1;
  104. }
  105. } else if (algo == GNUTLS_PK_DSA) {
  106. err("OpenPGP DSA Key, with %d bits\n", bits);
  107. ret = gnutls_openpgp_crt_get_pk_dsa_raw(openpgp_crt, &p, &q, &g, &y);
  108. if (GNUTLS_E_SUCCESS != ret) {
  109. err ("failed to export DSA key parameters (error: %d)\n", ret);
  110. return 1;
  111. }
  112. } else {
  113. err("OpenPGP Key was not RSA or DSA -- can't deal! (actual algorithm was: %d)\n", algo);
  114. return 1;
  115. }
  116. } else {
  117. err("primary key is only good for: 0x%08x. Trying subkeys...\n", usage);
  118. if (ret = gnutls_openpgp_crt_get_auth_subkey(openpgp_crt, keyid, 0), ret) {
  119. err("failed to find a subkey capable of authentication (error: %d)\n", ret);
  120. return ret;
  121. }
  122. make_keyid_printable(p_keyid, keyid);
  123. err("found authentication subkey %.16s\n", p_keyid);
  124. ret = gnutls_openpgp_crt_get_subkey_idx(openpgp_crt, keyid);
  125. if (ret < 0) {
  126. err("could not get the index of subkey %.16s (error: %d)\n", ret);
  127. return ret;
  128. }
  129. keyidx = ret;
  130. if (gnutls_openpgp_crt_get_subkey_revoked_status(openpgp_crt, keyidx)) {
  131. err("The authentication subkey was revoked!\n");
  132. return 1;
  133. }
  134. if (ret = gnutls_openpgp_crt_get_subkey_usage(openpgp_crt, keyidx, &usage), ret) {
  135. err("could not figure out usage of subkey %.16s (error: %d)\n", p_keyid, ret);
  136. return ret;
  137. }
  138. if ((usage & GNUTLS_KEY_KEY_AGREEMENT) == 0) {
  139. err("could not find a subkey with authentication privileges.\n");
  140. return 1;
  141. }
  142. /* switch, based on the algorithm in question, to extract the MPI
  143. components: */
  144. algo = gnutls_openpgp_crt_get_subkey_pk_algorithm(openpgp_crt, keyidx, &bits);
  145. if (algo < 0) {
  146. err("failed to get the algorithm of the authentication subkey (error: %d)\n", algo);
  147. return algo;
  148. } else if (algo == GNUTLS_PK_RSA) {
  149. err("OpenPGP RSA subkey, with %d bits\n", bits);
  150. ret = gnutls_openpgp_crt_get_subkey_pk_rsa_raw(openpgp_crt, keyidx, &m, &e);
  151. if (GNUTLS_E_SUCCESS != ret) {
  152. err ("failed to export RSA subkey parameters (error: %d)\n", ret);
  153. return 1;
  154. }
  155. } else if (algo == GNUTLS_PK_DSA) {
  156. err("OpenPGP DSA subkey, with %d bits\n", bits);
  157. ret = gnutls_openpgp_crt_get_subkey_pk_dsa_raw(openpgp_crt, keyidx, &p, &q, &g, &y);
  158. if (GNUTLS_E_SUCCESS != ret) {
  159. err ("failed to export DSA subkey parameters (error: %d)\n", ret);
  160. return 1;
  161. }
  162. } else {
  163. err("OpenPGP subkey was not RSA or DSA -- can't deal! (actual algorithm was: %d)\n", algo);
  164. return 1;
  165. }
  166. }
  167. /* make sure userid is NULL-terminated */
  168. userid[sizeof(userid) - 1] = 0;
  169. uidsz--;
  170. /* FIXME: we're just choosing the first UserID from the certificate:
  171. instead, we should be selecting every User ID that is adequately
  172. signed and matches the spec, and aggregating them with commas for
  173. known_hosts output */
  174. if (ret = gnutls_openpgp_crt_get_name(openpgp_crt, 0, userid, &uidsz), ret) {
  175. err("Failed to fetch the first UserID (error: %d)\n", ret);
  176. return ret;
  177. }
  178. if (ret = validate_ssh_host_userid(userid), ret) {
  179. err("bad userid: not a valid ssh host.\n");
  180. return ret;
  181. }
  182. /* remove ssh:// from the beginning of userid */
  183. memmove(userid, userid + strlen("ssh://"), 1 + strlen(userid) - strlen("ssh://"));
  184. /* now we have algo, and the various MPI data are set. Can we
  185. export them cleanly? */
  186. /* for the moment, we'll just dump the info raw, and pipe it
  187. externally through coreutils' /usr/bin/base64 */
  188. if (algo == GNUTLS_PK_RSA) {
  189. algoname = "ssh-rsa";
  190. mpicount = 3;
  191. all[0] = &algolabel;
  192. all[1] = &e;
  193. all[2] = &m;
  194. } else if (algo == GNUTLS_PK_DSA) {
  195. algoname = "ssh-dss";
  196. mpicount = 5;
  197. all[0] = &algolabel;
  198. all[1] = &p;
  199. all[2] = &q;
  200. all[3] = &g;
  201. all[4] = &y;
  202. } else {
  203. err("no idea what this algorithm is: %d\n", algo);
  204. return 1;
  205. }
  206. if (ret = datum_from_string(&algolabel, algoname), ret) {
  207. err("couldn't label string (error: %d)\n", ret);
  208. return ret;
  209. }
  210. snprintf(output_data, sizeof(output_data), "%s %s ", userid, algoname);
  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. write(1, output_data, strlen(output_data));
  217. if (0 != write_data_fd_with_length(pipefd, all, mpicount)) {
  218. err("was not able to write out RSA key data\n");
  219. return 1;
  220. }
  221. close(pipefd);
  222. if (child_pid != waitpid(child_pid, &pipestatus, 0)) {
  223. err("could not wait for child process to return for some reason.\n");
  224. return 1;
  225. }
  226. if (pipestatus != 0) {
  227. err("base64 pipe died with return code %d\n", pipestatus);
  228. return pipestatus;
  229. }
  230. write(1, "\n", 1);
  231. gnutls_openpgp_crt_deinit(openpgp_crt);
  232. gnutls_global_deinit();
  233. return 0;
  234. }