1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-05 13:32:48 -05:00

First half of `pageant-async' work. agent_query() is now passed a

callback function; it may return 0 to indicate that it doesn't have
an answer _yet_, in which case it will call the callback later on
when it does, or it may return 1 to indicate that it's got an answer
right now. The Windows agent_query() implementation is functionally
unchanged and still synchronous, but the Unix one is async (since
that one was really easy to do via uxsel). ssh.c copes cheerfully
with either return value, so other ports are at liberty to be sync
or async as they choose.

[originally from svn r3153]
This commit is contained in:
Simon Tatham
2003-04-28 11:41:39 +00:00
parent 2e2b6d89bd
commit f6a208fbdd
5 changed files with 246 additions and 87 deletions

View File

@ -9,7 +9,9 @@
#include <sys/socket.h>
#include <sys/un.h>
#include "putty.h"
#include "misc.h"
#include "tree234.h"
#include "puttymem.h"
#define GET_32BIT(cp) \
@ -25,14 +27,95 @@ int agent_exists(void)
return FALSE;
}
void agent_query(void *in, int inlen, void **out, int *outlen)
static tree234 *agent_connections;
struct agent_connection {
int fd;
char *retbuf;
char sizebuf[4];
int retsize, retlen;
void (*callback)(void *, void *, int);
void *callback_ctx;
};
static int agent_conncmp(void *av, void *bv)
{
struct agent_connection *a = (struct agent_connection *) av;
struct agent_connection *b = (struct agent_connection *) bv;
if (a->fd < b->fd)
return -1;
if (a->fd > b->fd)
return +1;
return 0;
}
static int agent_connfind(void *av, void *bv)
{
int afd = *(int *) av;
struct agent_connection *b = (struct agent_connection *) bv;
if (afd < b->fd)
return -1;
if (afd > b->fd)
return +1;
return 0;
}
static int agent_select_result(int fd, int event)
{
int ret;
struct agent_connection *conn;
assert(event == 1); /* not selecting for anything but R */
conn = find234(agent_connections, &fd, agent_connfind);
if (!conn) {
uxsel_del(fd);
return 1;
}
ret = read(fd, conn->retbuf+conn->retlen, conn->retsize-conn->retlen);
if (ret <= 0) {
if (conn->retbuf != conn->sizebuf) sfree(conn->retbuf);
conn->retbuf = NULL;
conn->retlen = 0;
goto done;
}
conn->retlen += ret;
if (conn->retsize == 4 && conn->retlen == 4) {
conn->retsize = GET_32BIT(conn->retbuf);
if (conn->retsize <= 0) {
conn->retbuf = NULL;
conn->retlen = 0;
goto done;
}
conn->retsize += 4;
assert(conn->retbuf == conn->sizebuf);
conn->retbuf = snewn(conn->retsize, char);
memcpy(conn->retbuf, conn->sizebuf, 4);
}
if (conn->retlen < conn->retsize)
return 0; /* more data to come */
done:
/*
* We have now completed the agent query. Do the callback, and
* clean up. (Of course we don't free retbuf, since ownership
* of that passes to the callback.)
*/
conn->callback(conn->callback_ctx, conn->retbuf, conn->retlen);
uxsel_del(fd);
close(fd);
del234(agent_connections, conn);
sfree(conn);
return 0;
}
int agent_query(void *in, int inlen, void **out, int *outlen,
void (*callback)(void *, void *, int), void *callback_ctx)
{
char *name;
int sock;
struct sockaddr_un addr;
int done;
int retsize, retlen;
char sizebuf[4], *retbuf;
struct agent_connection *conn;
name = getenv("SSH_AUTH_SOCK");
if (!name)
@ -60,37 +143,23 @@ void agent_query(void *in, int inlen, void **out, int *outlen)
done += ret;
}
retbuf = sizebuf;
retsize = 4;
retlen = 0;
if (!agent_connections)
agent_connections = newtree234(agent_conncmp);
while (retlen < retsize) {
int ret = read(sock, retbuf + retlen, retsize - retlen);
if (ret <= 0) {
close(sock);
if (retbuf != sizebuf) sfree(retbuf);
goto failure;
}
retlen += ret;
if (retsize == 4 && retlen == 4) {
retsize = GET_32BIT(retbuf);
if (retsize <= 0) {
close(sock);
goto failure;
}
retsize += 4;
assert(retbuf == sizebuf);
retbuf = snewn(retsize, char);
memcpy(retbuf, sizebuf, 4);
}
}
conn = snew(struct agent_connection);
conn->fd = sock;
conn->retbuf = conn->sizebuf;
conn->retsize = 4;
conn->retlen = 0;
conn->callback = callback;
conn->callback_ctx = callback_ctx;
add234(agent_connections, conn);
assert(retbuf != sizebuf);
*out = retbuf;
*outlen = retlen;
return;
uxsel_set(sock, 1, agent_select_result);
return 0;
failure:
*out = NULL;
*outlen = 0;
return 1;
}