File: coretemp.cc

package info (click to toggle)
xosview 1.24-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,184 kB
  • sloc: cpp: 11,975; makefile: 154; ansic: 32; awk: 13; sh: 8
file content (390 lines) | stat: -rw-r--r-- 11,603 bytes parent folder | download | duplicates (2)
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
//
//  Copyright (c) 2008-2014 by Tomi Tapper <tomi.o.tapper@jyu.fi>
//
//  Read CPU temperature readings from /sys and display actual temperature.
//  If actual >= high, actual temp changes color to indicate alarm.
//
//  File based on linux/lmstemp.* by
//  Copyright (c) 2000, 2006 by Leopold Toetsch <lt@toetsch.at>
//
//  This file may be distributed under terms of the GPL
//
//

#include "coretemp.h"
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <glob.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <fstream>
#include <iostream>
#include <string>
#include "stringutils.h"

#define PATH_SIZE 128

static const char SYS_HWMON[] = "/sys/class/hwmon";
static const char SYS_CORETEMP[] = "/sys/devices/platform/coretemp";
static const char SYS_VIATEMP[] = "/sys/devices/platform/via_cputemp";


CoreTemp::CoreTemp( XOSView *parent, const char *label, const char *caption, int pkg, int cpu )
  : FieldMeter( parent, 3, label, caption, 1, 1, 1 ), _pkg(pkg), _cpu(cpu) {
  metric_ = true;
  _high = 0;
}

CoreTemp::~CoreTemp( void ) {

}

void CoreTemp::checkResources( void ) {
  FieldMeter::checkResources();

  _actcolor  = parent_->allocColor( parent_->getResource( "coretempActColor" ) );
  _highcolor = parent_->allocColor( parent_->getResource( "coretempHighColor") );
  setfieldcolor( 0, _actcolor );
  setfieldcolor( 1, parent_->getResource( "coretempIdleColor") );
  setfieldcolor( 2, _highcolor );
  priority_ = atoi( parent_->getResource( "coretempPriority" ) );
  SetUsedFormat( parent_->getResource( "coretempUsedFormat" ) );

  findSysFiles();
  if ( _cpus.empty() ) {  // should not happen at this point
    std::cerr << "BUG: Could not determine sysfs file(s) for coretemp." << std::endl;
    parent_->done(1);
  }

  // Get TjMax and use it for total, if available.
  // Not found on k8temp and via-cputemp.
  std::ifstream file;
  std::string dummy = _cpus.front();
  dummy.replace(dummy.find_last_of('_'), 6, "_crit");
  file.open(dummy.c_str());
  if ( file.good() ) {
    file >> total_;
    file.close();
    total_ /= 1000.0;
  }
  else
    total_ = atoi( parent_->getResourceOrUseDefault("coretempHighest", "100") );

  // Use tTarget/tCtl (when maximum cooling needs to be turned on) as high,
  // if found. On older Cores this MSR is empty and kernel sets this equal to
  // tjMax. Not found on k8temp and via-cputemp. On k10temp this is fixed value.
  char l[32];
  dummy = _cpus.front();
  dummy.replace(dummy.find_last_of('_'), 6, "_max");
  file.open(dummy.c_str());
  if ( file.good() ) {
    file >> _high;
    file.close();
    _high /= 1000.0;
    snprintf(l, 32, "ACT(\260C)/%d/%d", (int)_high, (int)total_);
  }
  else
    _high = total_;

  if (_high == total_) {  // No tTarget/tCtl
    // Use user-defined high, or "no high".
    const char *high = parent_->getResourceOrUseDefault("coretempHigh", NULL);
    if (high) {
      _high = atoi(high);
      snprintf(l, 32, "ACT(\260C)/%d/%d", (int)_high, (int)total_);
    }
    else
      snprintf(l, 32, "ACT(\260C)/HIGH/%d", (int)total_);
  }
  legend(l);
}

