org.acplt.oncrpc.server.OncRpcServerAuthShort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remotetea-oncrpc Show documentation
Show all versions of remotetea-oncrpc Show documentation
The runtime environment for ONC/RPC programs, both client and server side.
/*
* $Header: /home/harald/repos/remotetea.sf.net/remotetea/src/org/acplt/oncrpc/server/OncRpcServerAuthShort.java,v 1.1 2003/08/13 12:03:51 haraldalbrecht Exp $
*
* Copyright (c) 1999, 2000
* Lehrstuhl fuer Prozessleittechnik (PLT), RWTH Aachen
* D-52064 Aachen, Germany.
* All rights reserved.
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program (see the file LICENSE.txt for more
* details); if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package org.acplt.oncrpc.server;
import org.acplt.oncrpc.*;
import java.io.IOException;
/**
* The OncRpcServerAuthShort
class handles all protocol issues
* of the ONC/RPC authentication AUTH_SHORT
on the server
* side.
*
* @version $Revision: 1.1 $ $Date: 2003/08/13 12:03:51 $ $State: Exp $ $Locker: $
* @author Harald Albrecht
*/
public final class OncRpcServerAuthShort implements OncRpcServerAuth {
/**
* Returns the type (flavor) of {@link OncRpcAuthType authentication}
* used.
*
* @return Authentication type used by this authentication object.
*/
public final int getAuthenticationType() {
return OncRpcAuthType.ONCRPC_AUTH_SHORT;
}
/**
* Returns the shorthand credential sent by the caller.
*
* @return A byte array containing the shorthand credential.
*/
public final byte [] getShorthandCred() {
return shorthandCred;
}
/**
* Sets shorthand verifier to be sent back to the caller. The caller then
* can use this shorthand verifier as the new credential with the next
* ONC/RPC calls. If you don't set the verifier or set it to
* null
, then the verifier returned to the caller will be
* of type AUTH_NONE
.
*
* @param shorthandVerf A byte array containing the shorthand verifier.
*/
public final void setShorthandVerifier(byte [] shorthandVerf) {
this.shorthandVerf = shorthandVerf;
}
/**
* Returns the shorthand verifier to be sent back to the caller.
*
* @return A byte array containing the shorthand verifier.
*/
public final byte [] getShorthandVerifier() {
return shorthandVerf;
}
/**
* Decodes -- that is: deserializes -- an ONC/RPC authentication object
* (credential & verifier) on the server side.
*
* @param xdr An XDR decoding stream
*
* @throws OncRpcException if an ONC/RPC error occurs.
* @throws IOException if an I/O error occurs.
*/
public final void xdrDecodeCredVerf(XdrDecodingStream xdr)
throws OncRpcException, IOException {
//
// Reset the authentication object's state properly...
//
shorthandCred = null;
shorthandVerf = null;
//
// Pull off the shorthand credential information (opaque date) of
// the XDR stream...
//
shorthandCred = xdr.xdrDecodeDynamicOpaque();
if ( shorthandCred.length >
OncRpcAuthConstants.ONCRPC_MAX_AUTH_BYTES ) {
throw(new OncRpcAuthenticationException(
OncRpcAuthStatus.ONCRPC_AUTH_BADCRED));
}
//
// We also need to decode the verifier. This must be of type
// AUTH_NONE too. For some obscure historical reasons, we have to
// deal with credentials and verifiers, although they belong together,
// according to Sun's specification.
//
if ( (xdr.xdrDecodeInt() != OncRpcAuthType.ONCRPC_AUTH_NONE) ||
(xdr.xdrDecodeInt() != 0) ) {
throw(new OncRpcAuthenticationException(
OncRpcAuthStatus.ONCRPC_AUTH_BADVERF));
}
}
/**
* Encodes -- that is: serializes -- an ONC/RPC authentication object
* (its verifier) on the server side.
*
* @param xdr An XDR encoding stream
*
* @throws OncRpcException if an ONC/RPC error occurs.
* @throws IOException if an I/O error occurs.
*/
public final void xdrEncodeVerf(XdrEncodingStream xdr)
throws OncRpcException, IOException {
if ( shorthandVerf != null ) {
//
// Encode AUTH_SHORT shorthand verifier (credential).
//
xdr.xdrEncodeInt(OncRpcAuthType.ONCRPC_AUTH_SHORT);
xdr.xdrEncodeDynamicOpaque(shorthandVerf);
} else {
//
// Encode an AUTH_NONE verifier with zero length, if no shorthand
// verifier (credential) has been supplied by now.
//
xdr.xdrEncodeInt(OncRpcAuthType.ONCRPC_AUTH_NONE);
xdr.xdrEncodeInt(0);
}
}
/**
* Contains the shorthand credential sent by the caller.
*/
private byte [] shorthandCred = null;
/**
* Contains the shorthand authentication verifier (credential) to return
* to the caller to be used with the next ONC/RPC calls.
*/
private byte [] shorthandVerf = null;
}
// End of OncRpcServerAuthShort.java