1/*
2 * Copyright (c) 2005, 2015, 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
34extern "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  extern int JGSS_DEBUG;
58
59  extern jclass CLS_Object;
60  extern jclass CLS_GSSNameElement;
61  extern jclass CLS_GSSCredElement;
62  extern jclass CLS_NativeGSSContext;
63  extern jmethodID MID_MessageProp_getPrivacy;
64  extern jmethodID MID_MessageProp_getQOP;
65  extern jmethodID MID_MessageProp_setPrivacy;
66  extern jmethodID MID_MessageProp_setQOP;
67  extern jmethodID MID_MessageProp_setSupplementaryStates;
68  extern jmethodID MID_ChannelBinding_getInitiatorAddr;
69  extern jmethodID MID_ChannelBinding_getAcceptorAddr;
70  extern jmethodID MID_ChannelBinding_getAppData;
71  extern jmethodID MID_InetAddress_getAddr;
72  extern jmethodID MID_GSSNameElement_ctor;
73  extern jmethodID MID_GSSCredElement_ctor;
74  extern jmethodID MID_NativeGSSContext_ctor;
75  extern jfieldID FID_GSSLibStub_pMech;
76  extern jfieldID FID_NativeGSSContext_pContext;
77  extern jfieldID FID_NativeGSSContext_srcName;
78  extern jfieldID FID_NativeGSSContext_targetName;
79  extern jfieldID FID_NativeGSSContext_isInitiator;
80  extern jfieldID FID_NativeGSSContext_isEstablished;
81  extern jfieldID FID_NativeGSSContext_delegatedCred;
82  extern jfieldID FID_NativeGSSContext_flags;
83  extern jfieldID FID_NativeGSSContext_lifetime;
84  extern jfieldID FID_NativeGSSContext_actualMech;
85  #define TRACE0(s) { if (JGSS_DEBUG) { puts(s); fflush(stdout); }}
86  #define TRACE1(s, p1) { if (JGSS_DEBUG) { printf(s"\n", p1); fflush(stdout); }}
87  #define TRACE2(s, p1, p2) { if (JGSS_DEBUG) { printf(s"\n", p1, p2); fflush(stdout); }}
88  #define TRACE3(s, p1, p2, p3) { if (JGSS_DEBUG) { printf(s"\n", p1, p2, p3); fflush(stdout); }}
89
90
91#ifdef __cplusplus
92}
93#endif
94#endif
95