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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
// Copyright (C) 2021-2024 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Kea Hooks Basic
// Commercial End User License Agreement v2.0. See COPYING file in the premium/
// directory.

#include <config.h>

#include <asiolink/io_service.h>
#include <d2srv/testutils/stats_test_utils.h>
#include <dns/messagerenderer.h>
#include <dns/opcode.h>
#include <dns/rdataclass.h>
#include <gss_tsig_api_utils.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <testutils/gss_tsig_dns_server.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace isc;
using namespace isc::asiodns;
using namespace isc::asiolink;
using namespace isc::d2::test;
using namespace isc::dns;
using namespace isc::dns::rdata;
using namespace isc::dns::rdata::generic;
using namespace isc::gss_tsig;
using namespace isc::gss_tsig::test;
using namespace isc::stats;
using namespace isc::stats::test;
using namespace isc::util;

using namespace std;
using namespace boost::asio;
using namespace boost::asio::ip;
namespace ph = std::placeholders;

namespace {

const char* TEST_ADDRESS = "127.0.0.1";
const uint16_t TEST_PORT = 5376;
const long TEST_TIMEOUT = 5 * 1000; // expressed in milliseconds.

/// @brief Callback class used to handle the TKEY exchange status.
class TKeyExchangeTestCallback : public TKeyExchange::Callback {
public:
    /// @brief Constructor
    ///
    /// @param io_service The IOService which handles IO operations.
    /// @param status The expected status.
    TKeyExchangeTestCallback(IOServicePtr io_service,
                             TKeyExchange::Status status, bool go_on = false) :
        io_service_(io_service), status_(status), go_on_(go_on) {
    }

    /// @brief Destructor.
    ~TKeyExchangeTestCallback() = default;

    /// @brief The callback function which retrieves the TKEY exchange status.
    void operator()(TKeyExchange::Status status) {
        if (status != status_) {
            ADD_FAILURE() << "key exchange returned " << status
                          << ", expected: " << status_;
        }
        if (!go_on_) {
            io_service_->stop();
        }
    }

    /// @brief The IOService which handles IO operations.
    IOServicePtr io_service_;

    /// @brief The expected TKEY exchange status.
    TKeyExchange::Status status_;

    /// @brief The flag which specifies if the callback should leave the
    /// IOService handle more events.
    bool go_on_;
};

/// @brief Test fixture for testing the GSS-API GSS-TSIG TKEY exchange with
/// Kerberos 5.
class TKeyExchangeTest : public GssApiBaseTest, public D2StatTest {
public:
    /// @brief Constructor.
    TKeyExchangeTest() : io_service_(new IOService()), test_timer_(io_service_) {
        // Set the test timeout to break any running tasks if they hang.
        test_timer_.setup(std::bind(&TKeyExchangeTest::testTimeoutHandler, this),
                          TEST_TIMEOUT);
    }

    /// @brief Destructor.
    ~TKeyExchangeTest() {
        test_timer_.cancel();
        io_service_->stopAndPoll();
    }

    /// @brief Handler invoked when test timeout is hit
    ///
    /// This callback stops all running (hanging) tasks on IO service.
    void testTimeoutHandler() {
        io_service_->stop();
        FAIL() << "Test timeout hit.";
    }

    /// @brief Compares StatsMgr server statistics against expected values.
    ///
    /// Prepend server part of names before calling checkStats simpler variant.
    ///
    /// @param serve The server.
    /// @param expected_stats Map of expected static names and values.
    void checkStats(const DnsServerPtr& server, const StatMap& expected_stats) {
        StatMap key_stats;
        for (auto const& it : expected_stats) {
            const string& stat_name =
                StatsMgr::generateName("server", server->getID(), it.first);
            key_stats[stat_name] = it.second;
        }
        isc::stats::test::checkStats(key_stats);
    }

    /// @brief The IOService which handles IO operations.
    IOServicePtr io_service_;

    /// @brief The timeout timer.
    asiolink::IntervalTimer test_timer_;

