Module: Net::SSH::Authentication::Pageant::Win

Extended by:
DL::Importable, DL::Importer, Fiddle::Importer
Includes:
DL::Win32Types, Fiddle::Win32Types
Defined in:
lib/net/ssh/authentication/pageant.rb

Overview

The definition of the Windows methods and data structures used in communicating with the pageant process.

Constant Summary collapse

SIZEOF_DWORD =
Fiddle::SIZEOF_LONG
INVALID_HANDLE_VALUE =

From winbase.h, winnt.h

-1
NULL =
nil
PAGE_READWRITE =
0x0004
FILE_MAP_WRITE =
2
WM_COPYDATA =
74
SMTO_NORMAL =

From winuser.h

0
TOKEN_QUERY =

Constants needed for security attribute retrieval. Specifies the access mask corresponding to the desired access rights.

0x8
TOKEN_USER_INFORMATION_CLASS =

The value of TOKEN_USER from the TOKEN_INFORMATION_CLASS enum.

1
REVISION =

The initial revision level assigned to the security descriptor.

1
TOKEN_USER =

Structs for security attribute functions. Holds the retrieved user access token.

struct ['void * SID', 'DWORD ATTRIBUTES']
SECURITY_ATTRIBUTES =

Contains the security descriptor, this gets passed to the function that constructs the shared memory map.

struct ['DWORD nLength',
'LPVOID lpSecurityDescriptor',
'BOOL bInheritHandle']
SECURITY_DESCRIPTOR =

The security descriptor holds security information.

struct ['UCHAR Revision', 'UCHAR Sbz1',
'USHORT Control', 'LPVOID Owner',
'LPVOID Group', 'LPVOID Sacl',
'LPVOID Dacl']
COPYDATASTRUCT =

The COPYDATASTRUCT is used to send WM_COPYDATA messages

struct ['uintptr_t dwData', 'DWORD cbData', 'LPVOID lpData']

Class Method Summary collapse

Class Method Details

.get_cstr(str) ⇒ Object

Get a null-terminated string given a string.



278
279
280
# File 'lib/net/ssh/authentication/pageant.rb', line 278

def self.get_cstr(str)
  return str + "\000"
end

.get_current_userObject



227
228
229
230
231
232
233
# File 'lib/net/ssh/authentication/pageant.rb', line 227

def self.get_current_user
  token_handle = open_process_token(Win.GetCurrentProcess,
                                    Win::TOKEN_QUERY)
  token_user =  get_token_information(token_handle,
                  Win::TOKEN_USER_INFORMATION_CLASS)
  return token_user
end

.get_ptr(data) ⇒ Object



185
186
187
# File 'lib/net/ssh/authentication/pageant.rb', line 185

def self.get_ptr(data)
  return data.to_ptr
end

.get_security_attributes_for_userObject



206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/net/ssh/authentication/pageant.rb', line 206

def self.get_security_attributes_for_user
  user = get_current_user

  psd_information = malloc_ptr(Win::SECURITY_DESCRIPTOR.size)
  raise_error_if_zero(
    Win.InitializeSecurityDescriptor(psd_information,
                                     Win::REVISION))
  raise_error_if_zero(
    Win.SetSecurityDescriptorOwner(psd_information, user.SID,
                                   0))
  raise_error_if_zero(
    Win.IsValidSecurityDescriptor(psd_information))

  sa = Win::SECURITY_ATTRIBUTES.new(malloc_ptr(Win::SECURITY_ATTRIBUTES.size))
  sa.nLength = Win::SECURITY_ATTRIBUTES.size
  sa.lpSecurityDescriptor = psd_information.to_i
  sa.bInheritHandle = 1

  return sa
end

.get_token_information(token_handle, token_information_class) ⇒ Object



246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/net/ssh/authentication/pageant.rb', line 246

def self.get_token_information(token_handle,
                               token_information_class)
  # Hold the size of the information to be returned
  preturn_length = malloc_ptr(Win::SIZEOF_DWORD)

  # Going to throw an INSUFFICIENT_BUFFER_ERROR, but that is ok
  # here. This is retrieving the size of the information to be
  # returned.
  Win.GetTokenInformation(token_handle,
                          token_information_class,
                          Win::NULL, 0, preturn_length)
  ptoken_information = malloc_ptr(preturn_length.ptr.to_i)

  # This call is going to write the requested information to
  # the memory location referenced by token_information.
  raise_error_if_zero(
    Win.GetTokenInformation(token_handle,
                            token_information_class,
                            ptoken_information,
                            ptoken_information.size,
                            preturn_length))

  return TOKEN_USER.new(ptoken_information)
end

.malloc_ptr(size) ⇒ Object



181
182
183
# File 'lib/net/ssh/authentication/pageant.rb', line 181

def self.malloc_ptr(size)
  return DL.malloc(size)
end

.open_process_token(process_handle, desired_access) ⇒ Object



235
236
237
238
239
240
241
242
243
244
# File 'lib/net/ssh/authentication/pageant.rb', line 235

def self.open_process_token(process_handle, desired_access)
  ptoken_handle = malloc_ptr(Win::SIZEOF_DWORD)

  raise_error_if_zero(
    Win.OpenProcessToken(process_handle, desired_access,
                         ptoken_handle))
  token_handle = ptoken_handle.ptr.to_i

  return token_handle
end

.raise_error_if_zero(result) ⇒ Object



271
272
273
274
275
# File 'lib/net/ssh/authentication/pageant.rb', line 271

def self.raise_error_if_zero(result)
  if result == 0
    raise "Windows error: #{Win.GetLastError}"
  end
end

.set_ptr_data(ptr, data) ⇒ Object



189
190
191
# File 'lib/net/ssh/authentication/pageant.rb', line 189

def self.set_ptr_data(ptr, data)
  ptr[0] = data
end