/* Find absolute paths of files to be used. */
void CoreTemp::findSysFiles( void ) {
  int cpu = 0;
  unsigned int i = 0, cpucount = countCores(_pkg);
  char name[PATH_SIZE];
  std::string dummy;
  std::ifstream file;
  glob_t gbuf;
  DIR *dir;
  struct dirent *dent;
  struct stat buf;

  // Intel and VIA CPUs.
  // Platform device sysfs node changed in kernel 3.15 -> try both paths.
  snprintf(name, PATH_SIZE, "%s.%d/temp*_label", SYS_CORETEMP, _pkg);
  glob(name, 0, NULL, &gbuf);
  snprintf(name, PATH_SIZE, "%s.%d/hwmon/hwmon*/temp*_label", SYS_CORETEMP, _pkg);
  glob(name, GLOB_APPEND, NULL, &gbuf);
  snprintf(name, PATH_SIZE, "%s.%d/temp*_label", SYS_VIATEMP, _pkg);
  glob(name, GLOB_APPEND, NULL, &gbuf);
  snprintf(name, PATH_SIZE, "%s.%d/hwmon/hwmon*/temp*_label", SYS_VIATEMP, _pkg);
  glob(name, GLOB_APPEND, NULL, &gbuf);
  for (i = 0; i < gbuf.gl_pathc; i++) {
    file.open(gbuf.gl_pathv[i]);
    file >> dummy >> cpu;  // "Core n" or "Physical id n"
    file.close();
    if ( strncmp(dummy.c_str(), "Core", 4) == 0 ) {
      strcpy(strrchr(gbuf.gl_pathv[i], '_'), "_input");
      if (_cpu < 0 || cpu == _cpu)
        _cpus.push_back(gbuf.gl_pathv[i]);
    }
  }
  globfree(&gbuf);
  if ( !_cpus.empty() )
    return;

  // AMD CPUs.
  if ( !(dir = opendir(SYS_HWMON)) ) {
    std::cerr << "Can not open " << SYS_HWMON << " directory." << std::endl;
    parent_->done(1);
    return;
  }
  while ( (dent = readdir(dir)) ) {
    if ( !strncmp(dent->d_name, ".", 1) ||
         !strncmp(dent->d_name, "..", 2) )
      continue;

    snprintf_or_abort(name, PATH_SIZE, "%s/%s/name", SYS_HWMON, dent->d_name);
    file.open(name);
    if (!file) {
      // Older kernels place the name in device directory.
      snprintf_or_abort(name, PATH_SIZE,
          "%s/%s/device/name", SYS_HWMON, dent->d_name);
      file.open(name);
      if (!file)
        continue;
    }
    file >> dummy;
    file.close();

    if ( strncmp(dummy.c_str(), "k8temp", 6) == 0 ||
         strncmp(dummy.c_str(), "k10temp", 7) == 0 ) {
      if (cpu++ != _pkg)
        continue;
      // K8 core has two sensors with index starting from 1
      // K10 has only one sensor per physical CPU
      if (_cpu < 0) {  // avg or max
        for (i = 1; i <= cpucount; i++) {
          snprintf_or_abort(name, PATH_SIZE, "%s/%s/temp%d_input",
                   SYS_HWMON, dent->d_name, i);
          if (!( stat(name, &buf) == 0 && S_ISREG(buf.st_mode) ))
            snprintf_or_abort(name, PATH_SIZE, "%s/%s/device/temp%d_input",
                     SYS_HWMON, dent->d_name, i);
          _cpus.push_back(name);
        }
      }
      else {  // single sensor
        snprintf_or_abort(name, PATH_SIZE, "%s/%s/temp%d_input",
                 SYS_HWMON, dent->d_name, _cpu + 1);
        if (!( stat(name, &buf) == 0 && S_ISREG(buf.st_mode) ))
          snprintf_or_abort(name, PATH_SIZE, "%s/%s/device/temp%d_input",
                   SYS_HWMON, dent->d_name, i);
        _cpus.push_back(name);
      }
    }
  }
  closedir(dir);
}

void CoreTemp::checkevent( void ) {
  getcoretemp();
  drawfields();
}

void CoreTemp::getcoretemp( void ) {
  std::ifstream file;
  double dummy;
  fields_[0] = 0.0;

  if (_cpu >= 0) {  // only one core
    file.open(_cpus.back().c_str());
    if (!file) {
      std::cerr << "Can not open file : " << _cpus.back().c_str() << std::endl;
      parent_->done(1);
      return;
    }
    file >> fields_[0];
    file.close();
  }
  else if (_cpu == -1) {  // average
    for (uint i = 0; i < _cpus.size(); i++) {
      file.open(_cpus[i].c_str());
      if (!file) {
        std::cerr << "Can not open file : " << _cpus[i].c_str() << std::endl;
        parent_->done(1);
        return;
      }
      file >> dummy;
      file.close();
      fields_[0] += dummy;
    }
    fields_[0] /= (double)_cpus.size();
  }
  else if (_cpu == -2) {  // maximum
    for (uint i = 0; i < _cpus.size(); i++) {
      file.open(_cpus[i].c_str());
      if (!file) {
        std::cerr << "Can not open file : " << _cpus[i].c_str() << std::endl;
        parent_->done(1);
        return;
      }
      file >> dummy;
      file.close();
      if (dummy > fields_[0])
        fields_[0] = dummy;
    }
  }
  else {  // should not happen
    std::cerr << "Unknown CPU core number " << _cpu << " in coretemp." << std::endl;
    parent_->done(1);
    return;
  }

  fields_[0] /= 1000.0;
  setUsed( fields_[0], total_ );

  if (fields_[0] < 0)
    fields_[0] = 0.0;
  fields_[1] = _high - fields_[0];
  if (fields_[1] < 0) { // alarm: T > high
    fields_[1] = 0;
    if (colors_[0] != _highcolor) {
      setfieldcolor( 0, _highcolor );
      drawlegend();
    }
  }
  else {
    if (colors_[0] != _actcolor) {
      setfieldcolor( 0, _actcolor );
      drawlegend();
    }
  }

  fields_[2] = total_ - fields_[1] - fields_[0];
  if (fields_[2] < 0)
    fields_[2] = 0;
}

