summaryrefslogtreecommitdiff
path: root/java/client/src/main/java/org/apache/qpid/client/security/amqplain/AmqPlainSaslClient.java
blob: d564e82ec3165632317fe00d470523d2c6830f14 (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
/*
 *
 * Copyright (c) 2006 The Apache Software Foundation
 *
 * Licensed 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.qpid.client.security.amqplain;

import org.apache.qpid.framing.FieldTable;

import javax.security.sasl.SaslClient;
import javax.security.sasl.SaslException;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.NameCallback;
import javax.security.auth.callback.PasswordCallback;
import javax.security.auth.callback.Callback;

/**
 * Implements the "AMQPlain" authentication protocol that uses FieldTables to send username and pwd.
 *
 */
public class AmqPlainSaslClient implements SaslClient
{
    /**
     *  The name of this mechanism
     */
    public static final String MECHANISM = "AMQPLAIN";

    private CallbackHandler _cbh;

    public AmqPlainSaslClient(CallbackHandler cbh)
    {
        _cbh = cbh;
    }

    public String getMechanismName()
    {
        return "AMQPLAIN";
    }

    public boolean hasInitialResponse()
    {
        return true;
    }

    public byte[] evaluateChallenge(byte[] challenge) throws SaslException
    {
        // we do not care about the prompt or the default name
        NameCallback nameCallback = new NameCallback("prompt", "defaultName");
        PasswordCallback pwdCallback = new PasswordCallback("prompt", false);
        Callback[] callbacks = new Callback[]{nameCallback, pwdCallback};
        try
        {
            _cbh.handle(callbacks);
        }
        catch (Exception e)
        {
            throw new SaslException("Error handling SASL callbacks: " + e, e);
        }
        FieldTable table = new FieldTable();
        table.put("LOGIN", nameCallback.getName());
        table.put("PASSWORD", pwdCallback.getPassword());
        return table.getDataAsBytes();
    }

    public boolean isComplete()
    {
        return true;
    }

    public byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException
    {
        throw new SaslException("Not supported");
    }

    public byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException
    {
        throw new SaslException("Not supported");
    }

    public Object getNegotiatedProperty(String propName)
    {
        return null;
    }

    public void dispose() throws SaslException
    {
        _cbh = null;
    }
}