-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcpuinfo-deps.patch
289 lines (281 loc) · 7.68 KB
/
cpuinfo-deps.patch
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
diff -ur rpm-4.16.0/lib/depends.c rpm-4.16.0-cpuinfo/lib/depends.c
--- rpm-4.16.0/lib/depends.c 2020-11-08 20:19:15.625093667 +0100
+++ rpm-4.16.0-cpuinfo/lib/depends.c 2020-11-08 20:23:46.685893216 +0100
@@ -697,6 +697,16 @@
}
}
+ if (strstr(N, "cpuinfo(") == N) {
+ if (tsmem->cpuinfo == NULL)
+ rpmdsCpuinfoPool(rpmtsPool(ts), &(tsmem->cpuinfo));
+
+ if (tsmem->cpuinfo != NULL && rpmdsSearch(tsmem->cpuinfo, dep) >= 0) {
+ rpmdsNotify(dep, "(cpuinfo provides)", rc);
+ goto exit;
+ }
+ }
+
/* Dont look at pre-requisites of already installed packages */
if (!adding && isTransientReq(dsflags))
goto exit;
diff -ur rpm-4.16.0/lib/rpmds.c rpm-4.16.0-cpuinfo/lib/rpmds.c
--- rpm-4.16.0/lib/rpmds.c 2020-11-08 20:19:15.625093667 +0100
+++ rpm-4.16.0-cpuinfo/lib/rpmds.c 2020-11-08 20:16:25.941242497 +0100
@@ -2,6 +2,8 @@
* \file lib/rpmds.c
*/
#include "system.h"
+#include <popt.h>
+#include <ctype.h>
#include <sys/utsname.h>
#include <rpm/rpmtypes.h>
@@ -9,6 +11,9 @@
#include <rpm/rpmlog.h>
#include <rpm/rpmstrpool.h>
#include <rpm/rpmbase64.h>
+#include <rpm/rpmmacro.h>
+
+#include "rpmio_internal.h" /* XXX for rpmioSlurp */
#include "rpmds_internal.h"
@@ -1655,3 +1670,203 @@
{
return rpmdsUnamePool(NULL, dsp);
}
+
+struct cpuinfo_s {
+ const char *name;
+ int done;
+ int flags;
+};
+
+static struct cpuinfo_s ctags[] = {
+ { "processor", 0, 0 },
+ { "Processor", 0, 1 }, /* XXX armv5 */
+ { "vendor_id", 0, 0 },
+ { "cpu_family", 0, 1 },
+ { "model", 0, 1 },
+ { "model_name", 0, 0 },
+ { "stepping", 0, 1 },
+ { "cpu_MHz", 0, 1 },
+ { "CPU_implementer",0, 1 }, /* XXX armv5 */
+ { "CPU_architecture",0, 1 }, /* XXX armv5 */
+ { "CPU_variant", 0, 1 }, /* XXX armv5 */
+ { "CPU_part", 0, 1 }, /* XXX armv5 */
+ { "CPU_revision", 0, 1 }, /* XXX armv5 */
+ { "Hardware", 0, 2 }, /* XXX armv5 */
+ { "Revision", 0, 1 }, /* XXX armv5 */
+ { "Serial", 0, 1 }, /* XXX armv5 */
+ { "cache_size", 0, 1 },
+ { "physical_id", 0, 0 },
+ { "siblings", 0, 0 },
+ { "core_id", 0, 0 },
+ { "cpu_cores", 0, 0 },
+ { "fdiv_bug", 0, 3 },
+ { "hlt_bug", 0, 3 },
+ { "f00f_bug", 0, 3 },
+ { "coma_bug", 0, 3 },
+ { "fpu", 0, 0 }, /* XXX use flags attribute instead. */
+ { "fpu_exception", 0, 3 },
+ { "cpuid_level", 0, 0 },
+ { "wp", 0, 3 },
+ { "flags", 0, 4 },
+ { "Features", 0, 4 }, /* XXX armv5 */
+ { "bogomips", 0, 1 },
+ { "BogoMIPS", 0, 1 }, /* XXX armv5 */
+ { "clflush_size", 0, 1 },
+ { NULL, 0, -1 }
+};
+
+/**
+ * Return dependency format to use for a cpuinfo line.
+ * @param name field name
+ * @return type of format (0 == ignore, -1 == not found)
+ */
+static int rpmdsCpuinfoCtagFlags(const char * name)
+{
+ struct cpuinfo_s * ct;
+ int flags = -1;
+
+ for (ct = ctags; ct->name != NULL; ct++) {
+ if (strcmp(ct->name, name))
+ continue;
+ if (ct->done)
+ continue;
+ ct->done = 1; /* XXX insure single occurrence */
+ flags = ct->flags;
+ break;
+ }
+ return flags;
+}
+
+#define _PROC_CPUINFO "/proc/cpuinfo"
+
+int rpmdsCpuinfoPool(rpmstrPool pool, rpmds *dsp)
+{
+ char * cpuinfo_path = NULL;
+ struct cpuinfo_s * ct;
+ const char * NS = "cpuinfo";
+ char * iob = NULL;
+ char * f, * fe, * fend;
+ char * g, * ge;
+ char * t;
+ int rc = -1;
+
+ cpuinfo_path = rpmExpand("%{?_rpmds_cpuinfo_path}", NULL);
+ /* XXX may need to validate path existence somewhen. */
+ if (cpuinfo_path == NULL || *cpuinfo_path != '/') {
+ cpuinfo_path = _free(cpuinfo_path);
+ cpuinfo_path = xstrdup(_PROC_CPUINFO);
+ }
+
+ /* Reset done variables. */
+ for (ct = ctags; ct->name != NULL; ct++)
+ ct->done = 0;
+
+ rc = rpmioSlurp(cpuinfo_path, (uint8_t **) &iob, NULL);
+ if (rc != 0 || iob == NULL)
+ goto exit;
+
+ for (f = (char *)iob; *f != '\0'; f = fend) {
+ /* find EOL */
+ fe = f;
+ while (*fe != '\0' && !(*fe == '\n' || *fe == '\r'))
+ fe++;
+ ge = fe;
+ while (*fe != '\0' && (*fe == '\n' || *fe == '\r'))
+ *fe++ = '\0';
+ fend = fe;
+
+ /* rtrim on line. */
+ while (--ge > f && isspace(*ge))
+ *ge = '\0';
+
+ /* ltrim on line. */
+ while (*f && isspace(*f))
+ f++;
+
+ /* split on ':' */
+ fe = f;
+ while (*fe && *fe != ':')
+ fe++;
+ if (*fe == '\0')
+ continue;
+ g = fe + 1;
+
+ /* rtrim on field 1. */
+ *fe = '\0';
+ while (--fe > f && isspace(*fe))
+ *fe = '\0';
+ if (*f == '\0')
+ continue;
+
+ /* ltrim on field 2. */
+ while (*g && isspace(*g))
+ g++;
+ if (*g == '\0')
+ continue;
+
+ for (t = f; *t != '\0'; t++) {
+ if (isspace(*t))
+ *t = '_';
+ }
+
+ switch (rpmdsCpuinfoCtagFlags(f)) {
+ case -1: /* not found */
+ case 0: /* ignore */
+ default:
+ continue;
+ break;
+ case 1: /* Provides: cpuinfo(f) = g */
+ for (t = g; *t != '\0'; t++) {
+ if (isspace(*t) || *t == '(' || *t == ')')
+ *t = '_';
+ }
+ rc = rpmdsNSAdd(pool, dsp, NS, f, g, RPMSENSE_EQUAL);
+ if (rc < 0)
+ goto exit;
+ break;
+ case 2: /* Provides: cpuinfo(g) */
+ for (t = g; *t != '\0'; t++) {
+ if (isspace(*t) || *t == '(' || *t == ')')
+ *t = '_';
+ }
+ rc = rpmdsNSAdd(pool, dsp, NS, g, "", RPMSENSE_ANY);
+ if (rc < 0)
+ goto exit;
+ break;
+ case 3: /* if ("yes") Provides: cpuinfo(f) */
+ if (!strcmp(g, "yes")) {
+ rc = rpmdsNSAdd(pool, dsp, NS, f, "", RPMSENSE_ANY);
+ if (rc < 0)
+ goto exit;
+ }
+ break;
+ case 4: /* Provides: cpuinfo(g[i]) */
+ { char ** av = NULL;
+ int i = 0;
+ rc = poptParseArgvString(g, NULL, (const char ***)&av);
+ if (!rc && av != NULL)
+ while ((t = av[i++]) != NULL) {
+ rc = rpmdsNSAdd(pool, dsp, NS, t, "", RPMSENSE_ANY);
+ if (rc < 0)
+ goto exit;
+ }
+ t = NULL;
+ if (av != NULL)
+ free(av);
+ } break;
+ }
+ }
+
+exit:
+ _free(cpuinfo_path);
+ free(iob);
+ /* freeze the pool to save memory, but only if private pool */
+ if (*dsp && (*dsp)->pool != pool)
+ rpmstrPoolFreeze((*dsp)->pool, 0);
+ return (rc < 0) ? -1 : 0;
+}
+
+int rpmdsCpuinfo(rpmds * dsp)
+{
+ return rpmdsCpuinfoPool(NULL, dsp);
+}
diff -ur rpm-4.16.0/include/rpm/rpmds.h rpm-4.16.0-cpuinfo/include/rpm/rpmds.h
--- rpm-4.16.0/include/rpm/rpmds.h 2020-11-08 20:19:15.625093667 +0100
+++ rpm-4.16.0-cpuinfo/include/rpm/rpmds.h 2020-11-08 20:03:44.001865655 +0100
@@ -419,6 +419,13 @@
*/
int rpmdsUname(rpmds * dsp);
+/**
+ * Load cpuinfo provides into a dependency set.
+ * @retval *dsp (loaded) dependency set
+ * @return 0 on success
+ */
+int rpmdsCpuinfo(rpmds * dsp);
+
/** \ingroup rpmds
* Create and load a dependency set.
* @param pool shared string pool (or NULL for private pool)
@@ -483,6 +490,14 @@
*/
int rpmdsUnamePool(rpmstrPool pool, rpmds * dsp);
+/**
+ * Load cpuinfo provides into a dependency set.
+ * @param pool shared string pool (or NULL for private pool)
+ * @retval *dsp (loaded) dependency set
+ * @return 0 on success
+ */
+int rpmdsCpuinfoPool(rpmstrPool pool, rpmds * dsp);
+
typedef enum rpmrichOp_e {
RPMRICHOP_NONE = 0,
diff -ur rpm-4.16.0/lib/rpmts_internal.h rpm-4.16.0-cpuinfo/lib/rpmts_internal.h
--- rpm-4.16.0/lib/rpmts_internal.h 2020-11-08 20:19:15.625093667 +0100
+++ rpm-4.16.0-cpuinfo/lib/rpmts_internal.h 2020-11-08 20:22:24.382319931 +0100
@@ -22,6 +22,7 @@
rpmds rpmlib; /*!< rpmlib() dependency set. */
rpmds uname; /*!< uname() dependency set. */
+ rpmds cpuinfo; /*!< cpuinfo() dependency set. */
rpmte * order; /*!< Packages sorted by dependencies. */
int orderCount; /*!< No. of transaction elements. */
int orderAlloced; /*!< No. of allocated transaction elements. */