Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/native/sun/security/jgss/wrapper/NativeUtil.h
38918 views
1
/*
2
* Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
#include <jni.h>
27
#include <stdlib.h>
28
#include <string.h>
29
#include "gssapi.h"
30
31
#ifndef _Included_NATIVE_Util
32
#define _Included_NATIVE_Util
33
#ifdef __cplusplus
34
extern "C" {
35
#endif
36
extern jint getJavaTime(OM_uint32);
37
extern OM_uint32 getGSSTime(jint);
38
extern void checkStatus(JNIEnv *, jobject, OM_uint32, OM_uint32, char*);
39
extern jint checkTime(OM_uint32);
40
extern void throwOutOfMemoryError(JNIEnv *, const char*);
41
extern void initGSSBuffer(JNIEnv *, jbyteArray, gss_buffer_t);
42
extern void resetGSSBuffer(gss_buffer_t);
43
44
extern gss_OID newGSSOID(JNIEnv *, jobject);
45
extern void deleteGSSOID(gss_OID);
46
extern gss_OID_set newGSSOIDSet(gss_OID);
47
extern void deleteGSSOIDSet(gss_OID_set);
48
49
extern jbyteArray getJavaBuffer(JNIEnv *, gss_buffer_t);
50
extern jstring getJavaString(JNIEnv *, gss_buffer_t);
51
extern jobject getJavaOID(JNIEnv *, gss_OID);
52
extern jobjectArray getJavaOIDArray(JNIEnv *, gss_OID_set);
53
54
extern jstring getMinorMessage(JNIEnv *, jobject, OM_uint32);
55
extern int sameMech(gss_OID, gss_OID);
56
57
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *, void *);
58
JNIEXPORT void JNICALL JNI_OnUnload(JavaVM *, void *);
59
60
extern int JGSS_DEBUG;
61
62
extern jclass CLS_Object;
63
extern jclass CLS_GSSNameElement;
64
extern jclass CLS_GSSCredElement;
65
extern jclass CLS_NativeGSSContext;
66
extern jmethodID MID_MessageProp_getPrivacy;
67
extern jmethodID MID_MessageProp_getQOP;
68
extern jmethodID MID_MessageProp_setPrivacy;
69
extern jmethodID MID_MessageProp_setQOP;
70
extern jmethodID MID_MessageProp_setSupplementaryStates;
71
extern jmethodID MID_ChannelBinding_getInitiatorAddr;
72
extern jmethodID MID_ChannelBinding_getAcceptorAddr;
73
extern jmethodID MID_ChannelBinding_getAppData;
74
extern jmethodID MID_InetAddress_getAddr;
75
extern jmethodID MID_GSSNameElement_ctor;
76
extern jmethodID MID_GSSCredElement_ctor;
77
extern jmethodID MID_NativeGSSContext_ctor;
78
extern jfieldID FID_GSSLibStub_pMech;
79
extern jfieldID FID_NativeGSSContext_pContext;
80
extern jfieldID FID_NativeGSSContext_srcName;
81
extern jfieldID FID_NativeGSSContext_targetName;
82
extern jfieldID FID_NativeGSSContext_isInitiator;
83
extern jfieldID FID_NativeGSSContext_isEstablished;
84
extern jfieldID FID_NativeGSSContext_delegatedCred;
85
extern jfieldID FID_NativeGSSContext_flags;
86
extern jfieldID FID_NativeGSSContext_lifetime;
87
extern jfieldID FID_NativeGSSContext_actualMech;
88
#define TRACE0(s) { if (JGSS_DEBUG) { puts(s); fflush(stdout); }}
89
#define TRACE1(s, p1) { if (JGSS_DEBUG) { printf(s"\n", p1); fflush(stdout); }}
90
#define TRACE2(s, p1, p2) { if (JGSS_DEBUG) { printf(s"\n", p1, p2); fflush(stdout); }}
91
#define TRACE3(s, p1, p2, p3) { if (JGSS_DEBUG) { printf(s"\n", p1, p2, p3); fflush(stdout); }}
92
93
94
#ifdef __cplusplus
95
}
96
#endif
97
#endif
98
99