    /// @brief Dummy DNS server.
    boost::shared_ptr<DummyDNSServer> dns_server_;
};

/// @brief Check TKEY exchange fails for different reasons.
TEST_F(TKeyExchangeTest, exchangeFailure) {<--- syntax error
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();

    {
        SCOPED_TRACE("timeout when TKEY server is missing");
        TKeyExchangeTestCallback callback(io_service_, TKeyExchange::TIMEOUT);
        GssTsigKeyPtr key(new GssTsigKey(key_name));

        ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

        TKeyExchangePtr ex;

        ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                                  &callback, 100)));

        ASSERT_NO_THROW(ex->doExchange());
        io_service_->run();
        io_service_->stopAndPoll();

        StatMap stats = {
            { "tkey-sent", 1 },
            { "tkey-success", 0 },
            { "tkey-timeout", 1 },
            { "tkey-error", 0 }
        };
        checkStats(server, stats);

        ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    }

    {
        SCOPED_TRACE("stop when exchange is canceled");
        TKeyExchangeTestCallback callback(io_service_, TKeyExchange::IO_STOPPED);
        GssTsigKeyPtr key(new GssTsigKey(key_name));

        ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

        TKeyExchangePtr ex;

        ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                                  &callback, 100)));

        ASSERT_NO_THROW(ex->doExchange());
        ASSERT_NO_THROW(ex->cancel());
        io_service_->run();
        io_service_->stopAndPoll();

        StatMap stats = {
            { "tkey-sent", 2 },
            { "tkey-success", 0 },
            { "tkey-timeout", 1 },
            { "tkey-error", 1 }
        };
        checkStats(server, stats);

        ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    }

    {
        SCOPED_TRACE("validation failure when TKEY response is not signed");
        TKeyExchangeTestCallback callback(io_service_, TKeyExchange::UNSIGNED_RESPONSE);
        GssTsigKeyPtr key(new GssTsigKey(key_name));

        ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

        TKeyExchangePtr ex;

        ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                                  &callback, 100)));

        dns_server_.reset(new DummyDNSServer(io_service_, false, false, true));
        dns_server_->start();

        // The socket is now ready to receive the data. Let's post some request
        // message then. Set timeout to some reasonable value to make sure that
        // there is sufficient amount of time for the test to generate a
        // response.

        ASSERT_NO_THROW(ex->doExchange());
        io_service_->run();
        io_service_->stopAndPoll();

        StatMap stats = {
            { "tkey-sent", 3 },
            { "tkey-success", 0 },
            { "tkey-timeout", 1 },
            { "tkey-error", 2 }
        };
        checkStats(server, stats);

        ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    }
}

/// @brief Check TKEY exchange fails when using Null IOService.
TEST_F(TKeyExchangeTest, exchangeBadUseNullIOService) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(IOServicePtr(), TKeyExchange::OTHER);
    GssTsigKeyPtr key(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_THROW(ex.reset(new TKeyExchange(IOServicePtr(), server, key,
                                           &callback, 100)), BadValue);

    StatMap stats = {
        { "tkey-sent", 0 },
        { "tkey-success", 0 },
        { "tkey-timeout", 0 },
        { "tkey-error", 0 }
    };
    checkStats(server, stats);

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
}

/// @brief Check TKEY exchange fails when using same key name.
TEST_F(TKeyExchangeTest, exchangeBadUseSameKeyName) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::SUCCESS, true);
    TKeyExchangeTestCallback callback_bad(io_service_, TKeyExchange::INVALID_RESPONSE);
    GssTsigKeyPtr key(new GssTsigKey(key_name));
    GssTsigKeyPtr key_bad(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    ASSERT_EQ(key_bad->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));

    TKeyExchangePtr ex_bad;

    ASSERT_NO_THROW(ex_bad.reset(new TKeyExchange(io_service_, server, key_bad,
                                                  &callback_bad, 100)));

    dns_server_.reset(new DummyDNSServer(io_service_, true, true, true));
    dns_server_->start();

    // The socket is now ready to receive the data. Let's post some request
    // message then. Set timeout to some reasonable value to make sure that
    // there is sufficient amount of time for the test to generate a
    // response.

    ASSERT_NO_THROW(ex->doExchange());
    ASSERT_NO_THROW(ex_bad->doExchange());
    io_service_->run();

    StatMap stats = {
        { "tkey-sent", 2 },
        { "tkey-success", 1 },
        { "tkey-timeout", 0 },
        { "tkey-error", 1 }
    };
    checkStats(server, stats);

    ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    ASSERT_NE(key_bad->getSecCtx().get(), GSS_C_NO_CONTEXT);
    ASSERT_NE(key->getSecCtx().get(), key_bad->getSecCtx().get());
}

/// @brief Check TKEY exchange fails when using same key.
TEST_F(TKeyExchangeTest, exchangeBadUseSameKey) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::SUCCESS);
    GssTsigKeyPtr key(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));

    dns_server_.reset(new DummyDNSServer(io_service_));
    dns_server_->start();

    // The socket is now ready to receive the data. Let's post some request
    // message then. Set timeout to some reasonable value to make sure that
    // there is sufficient amount of time for the test to generate a
    // response.

    ASSERT_NO_THROW(ex->doExchange());
    io_service_->run();

    ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    auto old_ctx = key->getSecCtx().get();

    TKeyExchangePtr ex_bad;

    ASSERT_THROW(ex_bad.reset(new TKeyExchange(io_service_, server, key,
                                               &callback, 100)), BadValue);

    StatMap stats = {
        { "tkey-sent", 1 },
        { "tkey-success", 1 },
        { "tkey-timeout", 0 },
        { "tkey-error", 0 }
    };
    checkStats(server, stats);

    ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    ASSERT_EQ(key->getSecCtx().get(), old_ctx);
}

