When we fail to get a response from Pageant, we should log the fact.
[sgt/putty] / windows / winpgntc.c
CommitLineData
5c58ad2d 1/*
2 * Pageant client code.
3 */
4
5c58ad2d 5#include <stdio.h>
6#include <stdlib.h>
7
c44bf5bd 8#include "putty.h"
dcbde236 9
a197b711 10#ifndef NO_SECURITY
11#include <aclapi.h>
12#endif
13
d70f60ae 14#define AGENT_COPYDATA_ID 0x804e50ba /* random goop */
15#define AGENT_MAX_MSGLEN 8192
16
32874aea 17int agent_exists(void)
18{
5c58ad2d 19 HWND hwnd;
20 hwnd = FindWindow("Pageant", "Pageant");
21 if (!hwnd)
32874aea 22 return FALSE;
5c58ad2d 23 else
32874aea 24 return TRUE;
5c58ad2d 25}
26
28f7ab3c 27/*
28 * Unfortunately, this asynchronous agent request mechanism doesn't
29 * appear to work terribly well. I'm going to comment it out for
30 * the moment, and see if I can come up with a better one :-/
31 */
32#ifdef WINDOWS_ASYNC_AGENT
33
c44bf5bd 34struct agent_query_data {
35 COPYDATASTRUCT cds;
36 unsigned char *mapping;
37 HANDLE handle;
38 char *mapname;
39 HWND hwnd;
40 void (*callback)(void *, void *, int);
41 void *callback_ctx;
42};
43
44DWORD WINAPI agent_query_thread(LPVOID param)
45{
46 struct agent_query_data *data = (struct agent_query_data *)param;
47 unsigned char *ret;
48 int id, retlen;
49
50 id = SendMessage(data->hwnd, WM_COPYDATA, (WPARAM) NULL,
51 (LPARAM) &data->cds);
52 ret = NULL;
53 if (id > 0) {
54 retlen = 4 + GET_32BIT(data->mapping);
55 ret = snewn(retlen, unsigned char);
56 if (ret) {
57 memcpy(ret, data->mapping, retlen);
58 }
59 }
60 if (!ret)
61 retlen = 0;
62 UnmapViewOfFile(data->mapping);
63 CloseHandle(data->handle);
64 sfree(data->mapname);
65
66 agent_schedule_callback(data->callback, data->callback_ctx, ret, retlen);
67
68 return 0;
69}
70
28f7ab3c 71#endif
72
a197b711 73/*
74 * Dynamically load advapi32.dll for SID manipulation. In its absence,
75 * we degrade gracefully.
76 */
77#ifndef NO_SECURITY
78int advapi_initialised = FALSE;
79static HMODULE advapi;
80DECL_WINDOWS_FUNCTION(static, BOOL, OpenProcessToken,
81 (HANDLE, DWORD, PHANDLE));
82DECL_WINDOWS_FUNCTION(static, BOOL, GetTokenInformation,
83 (HANDLE, TOKEN_INFORMATION_CLASS,
84 LPVOID, DWORD, PDWORD));
85DECL_WINDOWS_FUNCTION(static, BOOL, InitializeSecurityDescriptor,
86 (PSECURITY_DESCRIPTOR, DWORD));
87DECL_WINDOWS_FUNCTION(static, BOOL, SetSecurityDescriptorOwner,
88 (PSECURITY_DESCRIPTOR, PSID, BOOL));
89static int init_advapi(void)
90{
91 advapi = load_system32_dll("advapi32.dll");
92 return advapi &&
93 GET_WINDOWS_FUNCTION(advapi, OpenProcessToken) &&
94 GET_WINDOWS_FUNCTION(advapi, GetTokenInformation) &&
95 GET_WINDOWS_FUNCTION(advapi, InitializeSecurityDescriptor) &&
96 GET_WINDOWS_FUNCTION(advapi, SetSecurityDescriptorOwner);
97}
98#endif
99
839f10db 100int agent_query(void *in, int inlen, void **out, int *outlen,
101 void (*callback)(void *, void *, int), void *callback_ctx)
32874aea 102{
5c58ad2d 103 HWND hwnd;
c44bf5bd 104 char *mapname;
5c58ad2d 105 HANDLE filemap;
d70f60ae 106 unsigned char *p, *ret;
5c58ad2d 107 int id, retlen;
108 COPYDATASTRUCT cds;
a197b711 109 SECURITY_ATTRIBUTES sa, *psa;
110 PSECURITY_DESCRIPTOR psd = NULL;
111 HANDLE proc, tok;
112 TOKEN_USER *user = NULL;
5c58ad2d 113
114 *out = NULL;
115 *outlen = 0;
116
117 hwnd = FindWindow("Pageant", "Pageant");
5c58ad2d 118 if (!hwnd)
839f10db 119 return 1; /* *out == NULL, so failure */
c44bf5bd 120 mapname = dupprintf("PageantRequest%08x", (unsigned)GetCurrentThreadId());
a197b711 121
122#ifndef NO_SECURITY
123 if (advapi_initialised || init_advapi()) {
124 /*
125 * Make the file mapping we create for communication with
126 * Pageant owned by the user SID rather than the default. This
127 * should make communication between processes with slightly
128 * different contexts more reliable: in particular, command
129 * prompts launched as administrator should still be able to
130 * run PSFTPs which refer back to the owning user's
131 * unprivileged Pageant.
132 */
133
134 if ((proc = OpenProcess(MAXIMUM_ALLOWED, FALSE,
135 GetCurrentProcessId())) != NULL) {
136 if (p_OpenProcessToken(proc, TOKEN_QUERY, &tok)) {
137 DWORD retlen;
138 p_GetTokenInformation(tok, TokenUser, NULL, 0, &retlen);
139 user = (TOKEN_USER *)LocalAlloc(LPTR, retlen);
140 if (!p_GetTokenInformation(tok, TokenUser,
141 user, retlen, &retlen)) {
142 LocalFree(user);
143 user = NULL;
144 }
145 CloseHandle(tok);
146 }
147 CloseHandle(proc);
148 }
149
150 psa = NULL;
151 if (user) {
152 psd = (PSECURITY_DESCRIPTOR)
153 LocalAlloc(LPTR, SECURITY_DESCRIPTOR_MIN_LENGTH);
154 if (psd) {
155 if (p_InitializeSecurityDescriptor
156 (psd, SECURITY_DESCRIPTOR_REVISION) &&
157 p_SetSecurityDescriptorOwner(psd, user->User.Sid, FALSE)) {
158 sa.nLength = sizeof(sa);
159 sa.bInheritHandle = TRUE;
160 sa.lpSecurityDescriptor = psd;
161 psa = &sa;
162 } else {
163 LocalFree(psd);
164 psd = NULL;
165 }
166 }
167 }
168 }
169#endif /* NO_SECURITY */
170
171 filemap = CreateFileMapping(INVALID_HANDLE_VALUE, psa, PAGE_READWRITE,
32874aea 172 0, AGENT_MAX_MSGLEN, mapname);
4a0b6d61 173 if (filemap == NULL || filemap == INVALID_HANDLE_VALUE)
839f10db 174 return 1; /* *out == NULL, so failure */
d70f60ae 175 p = MapViewOfFile(filemap, FILE_MAP_WRITE, 0, 0, 0);
176 memcpy(p, in, inlen);
177 cds.dwData = AGENT_COPYDATA_ID;
32874aea 178 cds.cbData = 1 + strlen(mapname);
d70f60ae 179 cds.lpData = mapname;
28f7ab3c 180#ifdef WINDOWS_ASYNC_AGENT
c44bf5bd 181 if (callback != NULL && !(flags & FLAG_SYNCAGENT)) {
182 /*
183 * We need an asynchronous Pageant request. Since I know of
184 * no way to stop SendMessage from blocking the thread it's
185 * called in, I see no option but to start a fresh thread.
186 * When we're done we'll PostMessage the result back to our
187 * main window, so that the callback is done in the primary
188 * thread to avoid concurrency.
189 */
190 struct agent_query_data *data = snew(struct agent_query_data);
191 DWORD threadid;
192 data->mapping = p;
193 data->handle = filemap;
194 data->mapname = mapname;
195 data->callback = callback;
196 data->callback_ctx = callback_ctx;
197 data->cds = cds; /* structure copy */
198 data->hwnd = hwnd;
199 if (CreateThread(NULL, 0, agent_query_thread, data, 0, &threadid))
200 return 0;
201 sfree(data);
202 }
28f7ab3c 203#endif
c44bf5bd 204
205 /*
206 * The user either passed a null callback (indicating that the
207 * query is required to be synchronous) or CreateThread failed.
208 * Either way, we need a synchronous request.
209 */
e66c3912 210 id = SendMessage(hwnd, WM_COPYDATA, (WPARAM) NULL, (LPARAM) &cds);
5c58ad2d 211 if (id > 0) {
32874aea 212 retlen = 4 + GET_32BIT(p);
3d88e64d 213 ret = snewn(retlen, unsigned char);
32874aea 214 if (ret) {
215 memcpy(ret, p, retlen);
216 *out = ret;
217 *outlen = retlen;
218 }
5c58ad2d 219 }
d70f60ae 220 UnmapViewOfFile(p);
221 CloseHandle(filemap);
a197b711 222 if (psd)
223 LocalFree(psd);
224 if (user)
225 LocalFree(user);
839f10db 226 return 1;
5c58ad2d 227}