summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/CSIv2/TSS_RequestInterceptor.cpp
blob: 6cd5cbef37c7bc1508c0a63de1a1329dcfb99a6e (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
#include "TSS_RequestInterceptor.h"
#include "CSI_Utils.h"

#include "orbsvcs/CSIC.h"


ACE_RCSID (CSIv2,
           TSS_RequestInterceptor,
           "$Id$")


char *
TAO::TSS_RequestInterceptor::name (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  return CORBA::string_dup ("TAO::TSS_RequestInterceptor");
}

void
TAO::TSS_RequestInterceptor::destroy (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
}

void
TAO::TSS_RequestInterceptor::receive_request_service_contexts (
    PortableInterceptor::ServerRequestInfo_ptr info
    ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   PortableInterceptor::ForwardRequest))
{
  CSI::SASContextBody sas_context;

  // Extract CSI::SASContextBody union from IOP::ServiceContext.
  const bool found_sas_context =
    this->extract_sas_context (info,
                               sas_context
                               ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;

  // If SAS message exists, handle it accordingly.
  if (found_sas_context)
    {
      const CORBA::Boolean oneway =
        info->response_expected (ACE_ENV_SINGLE_ARG_PARAMETER);
      ACE_CHECK;

      const CSI::MsgType msg_type = sas_context._d ();

      switch (msg_type)
        {
        case CSI::MTEstablishContext:
          {
            bool stateful;

            const CSI::EstablishContext & ec = sas_context.establish_msg ();

            if (!this->accept_context (info,
                                       oneway,
                                       ec,
                                       stateful))
              ACE_THROW (CORBA::NO_PERMISSION ());

            // Success!

            CSI::GSSToken final_context_token;

            // Only add CSI::CompleteEstablishContext to
            // ServiceContextList for twoway calls, i.e those that
            // expect a response.  Don't bother for oneway calls.  This
            // is merely an optimization.
            if (!oneway)
              {
                this->add_complete_establish_context (info,
                                                      ec.client_context_id,
                                                      stateful,
                                                      final_context_token
                                                      ACE_ENV_ARG_PARAMETER);
                ACE_CHECK;
              }
          }
          break;

        case CSI::MTMessageInContext:
          const CSI::MessageInContext & mic = sas_context.in_context_msg ();

          // @@ We should be revalidating/reauthenticating the
          //    identity of the client, right?
          context = this->reference_context (mic.client_context_id);

          // Only add CSI::ContextError to ServiceContextList for
          // twoway calls, i.e those that expect a response.  Don't
          // bother for oneway calls.  This is merely an
          // optimization.
          if (context is empty
              && !oneway)
            {
              // Major and minor codes for "no context" ContextError.
              const CORBA::Long major = 4;
              const CORBA::Long minor = 1;

              this->add_context_error (mic.client_context_id,
                                       major,
                                       minor,
                                       error_token
                                       ACE_ENV_ARG_PARAMETER);
              ACE_CHECK;

              ACE_THROW (CORBA::NO_PERMISSION ());
            }

          // @@ Should this be done in the send_reply() interception
          //    point?
          // @@ I don't think that's necessary.
          if (mic.discard_context)
            this->discard_context (mic.client_context_id);

          break;

        default:
          // ContextError?
          // No other message types should be sent by a client security
          // service.
          ACE_THROW (CORBA::NO_PERMISSION ());
          break;
        }
    }

  // No SAS message.  Verify that the transport layer security
  // context satisfies the target object security requirements.
  else if (!this->accept_transport_context ())
    ACE_THROW (CORBA::NO_PERMISSION ());

  // Success!
}

void
TAO::TSS_RequestInterceptor::receive_request (
    PortableInterceptor::ServerRequestInfo_ptr info
    ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   PortableInterceptor::ForwardRequest))
{
}

void
TAO::TSS_RequestInterceptor::send_reply (
    PortableInterceptor::ServerRequestInfo_ptr
    ACE_ENV_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
}

void
TAO::TSS_RequestInterceptor::send_exception (
    PortableInterceptor::ServerRequestInfo_ptr
    ACE_ENV_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   PortableInterceptor::ForwardRequest))
{
}

void
TAO::TSS_RequestInterceptor::send_other (
    PortableInterceptor::ServerRequestInfo_ptr
    ACE_ENV_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException,
                   PortableInterceptor::ForwardRequest))
{
}

bool
TAO::TSS_RequestInterceptor::accept_transport_context (void)
{
  /**
   * @todo Query the transport layer.
   */

  return true; // Context accepted.
}

