[GCM] Passing GCMClient::AccountTokenInfo list to GCMDriver
[chromium-blink-merge.git] / rlz / win / lib / lib_mutex.cc
blob73dfaded0f79016d0784d8b228fd847e7e869b1f
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Mutex to guarantee serialization of RLZ key accesses.
7 #include "rlz/win/lib/lib_mutex.h"
9 #include <windows.h>
10 #include <Sddl.h> // For SDDL_REVISION_1, ConvertStringSecurityDescript..
11 #include <Aclapi.h> // For SetSecurityInfo
13 #include "base/logging.h"
14 #include "base/win/windows_version.h"
16 namespace {
18 const wchar_t kMutexName[] = L"{A946A6A9-917E-4949-B9BC-6BADA8C7FD63}";
20 } // namespace anonymous
22 namespace rlz_lib {
24 // Needed to allow synchronization across integrity levels.
25 static bool SetObjectToLowIntegrity(HANDLE object,
26 SE_OBJECT_TYPE type = SE_KERNEL_OBJECT) {
27 if (base::win::GetVersion() < base::win::VERSION_VISTA)
28 return true; // Not needed on XP.
30 // The LABEL_SECURITY_INFORMATION SDDL SACL to be set for low integrity.
31 static const wchar_t kLowIntegritySddlSacl[] = L"S:(ML;;NW;;;LW)";
33 bool result = false;
34 DWORD error = ERROR_SUCCESS;
35 PSECURITY_DESCRIPTOR security_descriptor = NULL;
36 PACL sacl = NULL;
37 BOOL sacl_present = FALSE;
38 BOOL sacl_defaulted = FALSE;
40 if (ConvertStringSecurityDescriptorToSecurityDescriptorW(
41 kLowIntegritySddlSacl, SDDL_REVISION_1, &security_descriptor, NULL)) {
42 if (GetSecurityDescriptorSacl(security_descriptor, &sacl_present,
43 &sacl, &sacl_defaulted)) {
44 error = SetSecurityInfo(object, type, LABEL_SECURITY_INFORMATION,
45 NULL, NULL, NULL, sacl);
46 result = (ERROR_SUCCESS == error);
48 LocalFree(security_descriptor);
51 return result;
54 LibMutex::LibMutex() : acquired_(false), mutex_(NULL) {
55 mutex_ = CreateMutex(NULL, false, kMutexName);
56 bool result = SetObjectToLowIntegrity(mutex_);
57 if (result) {
58 acquired_ = (WAIT_OBJECT_0 == WaitForSingleObject(mutex_, 5000L));
62 LibMutex::~LibMutex() {
63 if (acquired_) ReleaseMutex(mutex_);
64 CloseHandle(mutex_);
67 } // namespace rlz_lib