blob: e19422f659a2e6ae8712994a89f66bd5864d8f5c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.kerberos.shared.keytab;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import org.apache.directory.shared.kerberos.KerberosTime;
import org.apache.directory.shared.kerberos.codec.types.EncryptionType;
import org.apache.directory.shared.kerberos.components.EncryptionKey;
import org.apache.mina.core.buffer.IoBuffer;
/**
* Decode a {@link IoBuffer} into keytab fields.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
class KeytabDecoder
{
/**
* Read the keytab 16-bit file format version. This
* keytab reader currently only supports version 5.2.
*/
byte[] getKeytabVersion( IoBuffer buffer )
{
byte[] version = new byte[2];
buffer.get( version );
return version;
}
/**
* Read keytab entries until there is no remaining data
* in the buffer.
*
* @param buffer
* @return The keytab entries.
*/
List<KeytabEntry> getKeytabEntries( IoBuffer buffer )
{
List<KeytabEntry> entries = new ArrayList<KeytabEntry>();
while ( buffer.remaining() > 0 )
{
int size = buffer.getInt();
byte[] entry = new byte[size];
buffer.get( entry );
entries.add( getKeytabEntry( IoBuffer.wrap( entry ) ) );
}
return entries;
}
/**
* Reads off a "keytab entry," which consists of a principal name,
* principal type, key version number, and key material.
*/
private KeytabEntry getKeytabEntry( IoBuffer buffer )
{
String principalName = getPrincipalName( buffer );
long principalType = buffer.getUnsignedInt();
long time = buffer.getUnsignedInt();
KerberosTime timeStamp = new KerberosTime( time * 1000 );
byte keyVersion = buffer.get();
EncryptionKey key = getKeyBlock( buffer );
return new KeytabEntry( principalName, principalType, timeStamp, keyVersion, key );
}
/**
* Reads off a principal name.
*
* @param buffer
* @return The principal name.
*/
private String getPrincipalName( IoBuffer buffer )
{
int count = buffer.getUnsignedShort();
// decrement for v1
String realm = getCountedString( buffer );
StringBuffer principalNameBuffer = new StringBuffer();
for ( int ii = 0; ii < count; ii++ )
{
String nameComponent = getCountedString( buffer );
principalNameBuffer.append( nameComponent );
if ( ii < count - 1 )
{
principalNameBuffer.append( "\\" );
}
}
principalNameBuffer.append( "@" + realm );
return principalNameBuffer.toString();
}
/**
* Read off a 16-bit encryption type and symmetric key material.
*/
private EncryptionKey getKeyBlock( IoBuffer buffer )
{
int type = buffer.getUnsignedShort();
byte[] keyblock = getCountedBytes( buffer );
EncryptionType encryptionType = EncryptionType.getTypeByValue( type );
EncryptionKey key = new EncryptionKey( encryptionType, keyblock );
return key;
}
/**
* Use a prefixed 16-bit length to read off a String. Realm and name
* components are ASCII encoded text with no zero terminator.
*/
private String getCountedString( IoBuffer buffer )
{
int length = buffer.getUnsignedShort();
byte[] data = new byte[length];
buffer.get( data );
try
{
return new String( data, "ASCII" );
}
catch ( UnsupportedEncodingException uee )
{
// Should never happen for ASCII
return "";
}
}
/**
* Use a prefixed 16-bit length to read off raw bytes.
*/
private byte[] getCountedBytes( IoBuffer buffer )
{
int length = buffer.getUnsignedShort();
byte[] data = new byte[length];
buffer.get( data );
return data;
}
}