summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Sasl/Sasl.cs
blob: 2f7bacb939cdda57c7596b9ed15b19d1c7a630fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
 *
 * 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.
 *
 */

using System;
using System.Collections;
using System.Configuration;
using System.Text;

using Apache.Qpid.Sasl.Configuration;

namespace Apache.Qpid.Sasl
{
   /// <summary>
   /// Static class used to access the SASL functionality. 
   /// The core SASL mechanism is described in RFC 2222.
   /// </summary>
   /// <remarks>
   /// Only client side mechanisms are implemented.
   /// <para>
   /// New client side factories can be added programatically using the 
   /// RegisterClientFactory method, or through the application 
   /// configuration file, like this:
   /// </para>
   /// <example><![CDATA[
   /// <configuration>
   ///   <configSections>
   ///      <section name="qpid.sasl" type="Apache.Qpid.Sasl.Configuration.SaslConfigurationSectionHandler, Apache.Qpid.Sasl"/>
   ///   </configSections>
   ///
   ///   <qpid.sasl>
   ///      <clientFactories>
   ///         <add type="Apache.Qpid.Sasl.Tests.TestClientFactory, Apache.Qpid.Sasl.Tests"/>
   ///      </clientFactories>
   ///   </qpid.sasl>
   /// </configuration>
   /// ]]></example>
   /// </remarks>
   public sealed class Sasl
   {
      private static IList _clientFactories;
      

      static Sasl()
      {
         SaslConfiguration config = SaslConfiguration.GetConfiguration();
         _clientFactories = config.ClientFactories;
      }
      private Sasl()
      {
      }

      public static ISaslClient CreateClient(
         string[] mechanisms, string authorizationId,
         string protocol, string serverName,
         IDictionary props, ISaslCallbackHandler handler
         )
      {
         ISaslClientFactory factory = FindFactory(mechanisms, props);
         if ( factory == null )
            return null;

         return factory.CreateClient (
            mechanisms, authorizationId, 
            protocol, serverName, props, handler
            );
      }

      public static void RegisterClientFactory(ISaslClientFactory factory)
      {
         lock ( _clientFactories )
         {
            _clientFactories.Add(factory);
         }
      }

      private static ISaslClientFactory FindFactory(string[] mechanisms, IDictionary props)
      {
         lock ( _clientFactories )
         {
            foreach ( ISaslClientFactory factory in _clientFactories )
            {
               string[] mechs = factory.GetSupportedMechanisms(props);
               foreach ( string m1 in mechs )
               {
                  foreach (string m2 in mechanisms )
                  {
                     if ( m1 == m2 )
                        return factory;
                  }
               }
            }
            return null;
         }
      }
   } // class Sasl

} // namespace Apache.Qpid.Sasl.Mechanisms