/* Count sensors available to coretemp in the given package. */
unsigned int CoreTemp::countCores( unsigned int pkg )
{
  glob_t gbuf;
  char s[PATH_SIZE];
  unsigned int i, count = 0, cpu = 0;
  DIR *dir;
  struct dirent *dent;
  struct stat buf;
  std::string dummy;
  std::ifstream file;

  // Intel or VIA CPU.
  // Platform device sysfs node changed in kernel 3.15 -> try both paths.
  snprintf(s, PATH_SIZE, "%s.%d/temp*_label", SYS_CORETEMP, pkg);
  glob(s, 0, NULL, &gbuf);
  snprintf(s, PATH_SIZE, "%s.%d/hwmon/hwmon*/temp*_label", SYS_CORETEMP, pkg);
  glob(s, GLOB_APPEND, NULL, &gbuf);
  snprintf(s, PATH_SIZE, "%s.%d/temp*_label", SYS_VIATEMP, pkg);
  glob(s, GLOB_APPEND, NULL, &gbuf);
  snprintf(s, PATH_SIZE, "%s.%d/hwmon/hwmon*/temp*_label", SYS_VIATEMP, pkg);
  glob(s, GLOB_APPEND, NULL, &gbuf);
  // loop through paths in gbuf and check if it is a core or package
  for (i = 0; i < gbuf.gl_pathc; i++) {
    file.open(gbuf.gl_pathv[i]);
    file >> dummy;
    file.close();
    if ( strncmp(dummy.c_str(), "Core", 4) == 0 )
      count++;
  }
  globfree(&gbuf);
  if (count > 0)
    return count;

  // AMD CPU.
  if ( !(dir = opendir(SYS_HWMON)) )
    return 0;
  // loop through hwmon devices and when AMD sensor is found, count its inputs
  while ( (dent = readdir(dir)) ) {
    if ( !strncmp(dent->d_name, ".", 1) ||
         !strncmp(dent->d_name, "..", 2) )
      continue;
    snprintf_or_abort(s, PATH_SIZE, "%s/%s/name", SYS_HWMON, dent->d_name);
    if (!( stat(s, &buf) == 0 && S_ISREG(buf.st_mode) )) {
      // Older kernels place the name in device directory.
      snprintf_or_abort(s, PATH_SIZE,
          "%s/%s/device/name", SYS_HWMON, dent->d_name);
    }

    file.open(s);
    if ( file.good() ) {
      file >> dummy;
      file.close();
      if ( strncmp(dummy.c_str(), "k8temp", 6) == 0 ||
           strncmp(dummy.c_str(), "k10temp", 7) == 0 ) {
        if (cpu++ < pkg)
          continue;
        snprintf_or_abort(s, PATH_SIZE,
            "%s/%s/temp*_input", SYS_HWMON, dent->d_name);
        glob(s, 0, NULL, &gbuf);
        snprintf_or_abort(s, PATH_SIZE,
            "%s/%s/device/temp*_input", SYS_HWMON, dent->d_name);
        glob(s, GLOB_APPEND, NULL, &gbuf);
        count += gbuf.gl_pathc;
        globfree(&gbuf);
      }
    }
  }
  closedir(dir);
  return count;
}

/* Count physical CPUs with sensors. */
unsigned int CoreTemp::countCpus( void )
{
  glob_t gbuf;
  char s[PATH_SIZE];
  unsigned int count = 0;
  DIR *dir;
  struct dirent *dent;
  struct stat buf;
  std::string dummy;
  std::ifstream file;

  // Count Intel and VIA packages.
  snprintf(s, PATH_SIZE, "%s.*", SYS_CORETEMP);
  glob(s, 0, NULL, &gbuf);
  snprintf(s, PATH_SIZE, "%s.*", SYS_VIATEMP);
  glob(s, GLOB_APPEND, NULL, &gbuf);
  count += gbuf.gl_pathc;
  globfree(&gbuf);
  if (count > 0)
    return count;

  // Count AMD packages.
  if ( !(dir = opendir(SYS_HWMON)) )
    return 0;
  while ( (dent = readdir(dir)) ) {
    if ( !strncmp(dent->d_name, ".", 1) ||
         !strncmp(dent->d_name, "..", 2) )
      continue;
    snprintf_or_abort(s, PATH_SIZE, "%s/%s/name", SYS_HWMON, dent->d_name);
    if (!( stat(s, &buf) == 0 && S_ISREG(buf.st_mode) ))
      // Older kernels place the name in device directory.
      snprintf_or_abort(s, PATH_SIZE,
          "%s/%s/device/name", SYS_HWMON, dent->d_name);
    file.open(s);
    if ( file.good() ) {
      file >> dummy;
      file.close();
      if ( strncmp(dummy.c_str(), "k8temp", 6) == 0 ||
           strncmp(dummy.c_str(), "k10temp", 7) == 0 )
        count++;
    }
  }
  closedir(dir);
  return count;
}