blob: 5819b9139eac7935caa9706cd735111cc85760be [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * authfd.h
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Wed Mar 29 01:17:41 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * Functions to interface with the SSH_AUTHENTICATION_FD socket.
Damien Miller4af51302000-04-16 11:18:38 +100013 *
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Millerad833b32000-08-23 10:46:23 +100016/* RCSID("$OpenBSD: authfd.h,v 1.10 2000/08/19 21:34:43 markus Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef AUTHFD_H
19#define AUTHFD_H
20
21#include "buffer.h"
22
23/* Messages for the authentication agent connection. */
24#define SSH_AGENTC_REQUEST_RSA_IDENTITIES 1
25#define SSH_AGENT_RSA_IDENTITIES_ANSWER 2
26#define SSH_AGENTC_RSA_CHALLENGE 3
27#define SSH_AGENT_RSA_RESPONSE 4
28#define SSH_AGENT_FAILURE 5
29#define SSH_AGENT_SUCCESS 6
30#define SSH_AGENTC_ADD_RSA_IDENTITY 7
31#define SSH_AGENTC_REMOVE_RSA_IDENTITY 8
32#define SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES 9
33
Damien Miller994cf142000-07-21 10:19:44 +100034#define SSH2_AGENTC_REQUEST_IDENTITIES 11
35#define SSH2_AGENT_IDENTITIES_ANSWER 12
36#define SSH2_AGENTC_SIGN_REQUEST 13
37#define SSH2_AGENT_SIGN_RESPONSE 14
Damien Miller994cf142000-07-21 10:19:44 +100038#define SSH2_AGENTC_ADD_IDENTITY 17
39#define SSH2_AGENTC_REMOVE_IDENTITY 18
40#define SSH2_AGENTC_REMOVE_ALL_IDENTITIES 19
41
Damien Miller95def091999-11-25 00:26:21 +110042typedef struct {
43 int fd;
Damien Miller95def091999-11-25 00:26:21 +110044 Buffer identities;
45 int howmany;
46} AuthenticationConnection;
Damien Millerad833b32000-08-23 10:46:23 +100047
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048/* Returns the number of the authentication fd, or -1 if there is none. */
Damien Miller95def091999-11-25 00:26:21 +110049int ssh_get_authentication_socket();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Miller5428f641999-11-25 11:54:57 +110051/*
52 * This should be called for any descriptor returned by
53 * ssh_get_authentication_socket(). Depending on the way the descriptor was
54 * obtained, this may close the descriptor.
55 */
Damien Miller95def091999-11-25 00:26:21 +110056void ssh_close_authentication_socket(int authfd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
Damien Miller5428f641999-11-25 11:54:57 +110058/*
59 * Opens and connects a private socket for communication with the
60 * authentication agent. Returns NULL if an error occurred and the
61 * connection could not be opened. The connection should be closed by the
62 * caller by calling ssh_close_authentication_connection().
63 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064AuthenticationConnection *ssh_get_authentication_connection();
65
Damien Miller5428f641999-11-25 11:54:57 +110066/*
67 * Closes the connection to the authentication agent and frees any associated
68 * memory.
69 */
Damien Millerad833b32000-08-23 10:46:23 +100070void ssh_close_authentication_connection(AuthenticationConnection *auth);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller5428f641999-11-25 11:54:57 +110072/*
Damien Millerad833b32000-08-23 10:46:23 +100073 * Returns the first authentication identity held by the agent or NULL if
74 * no identies are available. Caller must free comment and key.
75 * Note that you cannot mix calls with different versions.
Damien Miller5428f641999-11-25 11:54:57 +110076 */
Damien Millerad833b32000-08-23 10:46:23 +100077Key *ssh_get_first_identity(AuthenticationConnection *auth, char **comment, int version);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Miller5428f641999-11-25 11:54:57 +110079/*
80 * Returns the next authentication identity for the agent. Other functions
81 * can be called between this and ssh_get_first_identity or two calls of this
Damien Millerad833b32000-08-23 10:46:23 +100082 * function. This returns NULL if there are no more identities. The caller
83 * must free key and comment after a successful return.
84 */
85Key *ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version);
86
87/*
88 * Requests the agent to decrypt the given challenge. Returns true if the
89 * agent claims it was able to decrypt it.
Damien Miller5428f641999-11-25 11:54:57 +110090 */
Damien Miller4af51302000-04-16 11:18:38 +100091int
Damien Millerad833b32000-08-23 10:46:23 +100092ssh_decrypt_challenge(AuthenticationConnection *auth,
93 Key *key, BIGNUM * challenge,
Damien Miller95def091999-11-25 00:26:21 +110094 unsigned char session_id[16],
95 unsigned int response_type,
96 unsigned char response[16]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Millerad833b32000-08-23 10:46:23 +100098/* Requests the agent to sign data using key */
99int
100ssh_agent_sign(AuthenticationConnection *auth,
101 Key *key,
102 unsigned char **sigp, int *lenp,
103 unsigned char *data, int datalen);
104
Damien Miller5428f641999-11-25 11:54:57 +1100105/*
106 * Adds an identity to the authentication server. This call is not meant to
107 * be used by normal applications. This returns true if the identity was
108 * successfully added.
109 */
Damien Miller4af51302000-04-16 11:18:38 +1000110int
Damien Millerad833b32000-08-23 10:46:23 +1000111ssh_add_identity(AuthenticationConnection *auth, Key *key,
Damien Miller5428f641999-11-25 11:54:57 +1100112 const char *comment);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Miller5428f641999-11-25 11:54:57 +1100114/*
115 * Removes the identity from the authentication server. This call is not
116 * meant to be used by normal applications. This returns true if the
117 * identity was successfully added.
118 */
Damien Millerad833b32000-08-23 10:46:23 +1000119int ssh_remove_identity(AuthenticationConnection *auth, Key *key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Removes all identities from the authentication agent. This call is not
123 * meant to be used by normal applications. This returns true if the
124 * operation was successful.
125 */
Damien Millerad833b32000-08-23 10:46:23 +1000126int ssh_remove_all_identities(AuthenticationConnection *auth, int version);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Miller95def091999-11-25 00:26:21 +1100128#endif /* AUTHFD_H */