summaryrefslogtreecommitdiff
path: root/authfd.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-09-03 08:29:15 +0000
committerDamien Miller <djm@mindrot.org>2019-09-03 18:39:31 +1000
commit06af3583f46e2c327fdd44d8a95b8b4e8dfd8db5 (patch)
treec74d33447527f6ed3c095143c1eb9952df92c8fc /authfd.c
parent2ab5a8464870cc4b29ddbe849bbbc255729437bf (diff)
upstream: authfd: add function to check if key is in agent
This commit adds a helper function which allows the caller to check if a given public key is present in ssh-agent. work by Sebastian Kinne; ok markus@ OpenBSD-Commit-ID: d43c5826353e1fdc1af71eb42961b30782c7bd13
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c28
1 files changed, 27 insertions, 1 deletions
diff --git a/authfd.c b/authfd.c
index 315c6813f..a5162790f 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfd.c,v 1.116 2019/09/03 08:28:30 djm Exp $ */ 1/* $OpenBSD: authfd.c,v 1.117 2019/09/03 08:29:15 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -318,6 +318,32 @@ ssh_free_identitylist(struct ssh_identitylist *idl)
318} 318}
319 319
320/* 320/*
321 * Check if the ssh agent has a given key.
322 * Returns 0 if found, or a negative SSH_ERR_* error code on failure.
323 */
324int
325ssh_agent_has_key(int sock, struct sshkey *key)
326{
327 int r, ret = SSH_ERR_KEY_NOT_FOUND;
328 size_t i;
329 struct ssh_identitylist *idlist = NULL;
330
331 if ((r = ssh_fetch_identitylist(sock, &idlist)) < 0) {
332 return r;
333 }
334
335 for (i = 0; i < idlist->nkeys; i++) {
336 if (sshkey_equal_public(idlist->keys[i], key)) {
337 ret = 0;
338 break;
339 }
340 }
341
342 ssh_free_identitylist(idlist);
343 return ret;
344}
345
346/*
321 * Sends a challenge (typically from a server via ssh(1)) to the agent, 347 * Sends a challenge (typically from a server via ssh(1)) to the agent,
322 * and waits for a response from the agent. 348 * and waits for a response from the agent.
323 * Returns true (non-zero) if the agent gave the correct answer, zero 349 * Returns true (non-zero) if the agent gave the correct answer, zero