Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 87688fd3c517a53804cdd383aeecefa0b6bcab2f (plain) (blame)
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
/**
 * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.internal.net4j.protocol;

import org.eclipse.emf.cdo.common.protocol.CDOAuthenticationResult;
import org.eclipse.emf.cdo.common.protocol.CDOAuthenticator;
import org.eclipse.emf.cdo.common.protocol.CDOProtocolConstants;

import org.eclipse.net4j.signal.IndicationWithResponse;
import org.eclipse.net4j.signal.SignalProtocol;
import org.eclipse.net4j.util.io.ExtendedDataInputStream;
import org.eclipse.net4j.util.io.ExtendedDataOutputStream;

import org.eclipse.emf.spi.cdo.InternalCDOSession;

/**
 * @author Eike Stepper
 */
public class AuthenticationIndication extends IndicationWithResponse
{
  private byte[] randomToken;

  public AuthenticationIndication(SignalProtocol<?> protocol)
  {
    super(protocol, CDOProtocolConstants.SIGNAL_AUTHENTICATION);
  }

  @Override
  public CDOClientProtocol getProtocol()
  {
    return (CDOClientProtocol)super.getProtocol();
  }

  protected InternalCDOSession getSession()
  {
    return (InternalCDOSession)getProtocol().getSession();
  }

  @Override
  protected void indicating(ExtendedDataInputStream in) throws Exception
  {
    randomToken = in.readByteArray();
  }

  @Override
  protected void responding(ExtendedDataOutputStream out) throws Exception
  {
    try
    {
      InternalCDOSession session = getSession();
      CDOAuthenticator authenticator = session.getAuthenticator();
      if (authenticator == null)
      {
        throw new IllegalStateException("No authenticator configured"); //$NON-NLS-1$
      }

      CDOAuthenticationResult result = authenticator.authenticate(randomToken);
      if (result == null)
      {
        throw new SecurityException("Not authenticated"); //$NON-NLS-1$
      }

      String userID = result.getUserID();
      if (userID == null)
      {
        throw new SecurityException("No user ID"); //$NON-NLS-1$
      }

      byte[] cryptedToken = result.getCryptedToken();
      if (cryptedToken == null)
      {
        throw new SecurityException("No crypted token"); //$NON-NLS-1$
      }

      out.writeBoolean(true);
      result.write(out);
    }
    catch (Exception ex)
    {
      out.writeBoolean(false);
      throw ex;
    }
  }
}

Back to the top