1 /* setpwd.cc: Set LSA private data password for current user.
3 This file is part of Cygwin.
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9 #ifdef __OUTSIDE_CYGWIN__
24 #include "cygserver.h"
26 #include "transport.h"
28 #include "cygserver_setpwd.h"
30 client_request_setpwd::client_request_setpwd ()
31 : client_request (CYGSERVER_REQUEST_SETPWD
,
32 &_parameters
, sizeof (_parameters
))
37 client_request_setpwd::serve (transport_layer_base
*const conn
,
38 process_cache
*const cache
)
42 WCHAR sidbuf
[128], key_name
[128 + wcslen (CYGWIN_LSA_KEY_PREFIX
)];
43 UNICODE_STRING sid
, key
, data
;
45 syscall_printf ("Request to set private data");
46 if (msglen () != sizeof (_parameters
.in
))
48 syscall_printf ("bad request body length: expecting %lu bytes, got %lu",
49 sizeof (_parameters
), msglen ());
55 if (!conn
->impersonate_client ())
60 if (!OpenThreadToken (GetCurrentThread (), TOKEN_READ
, TRUE
, &tok
))
62 conn
->revert_to_self ();
66 /* Get uid from user SID in token. */
67 user
= (PTOKEN_USER
) get_token_info (tok
, TokenUser
);
69 conn
->revert_to_self ();
75 LSA_OBJECT_ATTRIBUTES oa
= { 0, 0, 0, 0, 0, 0 };
77 NTSTATUS status
= LsaOpenPolicy (NULL
, &oa
, POLICY_CREATE_SECRET
, &lsa
);
78 if (!NT_SUCCESS (status
))
80 error_code (LsaNtStatusToWinError (status
));
83 RtlInitEmptyUnicodeString (&sid
, sidbuf
, sizeof sidbuf
);
84 RtlConvertSidToUnicodeString (&sid
, user
->User
.Sid
, FALSE
);
86 RtlInitEmptyUnicodeString (&key
, key_name
, sizeof key_name
);
87 RtlAppendUnicodeToString (&key
, CYGWIN_LSA_KEY_PREFIX
);
88 RtlAppendUnicodeStringToString (&key
, &sid
);
89 RtlInitUnicodeString (&data
, _parameters
.in
.passwd
);
90 status
= LsaStorePrivateData (lsa
, &key
, data
.Length
? &data
: NULL
);
92 RtlSecureZeroMemory (data
.Buffer
, data
.Length
);
93 /* Success or we're trying to remove a password entry which doesn't exist. */
94 if (NT_SUCCESS (status
)
95 || (data
.Length
== 0 && status
== STATUS_OBJECT_NAME_NOT_FOUND
))
98 error_code (LsaNtStatusToWinError (status
));
99 syscall_printf ("Request to set private data returns error %d", error_code ());
102 #endif /* __OUTSIDE_CYGWIN__ */