/// @brief Check TKEY exchange fails when doing second exchange on same key.
TEST_F(TKeyExchangeTest, exchangeBadUseSecondExchange) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::SUCCESS);
    GssTsigKeyPtr key(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));

    dns_server_.reset(new DummyDNSServer(io_service_));
    dns_server_->start();

    // The socket is now ready to receive the data. Let's post some request
    // message then. Set timeout to some reasonable value to make sure that
    // there is sufficient amount of time for the test to generate a
    // response.

    ASSERT_NO_THROW(ex->doExchange());
    io_service_->run();

    ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    auto old_ctx = key->getSecCtx().get();

    ASSERT_THROW(ex->doExchange(), InvalidOperation);

    StatMap stats = {
        { "tkey-sent", 1 },
        { "tkey-success", 1 },
        { "tkey-timeout", 0 },
        { "tkey-error", 0 }
    };
    checkStats(server, stats);

    ASSERT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
    ASSERT_EQ(key->getSecCtx().get(), old_ctx);
}

/// @brief Check TKEY exchange does not start with bad client credentials.
TEST_F(TKeyExchangeTest, badCredentials) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setClientPrincipal("DHCP/foo.bar@FOO.BAR");
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::BAD_CREDENTIALS);
    GssTsigKeyPtr key(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));
    ASSERT_NO_THROW(ex->doExchange());

    StatMap stats = {
        { "tkey-sent", 0 },
        { "tkey-success", 0 },
        { "tkey-timeout", 0 },
        { "tkey-error", 1 }
    };
    checkStats(server, stats);

    EXPECT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
}

/// @brief Check TKEY exchange does not start with no server principal.
TEST_F(TKeyExchangeTest, noServerPrincipal) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    // This could give a different error but in all cases an error.
    server->setServerPrincipal("DNS/bad.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::OTHER);
    GssTsigKeyPtr key(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));
    ASSERT_NO_THROW(ex->doExchange());

    StatMap stats = {
        { "tkey-sent", 0 },
        { "tkey-success", 0 },
        { "tkey-timeout", 0 },
        { "tkey-error", 1 }
    };
    checkStats(server, stats);

    EXPECT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
}

/// @brief Check TKEY exchange fails with too short client credential lifetime.
TEST_F(TKeyExchangeTest, tooShortLifetime) {
    string key_name("1234.sig-blu.example.nil.");
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setKeyLifetime(0x7fff0000);
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);

    setKeytab();
    setAdministratorCCache();
    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::BAD_CREDENTIALS);
    GssTsigKeyPtr key(new GssTsigKey(key_name));

    ASSERT_EQ(key->getSecCtx().get(), GSS_C_NO_CONTEXT);

    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));

    dns_server_.reset(new DummyDNSServer(io_service_));
    dns_server_->start();

    // The socket is now ready to receive the data. Let's post some request
    // message then. Set timeout to some reasonable value to make sure that
    // there is sufficient amount of time for the test to generate a
    // response.

    ASSERT_NO_THROW(ex->doExchange());
    io_service_->run();

    StatMap stats = {
        { "tkey-sent", 1 },
        { "tkey-success", 0 },
        { "tkey-timeout", 0 },
        { "tkey-error", 1 }
    };
    checkStats(server, stats);

    EXPECT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
}

/// @brief Check TKEY exchange succeeds.
TEST_F(TKeyExchangeTest, exchangeSuccess) {
    string key_name("1234.sig-blu.example.nil.");
    GssTsigKeyPtr key(new GssTsigKey(key_name));
    DnsServerPtr server(new DnsServer("foo", {}, IOAddress(TEST_ADDRESS),
                                      TEST_PORT));
    server->setServerPrincipal("DNS/blu.example.nil@EXAMPLE.NIL");
    server->setKeyProto(IOFetch::Protocol::UDP);
    setKeytab();
    setAdministratorCCache();

    TKeyExchangeTestCallback callback(io_service_, TKeyExchange::SUCCESS);
    TKeyExchangePtr ex;

    ASSERT_NO_THROW(ex.reset(new TKeyExchange(io_service_, server, key,
                                              &callback, 100)));

    dns_server_.reset(new DummyDNSServer(io_service_));
    dns_server_->start();

    // The socket is now ready to receive the data. Let's post some request
    // message then. Set timeout to some reasonable value to make sure that
    // there is sufficient amount of time for the test to generate a
    // response.
    // This exchange should succeed.
    ASSERT_NO_THROW(ex->doExchange());
    io_service_->run();

    StatMap stats = {
        { "tkey-sent", 1 },
        { "tkey-success", 1 },
        { "tkey-timeout", 0 },
        { "tkey-error", 0 }
    };
    checkStats(server, stats);

    EXPECT_NE(key->getSecCtx().get(), GSS_C_NO_CONTEXT);
}

}