summaryrefslogtreecommitdiffhomepage
path: root/test/util/logging.cc
blob: 5d5e76c4608fb379c8329c3e420347244571422b (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
// Copyright 2018 The gVisor Authors.
//
// 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.

#include "test/util/logging.h"

#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>

namespace gvisor {
namespace testing {

namespace {

// We implement this here instead of using test_util to avoid cyclic
// dependencies.
int Write(int fd, const char* buf, size_t size) {
  size_t written = 0;
  while (written < size) {
    int res = write(fd, buf + written, size - written);
    if (res < 0 && errno == EINTR) {
      continue;
    } else if (res <= 0) {
      break;
    }

    written += res;
  }
  return static_cast<int>(written);
}

// Write 32-bit decimal number to fd.
int WriteNumber(int fd, uint32_t val) {
  constexpr char kDigits[] = "0123456789";
  constexpr int kBase = 10;

  // 10 chars for 32-bit number in decimal, 1 char for the NUL-terminator.
  constexpr int kBufferSize = 11;
  char buf[kBufferSize];

  // Convert the number to string.
  char* s = buf + sizeof(buf) - 1;
  size_t size = 0;

  *s = '\0';
  do {
    s--;
    size++;

    *s = kDigits[val % kBase];
    val /= kBase;
  } while (val);

  return Write(fd, s, size);
}

}  // namespace

void CheckFailure(const char* cond, size_t cond_size, const char* msg,
                  size_t msg_size, bool include_errno) {
  int saved_errno = errno;

  constexpr char kCheckFailure[] = "Check failed: ";
  Write(2, kCheckFailure, sizeof(kCheckFailure) - 1);
  Write(2, cond, cond_size);

  if (msg != nullptr) {
    Write(2, ": ", 2);
    Write(2, msg, msg_size);
  }

  if (include_errno) {
    constexpr char kErrnoMessage[] = " (errno ";
    Write(2, kErrnoMessage, sizeof(kErrnoMessage) - 1);
    WriteNumber(2, saved_errno);
    Write(2, ")", 1);
  }

  Write(2, "\n", 1);

  abort();
}

}  // namespace testing
}  // namespace gvisor