gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
helpers.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "kern/linux/helpers.hh"
39 
40 #include "arch/isa_traits.hh"
41 #include "config/the_isa.hh"
42 #include "cpu/thread_context.hh"
43 #include "mem/port_proxy.hh"
44 #include "sim/byteswap.hh"
45 #include "sim/system.hh"
46 
47 struct DmesgEntry {
48  uint64_t ts_nsec;
49  uint16_t len;
50  uint16_t text_len;
51  uint16_t dict_len;
52  uint8_t facility;
53  uint8_t flags;
55 
56 static int
57 dumpDmesgEntry(const uint8_t *base, const uint8_t *end, const ByteOrder bo,
58  std::ostream &os)
59 {
60  const size_t max_length = end - base;
61  DmesgEntry de;
62 
63  if (max_length < sizeof(de)) {
64  warn("Malformed dmesg entry\n");
65  return -1;
66  }
67 
68  memcpy(&de, base, sizeof(de));
69  de.ts_nsec = gtoh(de.ts_nsec, bo);
70  de.len = gtoh(de.len, bo);
71  de.text_len = gtoh(de.text_len, bo);
72 
73  if (de.len < sizeof(de) ||
74  max_length < de.len ||
75  max_length < sizeof(DmesgEntry) + de.text_len) {
76 
77  warn("Malformed dmesg entry:\n");
78  warn("\tMax length: %i\n", max_length);
79  warn("\tde.len: %i\n", de.len);
80  warn("\tde.text_len: %i\n", de.text_len);
81  return -1;
82  }
83 
84  ccprintf(os, "[%.6f] ", de.ts_nsec * 10e-9);
85  os.write((char *)base + sizeof(de), de.text_len);
86  os << std::endl;
87 
88  return de.len;
89 }
90 
91 void
92 Linux::dumpDmesg(ThreadContext *tc, std::ostream &os)
93 {
94  System *system = tc->getSystemPtr();
95  const ByteOrder bo = system->getGuestByteOrder();
96  const auto *symtab = system->workload->symtab(tc);
97  PortProxy &proxy = tc->getVirtProxy();
98 
99  Addr addr_lb = 0, addr_lb_len = 0, addr_first = 0, addr_next = 0;
100  const bool found_symbols =
101  symtab->findAddress("__log_buf", addr_lb) &&
102  symtab->findAddress("log_buf_len", addr_lb_len) &&
103  symtab->findAddress("log_first_idx", addr_first) &&
104  symtab->findAddress("log_next_idx", addr_next);
105 
106  if (!found_symbols) {
107  warn("Failed to find kernel dmesg symbols.\n");
108  return;
109  }
110 
111  uint32_t log_buf_len =
112  proxy.read<uint32_t>(addr_lb_len, TheISA::GuestByteOrder);
113  uint32_t log_first_idx =
114  proxy.read<uint32_t>(addr_first, TheISA::GuestByteOrder);
115  uint32_t log_next_idx =
116  proxy.read<uint32_t>(addr_next, TheISA::GuestByteOrder);
117 
118  if (log_first_idx >= log_buf_len || log_next_idx >= log_buf_len) {
119  warn("dmesg pointers/length corrupted\n");
120  return;
121  }
122 
123  // Normalize and read the dmesg ring buffer
124  std::vector<uint8_t> log_buf(log_buf_len);
125  int length;
126  if (log_first_idx < log_next_idx) {
127  length = log_next_idx - log_first_idx;
128  if (length < 0 || length > log_buf.size()) {
129  warn("Unexpected dmesg buffer length\n");
130  return;
131  }
132  proxy.readBlob(addr_lb + log_first_idx, log_buf.data(), length);
133  } else {
134  const int length_2 = log_buf_len - log_first_idx;
135  if (length_2 < 0 || length_2 + log_next_idx > log_buf.size()) {
136  warn("Unexpected dmesg buffer length\n");
137  return;
138  }
139  length = log_buf_len;
140  proxy.readBlob(addr_lb + log_first_idx, log_buf.data(), length_2);
141  proxy.readBlob(addr_lb, log_buf.data() + length_2, log_next_idx);
142  }
143 
144  // Print dmesg buffer content
145  const uint8_t *cur = log_buf.data(), *end = log_buf.data() + length;
146  while (cur < end) {
147  int ret = dumpDmesgEntry(cur, end, bo, os);
148  if (ret < 0)
149  return;
150  cur += ret;
151  }
152 }
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
virtual System * getSystemPtr()=0
virtual const Loader::SymbolTable * symtab(ThreadContext *tc)=0
T gtoh(T value, ByteOrder guest_byte_order)
Definition: byteswap.hh:162
uint8_t facility
Definition: helpers.cc:52
struct DmesgEntry M5_ATTR_PACKED
void dumpDmesg(ThreadContext *tc, std::ostream &os)
Dump Linux&#39;s dmesg log buffer to the an output stream.
static int dumpDmesgEntry(const uint8_t *base, const uint8_t *end, const ByteOrder bo, std::ostream &os)
Definition: helpers.cc:57
virtual PortProxy & getVirtProxy()=0
T read(Addr address) const
Read sizeof(T) bytes from address and return as object T.
Definition: port_proxy.hh:282
uint16_t dict_len
Definition: helpers.cc:51
Definition: system.hh:72
ByteOrder getGuestByteOrder() const
Get the guest byte order.
Definition: system.hh:254
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Bitfield< 17 > os
Definition: misc.hh:803
uint8_t flags
Definition: helpers.cc:53
PortProxy Object Declaration.
uint64_t ts_nsec
Definition: helpers.cc:48
ByteOrder
Definition: types.hh:245
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
Workload * workload
OS kernel.
Definition: system.hh:213
uint16_t len
Definition: helpers.cc:49
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Bitfield< 15 > system
Definition: misc.hh:997
void readBlob(Addr addr, void *p, int size) const
Higher level interfaces based on the above.
Definition: port_proxy.hh:177
This object is a proxy for a port or other object which implements the functional response protocol...
Definition: port_proxy.hh:80
Bitfield< 9 > e
Bitfield< 25, 21 > bo
Definition: types.hh:62
Bitfield< 3 > de
Definition: misc.hh:635
uint16_t text_len
Definition: helpers.cc:50
uint8_t length
Definition: inet.hh:329
#define warn(...)
Definition: logging.hh:208
const ByteOrder GuestByteOrder
Definition: isa_traits.hh:51

Generated on Thu May 28 2020 16:21:33 for gem5 by doxygen 1.8.13