View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License.
18   *
19   */
20  package org.apache.directory.shared.kerberos.codec.kdcReqBody.actions;
21  
22  
23  import org.apache.directory.api.asn1.DecoderException;
24  import org.apache.directory.api.asn1.ber.grammar.GrammarAction;
25  import org.apache.directory.api.asn1.ber.tlv.BerValue;
26  import org.apache.directory.api.asn1.ber.tlv.TLV;
27  import org.apache.directory.api.i18n.I18n;
28  import org.apache.directory.api.util.Strings;
29  import org.apache.directory.shared.kerberos.KerberosTime;
30  import org.apache.directory.shared.kerberos.codec.kdcReqBody.KdcReqBodyContainer;
31  import org.apache.directory.shared.kerberos.components.KdcReqBody;
32  import org.slf4j.Logger;
33  import org.slf4j.LoggerFactory;
34  
35  
36  /**
37   * The action used to store the till KerberosTime
38   *
39   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
40   */
41  public class StoreTill extends GrammarAction<KdcReqBodyContainer>
42  {
43      /** The logger */
44      private static final Logger LOG = LoggerFactory.getLogger( StoreTill.class );
45  
46      /** Speedup for logs */
47      private static final boolean IS_DEBUG = LOG.isDebugEnabled();
48  
49  
50      /**
51       * Instantiates a new StoreTill action.
52       */
53      public StoreTill()
54      {
55          super( "Stores the Till" );
56      }
57  
58  
59      /**
60       * {@inheritDoc}
61       */
62      public void action( KdcReqBodyContainer kdcReqBodyContainer ) throws DecoderException
63      {
64          TLV tlv = kdcReqBodyContainer.getCurrentTLV();
65  
66          // The Length should not be null and should be 15
67          if ( tlv.getLength() != 15 )
68          {
69              LOG.error( I18n.err( I18n.ERR_01308_ZERO_LENGTH_TLV ) );
70  
71              // This will generate a PROTOCOL_ERROR
72              throw new DecoderException( I18n.err( I18n.ERR_01309_EMPTY_TLV ) );
73          }
74  
75          KdcReqBody kdcReqBody = kdcReqBodyContainer.getKdcReqBody();
76  
77          // The value is the KerberosTime
78          BerValue value = tlv.getValue();
79          String date = Strings.utf8ToString( value.getData() );
80  
81          try
82          {
83              KerberosTime/shared/kerberos/KerberosTime.html#KerberosTime">KerberosTime till = new KerberosTime( date );
84              kdcReqBody.setTill( till );
85  
86              if ( IS_DEBUG )
87              {
88                  LOG.debug( "Till : {}", till );
89              }
90          }
91          catch ( IllegalArgumentException iae )
92          {
93              LOG.error( I18n.err( I18n.ERR_01308_ZERO_LENGTH_TLV ) );
94  
95              // This will generate a PROTOCOL_ERROR
96              throw new DecoderException( I18n.err( I18n.ERR_01309_EMPTY_TLV ) );
97          }
98      }
99  }