annotate src/os/windows/vm/jvm_windows.h @ 4717:11c26bfcf8c7

7091417: recvfrom's 6th input should be of type socklen_t Summary: Revamp class os's socket method formal args to match socket.h, insert casts in appropriate places, and copyin-copyout int*'s that s/b socklen_t*'s in jvm.cpp. Reviewed-by: coleenp, dholmes Contributed-by: erik.gahlin@oracle.com, rickard.backman@oracle.com, nils.loodin@oracle.com, markus.gronlund@oracle.com
author phh
date Wed, 21 Dec 2011 15:48:16 -0500
parents b1cbb0907b36
children ec15e8f6e4f1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
4717
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
25 #ifndef OS_WINDOWS_VM_JVM_WINDOWS_H
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
26 #define OS_WINDOWS_VM_JVM_WINDOWS_H
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #ifndef _JAVASOFT_JVM_MD_H_
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #define _JAVASOFT_JVM_MD_H_
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
32 * This file is currently collecting system-specific dregs for the
a61af66fc99e Initial load
duke
parents:
diff changeset
33 * JNI conversion, which should be sorted out later.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 */
a61af66fc99e Initial load
duke
parents:
diff changeset
35
3833
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
36 // JDK7 requires VS2010
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
37 #if _MSC_VER >= 1600
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
38 // JDK7 minimum platform requirement: Windows XP
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
39 #if _WIN32_WINNT < 0x0501
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
40 #undef _WIN32_WINNT
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
41 #define _WIN32_WINNT 0x0501
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
42 #endif
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
43 #endif
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
44
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #include <windows.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
46
3833
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
47 #if _MSC_VER <= 1200
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
48 // Psapi.h doesn't come with Visual Studio 6; it can be downloaded as Platform
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
49 // SDK from Microsoft. Here are the definitions copied from Psapi.h
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
50 typedef struct _MODULEINFO {
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
51 LPVOID lpBaseOfDll;
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
52 DWORD SizeOfImage;
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
53 LPVOID EntryPoint;
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
54 } MODULEINFO, *LPMODULEINFO;
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
55
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
56 #else
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
57 #include <Psapi.h>
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
58 #endif
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
59
4717
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
60 #include <Tlhelp32.h>
3833
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 1972
diff changeset
61
4717
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
62 typedef unsigned int socklen_t;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // #include "jni.h"
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 #define JNI_ONLOAD_SYMBOLS {"_JNI_OnLoad@8", "JNI_OnLoad"}
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #define JNI_ONUNLOAD_SYMBOLS {"_JNI_OnUnload@8", "JNI_OnUnload"}
a61af66fc99e Initial load
duke
parents:
diff changeset
68 #define JVM_ONLOAD_SYMBOLS {"_JVM_OnLoad@12", "JVM_OnLoad"}
a61af66fc99e Initial load
duke
parents:
diff changeset
69 #define AGENT_ONLOAD_SYMBOLS {"_Agent_OnLoad@12", "Agent_OnLoad"}
a61af66fc99e Initial load
duke
parents:
diff changeset
70 #define AGENT_ONUNLOAD_SYMBOLS {"_Agent_OnUnload@4", "Agent_OnUnload"}
a61af66fc99e Initial load
duke
parents:
diff changeset
71 #define AGENT_ONATTACH_SYMBOLS {"_Agent_OnAttach@12", "Agent_OnAttach"}
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 #define JNI_LIB_PREFIX ""
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #define JNI_LIB_SUFFIX ".dll"
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 struct dirent {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 char d_name[MAX_PATH];
a61af66fc99e Initial load
duke
parents:
diff changeset
78 };
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 typedef struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 struct dirent dirent;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 char *path;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 HANDLE handle;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 WIN32_FIND_DATA find_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 } DIR;
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 #include <stdlib.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 #define JVM_MAXPATHLEN _MAX_PATH
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 #define JVM_R_OK 4
a61af66fc99e Initial load
duke
parents:
diff changeset
92 #define JVM_W_OK 2
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #define JVM_X_OK 1
a61af66fc99e Initial load
duke
parents:
diff changeset
94 #define JVM_F_OK 0
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #ifdef __cplusplus
a61af66fc99e Initial load
duke
parents:
diff changeset
97 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 JNIEXPORT void * JNICALL
a61af66fc99e Initial load
duke
parents:
diff changeset
101 JVM_GetThreadInterruptEvent();
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 #ifdef __cplusplus
a61af66fc99e Initial load
duke
parents:
diff changeset
104 } /* extern "C" */
a61af66fc99e Initial load
duke
parents:
diff changeset
105 #endif /* __cplusplus */
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
108 * File I/O
a61af66fc99e Initial load
duke
parents:
diff changeset
109 */
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // #include <sys/types.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // #include <sys/stat.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // #include <fcntl.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // #include <errno.h>
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 /* O Flags */
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 #define JVM_O_RDONLY O_RDONLY
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #define JVM_O_WRONLY O_WRONLY
a61af66fc99e Initial load
duke
parents:
diff changeset
120 #define JVM_O_RDWR O_RDWR
a61af66fc99e Initial load
duke
parents:
diff changeset
121 #define JVM_O_O_APPEND O_APPEND
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #define JVM_O_EXCL O_EXCL
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #define JVM_O_CREAT O_CREAT
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #define JVM_O_DELETE O_TEMPORARY
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 /* Signals */
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 #define JVM_SIGINT SIGINT
a61af66fc99e Initial load
duke
parents:
diff changeset
129 #define JVM_SIGTERM SIGTERM
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 #define SHUTDOWN1_SIGNAL SIGINT /* Shutdown Hooks support. */
a61af66fc99e Initial load
duke
parents:
diff changeset
132 #define SHUTDOWN2_SIGNAL SIGTERM
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 #endif /* !_JAVASOFT_JVM_MD_H_ */
4717
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
135
11c26bfcf8c7 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 3833
diff changeset
136 #endif // OS_WINDOWS_VM_JVM_WINDOWS_H