bool
TAO::TSS_RequestInterceptor::accept_context (
  PortableInterceptor::ServerRequestInfo_ptr info,
  CORBA::Boolean oneway,
  const CSI::EstablishContext & ec,
  bool & stateful
  ACE_ENV_ARG_DECL)
{
  ErrorCode error_code = /**/;

  // Only add CSI::ContextError to ServiceContextList for twoway
  // calls, i.e those that expect a response.  Don't bother for oneway
  // calls.  This is merely an optimization.
  if (!oneway && error_code != NONE)
    {
      // The CSI::ContextError major and minor status codes are
      // defined in Section 24.3.5 in Secure Interoperability chapter
      // of the core CORBA specification.
      CORBA::Long major = 0;
      CORBA::Long minor = 1;

      // The "no context" error code should never occur when a context
      // is being established.  It should only occur after a context
      // has been established in a stateful Target Security
      // Service case.
      ACE_ASSERT (error_code != NO_CONTEXT);

      if (error_code == INVALID_EVIDENCE)
        {
          major = 1;
        }
      else if (error_code == CONFLICTING_EVIDENCE)
        {
          major = 2;
        }
      else if (error_code == INVALID_MECHANISM)
        {
          major = 3;
        }
      else if (error_code == POLICY_CHANGE)
        {
          ACE_THROW_RETURN (PortableInterceptor::ForwardRequest (),
                            false);
        }

      this->add_context_error (ec.client_context_id,
                               major,
                               minor,
                               error_token
                               ACE_ENV_ARG_PARAMETER);
      ACE_CHECK_RETURN (false);

      return false;
    }

  if (ec.client_context_id == 0)
    stateful = false;  // Do not establish stateful context for clients
                       // that request a stateless one.
  else
    stateful = false;  // TAO TSS isn't stateful yet.

  return true; // Context accepted.
}

void
TAO::TSS_RequestInterceptor::reference_context (CSI::ContextId context_id)
{

}

void
TAO::TSS_RequestInterceptor::discard_context (CSI::ContextId context_id)
{
}

bool
TAO::TSS_RequestInterceptor::extract_sas_context (
  PortableInterceptor::ServerRequestInfo_ptr info,
  CSI::SASContextBody & sas_context
  ACE_ENV_ARG_DECL)
{
  IOP::ServiceContext_var sc;

  ACE_TRY
    {
      sc = info->get_request_service_context (IOP::SecurityAttributeService
                                              ACE_ENV_ARG_PARAMETER);
      ACE_TRY_CHECK;
    }
  ACE_CATCH (CORBA::BAD_PARAM, ex)
    {
      if (ex.minor () == (CORBA::OMGVMCID | 26))
        return false;
      else
        ACE_RE_THROW;
    }
  ACE_ENDTRY;
  ACE_CHECK_RETURN (false);

  if (sc->context_id != IOP::SecurityAttributeService)
    {
      // Invalid ServiceId.  The client apparently botched the
      // ServiceContext corresponding to the CSI::SASContextBody.
      //
      // @@ Correct exception? If so, should ContextError be added to
      //    the exception reply ServiceContextList.
      ACE_THROW_RETURN (CORBA::NO_PERMISSION (), false);
    }

  // Extract CSI::SASContextBody from given IOP::ServiceContext.
  if (!TAO::CSI_Utils::extract_sas_service_context (sc.in (),
                                                    sas_context))
    ACE_THROW_RETURN (CORBA::MARSHAL (), false);

  return true;  // Successfully extracted CSI::SASContextBody.
}

void
TAO::TSS_RequestInterceptor::add_complete_establish_context (
  PortableInterceptor::ServerRequestInfo_ptr info,
  CSI::ContextId client_context_id,
  CORBA::Boolean context_stateful,
  CSI::GSSToken & final_context_token
  ACE_ENV_ARG_DECL)
{
  CSI::CompleteEstablishContext cec;

  cec.client_context_id = client_context_id;
  cec.context_stateful = context_stateful;

  const CORBA::Boolean release = 0;  // Do not claim ownership of
                                     // final context token sequence
                                     // buffer.

  // To improve performance, shallow copy the final context token
  // octet sequence.  This is fine since the sequence will not be
  // modified.  It will merely be copied into the reply
  // ServiceContextList.
  cec.final_context_token.replace (final_context_token.maximum (),
                                   final_context_token.length (),
                                   final_context_token.get_buffer (),
                                   release);

  CSI::SASContextBody sas_context;
  sas_context.complete_msg (cec);

  this->add_sas_context (info,
                         sas_context
                         ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;
}

void
TAO::TSS_RequestInterceptor::add_context_error (
  PortableInterceptor::ServerRequestInfo_ptr info,
  CSI::ContextId context_id,
  CORBA::Long major,
  CORBA::Long minor,
  CSI::GSSToken & error_token
  ACE_ENV_ARG_DECL)
{
  CSI::ContextError context_error;

  context_error.client_context_id = context_id;
  context_error.major_status = major;
  context_error.minor_status = minor;

  const CORBA::Boolean release = 0;  // Do not claim ownership of
                                     // error token sequence buffer.

  // To improve performance, shallow copy the error token octet
  // sequence.  This is fine since the sequence will not be modified.
  // It will merely be copied into the reply ServiceContextList.
  context_error.error_token.replace (error_token.maximum (),
                                     error_token.length (),
                                     error_token.get_buffer (),
                                     release);

  CSI::SASContextBody sas_context;
  sas_context.error_msg (context_error);

  this->add_sas_context (info,
                         sas_context
                         ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;
}

void
TAO::TSS_RequestInterceptor::add_sas_context (
  PortableInterceptor::ServerRequestInfo_ptr info,
  const CSI::SASContextBody & sas_context
  ACE_ENV_ARG_DECL)
{
  // Create IOP::ServiceContext containing CSI::SASContextBody union.
  IOP::ServiceContext sc;

  TAO::CSI_Utils::create_sas_service_context (sas, sc);

  // Another IOP::SecurityAttributeService ServiceContext should not
  // exist in the reply's ServiceContextList.
  const CORBA::Boolean replace = 0;

  info->add_reply_service_context (sc,
                                   replace
                                   ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;
}