blob: c6bfb720830f4cd1a8557a2be246c4ed969c63b5 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef RTC_BASE_WIN32_H_
12#define RTC_BASE_WIN32_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000013
Mirko Bonadeie0623852018-02-01 11:17:40 +010014#ifndef WEBRTC_WIN
15#error "Only #include this header in Windows builds"
16#endif
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000017
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020018#ifndef WIN32_LEAN_AND_MEAN
19#define WIN32_LEAN_AND_MEAN
20#endif
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000021
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020022// Make sure we don't get min/max macros
23#ifndef NOMINMAX
24#define NOMINMAX
25#endif
26
Yves Gerey665174f2018-06-19 15:03:05 +020027// clang-format off
28// clang formating would change include order.
29#include <winsock2.h> // must come first
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020030#include <windows.h>
Yves Gerey665174f2018-06-19 15:03:05 +020031// clang-format on
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020032
Niels Möllerd7b91312018-05-24 11:21:34 +020033typedef int socklen_t;
34
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020035#ifndef SECURITY_MANDATORY_LABEL_AUTHORITY
36// Add defines that we use if we are compiling against older sdks
Yves Gerey665174f2018-06-19 15:03:05 +020037#define SECURITY_MANDATORY_MEDIUM_RID (0x00002000L)
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020038#define TokenIntegrityLevel static_cast<TOKEN_INFORMATION_CLASS>(0x19)
39typedef struct _TOKEN_MANDATORY_LABEL {
Yves Gerey665174f2018-06-19 15:03:05 +020040 SID_AND_ATTRIBUTES Label;
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020041} TOKEN_MANDATORY_LABEL, *PTOKEN_MANDATORY_LABEL;
42#endif // SECURITY_MANDATORY_LABEL_AUTHORITY
43
44#undef SetPort
45
46#include <string>
47
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020048namespace rtc {
49
Yves Gerey665174f2018-06-19 15:03:05 +020050const char* win32_inet_ntop(int af, const void* src, char* dst, socklen_t size);
51int win32_inet_pton(int af, const char* src, void* dst);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020052
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020053// Convert a Utf8 path representation to a non-length-limited Unicode pathname.
54bool Utf8ToWindowsFilename(const std::string& utf8, std::wstring* filename);
55
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020056enum WindowsMajorVersions {
57 kWindows2000 = 5,
58 kWindowsVista = 6,
braveyao8944f6a2018-04-06 10:59:50 -070059 kWindows10 = 10,
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020060};
61bool GetOsVersion(int* major, int* minor, int* build);
62
63inline bool IsWindowsVistaOrLater() {
64 int major;
65 return (GetOsVersion(&major, nullptr, nullptr) && major >= kWindowsVista);
66}
67
68inline bool IsWindowsXpOrLater() {
69 int major, minor;
70 return (GetOsVersion(&major, &minor, nullptr) &&
71 (major >= kWindowsVista || (major == kWindows2000 && minor >= 1)));
72}
73
74inline bool IsWindows8OrLater() {
75 int major, minor;
76 return (GetOsVersion(&major, &minor, nullptr) &&
77 (major > kWindowsVista || (major == kWindowsVista && minor >= 2)));
78}
79
braveyao8944f6a2018-04-06 10:59:50 -070080inline bool IsWindows10OrLater() {
81 int major;
82 return (GetOsVersion(&major, nullptr, nullptr) && (major >= kWindows10));
83}
84
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020085// Determine the current integrity level of the process.
86bool GetCurrentProcessIntegrityLevel(int* level);
87
88inline bool IsCurrentProcessLowIntegrity() {
89 int level;
90 return (GetCurrentProcessIntegrityLevel(&level) &&
Yves Gerey665174f2018-06-19 15:03:05 +020091 level < SECURITY_MANDATORY_MEDIUM_RID);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020092}
93
94} // namespace rtc
95
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020096#endif // RTC_BASE_WIN32_H_