Commit | Line | Data |
---|---|---|
ebabbf58 | 1 | /* |
c0c0989a | 2 | * SPDX-License-Identifier: LGPL-2.1-only |
ebabbf58 MD |
3 | * |
4 | * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
5 | * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com> | |
ebabbf58 MD |
6 | */ |
7 | ||
ebabbf58 MD |
8 | #define _LGPL_SOURCE |
9 | #include <unistd.h> | |
10 | #include <pthread.h> | |
ebabbf58 | 11 | |
74cc1f59 MJ |
12 | #include <urcu/compiler.h> |
13 | ||
14 | #include "common/smp.h" | |
15 | ||
16 | static int num_possible_cpus_cache; | |
ebabbf58 MD |
17 | |
18 | #if (defined(__GLIBC__) || defined( __UCLIBC__)) | |
74cc1f59 | 19 | static void _get_num_possible_cpus(void) |
ebabbf58 MD |
20 | { |
21 | int result; | |
22 | ||
23 | /* On Linux, when some processors are offline | |
24 | * _SC_NPROCESSORS_CONF counts the offline | |
25 | * processors, whereas _SC_NPROCESSORS_ONLN | |
26 | * does not. If we used _SC_NPROCESSORS_ONLN, | |
27 | * getcpu() could return a value greater than | |
28 | * this sysconf, in which case the arrays | |
29 | * indexed by processor would overflow. | |
30 | */ | |
31 | result = sysconf(_SC_NPROCESSORS_CONF); | |
32 | if (result == -1) | |
33 | return; | |
74cc1f59 | 34 | num_possible_cpus_cache = result; |
ebabbf58 MD |
35 | } |
36 | ||
37 | #else | |
38 | ||
39 | /* | |
40 | * The MUSL libc implementation of the _SC_NPROCESSORS_CONF sysconf does not | |
41 | * return the number of configured CPUs in the system but relies on the cpu | |
42 | * affinity mask of the current task. | |
43 | * | |
44 | * So instead we use a strategy similar to GLIBC's, counting the cpu | |
45 | * directories in "/sys/devices/system/cpu" and fallback on the value from | |
46 | * sysconf if it fails. | |
47 | */ | |
48 | ||
49 | #include <dirent.h> | |
50 | #include <limits.h> | |
51 | #include <stdlib.h> | |
52 | #include <string.h> | |
53 | #include <sys/types.h> | |
54 | ||
55 | #define __max(a,b) ((a)>(b)?(a):(b)) | |
56 | ||
74cc1f59 | 57 | static void _get_num_possible_cpus(void) |
ebabbf58 MD |
58 | { |
59 | int result, count = 0; | |
60 | DIR *cpudir; | |
61 | struct dirent *entry; | |
62 | ||
63 | cpudir = opendir("/sys/devices/system/cpu"); | |
64 | if (cpudir == NULL) | |
65 | goto end; | |
66 | ||
67 | /* | |
68 | * Count the number of directories named "cpu" followed by and | |
69 | * integer. This is the same strategy as glibc uses. | |
70 | */ | |
71 | while ((entry = readdir(cpudir))) { | |
72 | if (entry->d_type == DT_DIR && | |
73 | strncmp(entry->d_name, "cpu", 3) == 0) { | |
74 | ||
75 | char *endptr; | |
76 | unsigned long cpu_num; | |
77 | ||
78 | cpu_num = strtoul(entry->d_name + 3, &endptr, 10); | |
79 | if ((cpu_num < ULONG_MAX) && (endptr != entry->d_name + 3) | |
80 | && (*endptr == '\0')) { | |
81 | count++; | |
82 | } | |
83 | } | |
84 | } | |
85 | ||
86 | end: | |
87 | /* | |
88 | * Get the sysconf value as a fallback. Keep the highest number. | |
89 | */ | |
90 | result = __max(sysconf(_SC_NPROCESSORS_CONF), count); | |
91 | ||
92 | /* | |
93 | * If both methods failed, don't store the value. | |
94 | */ | |
95 | if (result < 1) | |
96 | return; | |
74cc1f59 | 97 | num_possible_cpus_cache = result; |
ebabbf58 MD |
98 | } |
99 | #endif | |
74cc1f59 MJ |
100 | |
101 | /* | |
102 | * Returns the total number of CPUs in the system. If the cache is not yet | |
103 | * initialized, get the value from the system through sysconf and cache it. | |
104 | * | |
105 | * If the sysconf call fails, don't populate the cache and return 0. | |
106 | */ | |
107 | int num_possible_cpus(void) | |
108 | { | |
109 | if (caa_unlikely(!num_possible_cpus_cache)) | |
110 | _get_num_possible_cpus(); | |
111 | ||
112 | return num_possible_cpus_cache; | |
113 | } |