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.api.ldap.codec.actions.bindRequest;
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.TLV;
26  import org.apache.directory.api.ldap.codec.api.LdapMessageContainer;
27  import org.apache.directory.api.ldap.codec.api.ResponseCarryingException;
28  import org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator;
29  import org.apache.directory.api.ldap.model.exception.LdapInvalidDnException;
30  import org.apache.directory.api.ldap.model.message.BindRequest;
31  import org.apache.directory.api.ldap.model.message.BindResponseImpl;
32  import org.apache.directory.api.ldap.model.message.ResultCodeEnum;
33  import org.apache.directory.api.ldap.model.name.Dn;
34  import org.apache.directory.api.util.Strings;
35  import org.slf4j.Logger;
36  import org.slf4j.LoggerFactory;
37  
38  
39  /**
40   * The action used to store the BindRequest name.
41   * <pre>
42   * BindRequest ::= [APPLICATION 0] SEQUENCE {
43   *     ....
44   *     name                    LDAPDN,
45   *     ....
46   * </pre>
47   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
48   */
49  public class StoreName extends GrammarAction<LdapMessageContainer<BindRequestDecorator>>
50  {
51      /** The logger */
52      private static final Logger LOG = LoggerFactory.getLogger( StoreName.class );
53  
54      /** Speedup for logs */
55      private static final boolean IS_DEBUG = LOG.isDebugEnabled();
56  
57  
58      /**
59       * Instantiates a new action.
60       */
61      public StoreName()
62      {
63          super( "Store BindRequest Name value" );
64      }
65  
66  
67      /**
68       * {@inheritDoc}
69       */
70      public void action( LdapMessageContainer<BindRequestDecorator> container ) throws DecoderException
71      {
72          BindRequest bindRequestMessage = container.getMessage();
73  
74          // Get the Value and store it in the BindRequest
75          TLV tlv = container.getCurrentTLV();
76  
77          // We have to handle the special case of a 0 length name
78          if ( tlv.getLength() == 0 )
79          {
80              bindRequestMessage.setName( "" );
81          }
82          else
83          {
84              byte[] nameBytes = tlv.getValue().getData();
85              String nameStr = Strings.utf8ToString( nameBytes );
86  
87              try
88              {
89                  // Testing the name as a DN
90                  new Dn( nameStr );
91                  bindRequestMessage.setName( nameStr );
92              }
93              catch ( LdapInvalidDnException ine )
94              {
95                  String msg = "Incorrect DN given : " + nameStr + " (" + Strings.dumpBytes( nameBytes )
96                      + ") is invalid";
97                  LOG.error( "{} : {}", msg, ine.getMessage() );
98  
99                  BindResponseImpl response = new BindResponseImpl( bindRequestMessage.getMessageId() );
100 
101                 throw new ResponseCarryingException( msg, response, ResultCodeEnum.INVALID_DN_SYNTAX,
102                     Dn.EMPTY_DN, ine );
103             }
104         }
105 
106         if ( IS_DEBUG )
107         {
108             LOG.debug( " The Bind name is {}", bindRequestMessage.getName() );
109         }
110     }
111 }