summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/GSSUP.idl
blob: 6accdd474b6c30a54773a984413084b5a5fbf11f (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
// -*- IDL -*-

//=============================================================================
/**
 *  @file   GSSUP.idl
 *
 *  @author Object Management Group
 */
//=============================================================================

#ifndef _GSSUP_IDL_
#define _GSSUP_IDL_

#include <orbsvcs/CSI.idl>
//import ::CSI;

module GSSUP {
  typeprefix GSSUP "omg.org";
  // The GSS Object Identifier allocated for the
  // username/password mechanism is defined below.
  //
  // { iso-itu-t (2) international-organization (23) omg (130)
  // security (1) authentication (1) gssup-mechanism (1) }
  const CSI::StringOID GSSUPMechOID = "oid:2.23.130.1.1.1";

  // The following structure defines the inner contents of the
  // username password initial context token. This structure is
  // CDR encapsulated and appended at the end of the
  // username/password GSS (initial context) Token.
  struct InitialContextToken {
    CSI::UTF8String username;
    CSI::UTF8String password;
    CSI::GSS_NT_ExportedName target_name;
  };

  typedef unsigned long ErrorCode;

  // GSSUP Mechanism-Specific Error Token
  struct ErrorToken {
    ErrorCode error_code;
  };

  // The context validator has chosen not to reveal the GSSUP
  // specific cause of the failure.
  const ErrorCode GSS_UP_S_G_UNSPECIFIED = 1;

  // The user identified in the username field of the
  // GSSUP::InitialContextToken is unknown to the target.
  const ErrorCode GSS_UP_S_G_NOUSER = 2;

  // The password supplied in the GSSUP::InitialContextToken was
  // incorrect.
  const ErrorCode GSS_UP_S_G_BAD_PASSWORD = 3;

  // The target_name supplied in the GSSUP::InitialContextToken does
  // not match a target_name in a mechanism definition of the target.
  const ErrorCode GSS_UP_S_G_BAD_TARGET = 4;

}; // GSSUP

#endif