]> git.ipfire.org Git - ipfire.org.git/blame - src/backend/fireinfo.py
Merge branch 'master' of ssh://people.ipfire.org/pub/git/ipfire.org
[ipfire.org.git] / src / backend / fireinfo.py
CommitLineData
66862195
MT
1#!/usr/bin/python
2
66862195 3import datetime
e400e37d 4import iso3166
66862195
MT
5import logging
6import re
7
11347e46 8from . import database
6e9f5252 9from . import hwdata
11347e46
MT
10from . import util
11from .misc import Object
66862195
MT
12
13N_ = lambda x: x
14
15CPU_VENDORS = {
16 "AMDisbetter!" : "AMD",
17 "AuthenticAMD" : "AMD",
18 "CentaurHauls" : "VIA",
19 "CyrixInstead" : "Cyrix",
20 "GenuineIntel" : "Intel",
21 "TransmetaCPU" : "Transmeta",
22 "GenuineTMx86" : "Transmeta",
23 "Geode by NSC" : "NSC",
24 "NexGenDriven" : "NexGen",
25 "RiseRiseRise" : "Rise",
26 "SiS SiS SiS" : "SiS",
27 "SiS SiS SiS " : "SiS",
28 "UMC UMC UMC " : "UMC",
29 "VIA VIA VIA " : "VIA",
30 "Vortex86 SoC" : "Vortex86",
31}
32
33CPU_STRINGS = (
05bd7298
MT
34 ### AMD ###
35 # APU
3c855735 36 (r"AMD (Sempron)\(tm\) (\d+) APU with Radeon\(tm\) R\d+", r"AMD \1 \2 APU"),
c85ebbc4 37 (r"AMD ([\w\-]+) APU with Radeon\(tm\) HD Graphics", r"AMD \1 APU"),
74638712 38 (r"AMD ([\w\-]+) Radeon R\d+, \d+ Compute Cores \d+C\+\d+G", r"AMD \1 APU"),
05bd7298
MT
39 # Athlon
40 (r"AMD Athlon.* II X2 ([a-z0-9]+).*", r"AMD Athlon X2 \1"),
41 (r"AMD Athlon\(tm\) 64 Processor (\w+)", r"AMD Athlon64 \1"),
42 (r"AMD Athlon\(tm\) 64 X2 Dual Core Processor (\w+)", r"AMD Athlon64 X2 \1"),
66862195
MT
43 (r"(AMD Athlon).*(XP).*", r"\1 \2"),
44 (r"(AMD Phenom).* ([0-9]+) .*", r"\1 \2"),
45 (r"(AMD Phenom).*", r"\1"),
46 (r"(AMD Sempron).*", r"\1"),
05bd7298
MT
47 # Geode
48 (r"Geode\(TM\) Integrated Processor by AMD PCS", r"AMD Geode"),
66862195 49 (r"(Geode).*", r"\1"),
74638712
MT
50 # Mobile
51 (r"Mobile AMD (Athlon|Sempron)\(tm\) Processor (\d+\+?)", r"AMD \1-M \2"),
66862195
MT
52
53 # Intel
54 (r"Intel\(R\) (Atom|Celeron).*CPU\s*([A-Z0-9]+) .*", r"Intel \1 \2"),
55 (r"(Intel).*(Celeron).*", r"\1 \2"),
05bd7298
MT
56 (r"Intel\(R\)? Core\(TM\)?2 Duo *CPU .* ([A-Z0-9]+) .*", r"Intel C2D \1"),
57 (r"Intel\(R\)? Core\(TM\)?2 Duo CPU (\w+)", r"Intel C2D \1"),
58 (r"Intel\(R\)? Core\(TM\)?2 CPU .* ([A-Z0-9]+) .*", r"Intel C2 \1"),
59 (r"Intel\(R\)? Core\(TM\)?2 Quad *CPU .* ([A-Z0-9]+) .*", r"Intel C2Q \1"),
60 (r"Intel\(R\)? Core\(TM\)? (i[753]\-\w+) CPU", r"Intel Core \1"),
61 (r"Intel\(R\)? Xeon\(R\)? CPU (\w+) (0|v\d+)", r"Intel Xeon \1 \2"),
62 (r"Intel\(R\)? Xeon\(R\)? CPU\s+(\w+)", r"Intel Xeon \1"),
66862195
MT
63 (r"(Intel).*(Xeon).*", r"\1 \2"),
64 (r"Intel.* Pentium.* (D|4) .*", r"Intel Pentium \1"),
65 (r"Intel.* Pentium.* Dual .* ([A-Z0-9]+) .*", r"Intel Pentium Dual \1"),
66 (r"Pentium.* Dual-Core .* ([A-Z0-9]+) .*", r"Intel Pentium Dual \1"),
67 (r"(Pentium I{2,3}).*", r"Intel \1"),
68 (r"(Celeron \(Coppermine\))", r"Intel Celeron"),
69
05bd7298
MT
70 # NSC
71 (r"Geode\(TM\) Integrated Processor by National Semi", r"NSC Geode"),
72
66862195
MT
73 # VIA
74 (r"(VIA \w*).*", r"\1"),
75
76 # Qemu
77 (r"QEMU Virtual CPU version .*", r"QEMU CPU"),
78
79 # ARM
80 (r"Feroceon .*", r"ARM Feroceon"),
81)
82
83IGNORED_DEVICES = ["usb",]
84
85class ProfileDict(object):
86 def __init__(self, data):
87 self._data = data
88
89
90class ProfileNetwork(ProfileDict):
91 def __eq__(self, other):
95ae21d1
MT
92 if other is None:
93 return False
94
66862195
MT
95 if not self.has_red == other.has_red:
96 return False
97
98 if not self.has_green == other.has_green:
99 return False
100
101 if not self.has_orange == other.has_orange:
102 return False
103
104 if not self.has_blue == other.has_blue:
105 return False
106
107 return True
108
109 def __iter__(self):
110 ret = []
111
112 for zone in ("red", "green", "orange", "blue"):
113 if self.has_zone(zone):
114 ret.append(zone)
115
116 return iter(ret)
117
118 def has_zone(self, name):
119 return self._data.get("has_%s" % name)
120
121 @property
122 def has_red(self):
123 return self._data.get("has_red", False)
124
125 @property
126 def has_green(self):
127 return self._data.get("has_green", False)
128
129 @property
130 def has_orange(self):
131 return self._data.get("has_orange", False)
132
133 @property
134 def has_blue(self):
135 return self._data.get("has_blue", False)
136
137
138class Processor(Object):
139 def __init__(self, backend, id, data=None, clock_speed=None, bogomips=None):
140 Object.__init__(self, backend)
141
142 self.id = id
143 self.__data = data
144 self.__clock_speed = clock_speed
145 self.__bogomips = bogomips
146
147 def __str__(self):
148 s = []
149
240e9253 150 if self.model_string and not self.model_string.startswith(self.vendor):
66862195
MT
151 s.append(self.vendor)
152 s.append("-")
153
240e9253 154 s.append(self.model_string or "Generic")
66862195
MT
155
156 if self.core_count > 1:
157 s.append("x%s" % self.core_count)
158
159 return " ".join(s)
160
161 @property
162 def data(self):
163 if self.__data is None:
164 self.__data = self.db.get("SELECT * FROM fireinfo_processors \
165 WHERE id = %s", self.id)
166
167 return self.__data
168
169 @property
170 def vendor(self):
171 try:
172 return CPU_VENDORS[self.data.vendor]
173 except KeyError:
174 return self.data.vendor
175
574ce4e6
MT
176 @property
177 def family(self):
178 return self.data.family
179
66862195
MT
180 @property
181 def model(self):
182 return self.data.model
183
574ce4e6
MT
184 @property
185 def stepping(self):
186 return self.data.stepping
187
66862195
MT
188 @property
189 def model_string(self):
240e9253
MT
190 if self.data.model_string:
191 s = self.data.model_string.split()
66862195 192
240e9253 193 return " ".join((e for e in s if e))
66862195
MT
194
195 @property
196 def flags(self):
197 return self.data.flags
198
199 def has_flag(self, flag):
200 return flag in self.flags
201
202 def uses_ht(self):
8137d982 203 if self.vendor == "Intel" and self.family == 6 and self.model in (15, 55, 76, 77):
574ce4e6
MT
204 return False
205
66862195
MT
206 return self.has_flag("ht")
207
208 @property
209 def core_count(self):
210 return self.data.core_count
211
212 @property
213 def count(self):
214 if self.uses_ht():
215 return self.core_count // 2
216
217 return self.core_count
218
219 @property
220 def clock_speed(self):
221 return self.__clock_speed
222
223 def format_clock_speed(self):
224 if not self.clock_speed:
225 return
226
227 if self.clock_speed < 1000:
228 return "%dMHz" % self.clock_speed
229
230 return "%.2fGHz" % round(self.clock_speed / 1000, 2)
231
232 @property
233 def bogomips(self):
234 return self.__bogomips
235
236 @property
237 def capabilities(self):
238 caps = [
239 ("64bit", self.has_flag("lm")),
240 ("aes", self.has_flag("aes")),
241 ("nx", self.has_flag("nx")),
242 ("pae", self.has_flag("pae") or self.has_flag("lpae")),
243 ("rdrand", self.has_flag("rdrand")),
244 ]
245
246 # If the system is already running in a virtual environment,
247 # we cannot correctly detect if the CPU supports svm or vmx
248 if self.has_flag("hypervisor"):
249 caps.append(("virt", None))
250 else:
251 caps.append(("virt", self.has_flag("vmx") or self.has_flag("svm")))
252
253 return caps
254
255 def format_model(self):
240e9253 256 s = self.model_string or ""
05bd7298
MT
257
258 # Remove everything after the @: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz
259 s, sep, rest = s.partition("@")
260
66862195
MT
261 for pattern, repl in CPU_STRINGS:
262 if re.match(pattern, s) is None:
263 continue
05bd7298
MT
264
265 s = re.sub(pattern, repl, s)
266 break
66862195
MT
267
268 # Otherwise remove the symbols
05bd7298 269 for i in ("C", "R", "TM", "tm"):
66862195
MT
270 s = s.replace("(%s)" % i, "")
271
05bd7298
MT
272 # Replace too long strings with shorter ones
273 pairs = (
274 ("Quad-Core Processor", ""),
275 ("Dual-Core Processor", ""),
276 ("Processor", "CPU"),
277 ("processor", "CPU"),
278 )
279 for k, v in pairs:
280 s = s.replace(k, v)
281
282 # Remove too many spaces
283 s = " ".join((e for e in s.split() if e))
284
66862195
MT
285 return s
286
287 @property
288 def friendly_string(self):
289 s = []
290
291 model = self.format_model()
240e9253
MT
292 if model:
293 s.append(model)
66862195
MT
294
295 clock_speed = self.format_clock_speed()
296 if clock_speed:
297 s.append("@ %s" % clock_speed)
298
299 if self.count > 1:
300 s.append("x%s" % self.count)
301
302 return " ".join(s)
303
304
305class Device(Object):
306 classid2name = {
307 "pci" : {
308 "00" : N_("Unclassified"),
309 "01" : N_("Mass storage"),
310 "02" : N_("Network"),
311 "03" : N_("Display"),
312 "04" : N_("Multimedia"),
313 "05" : N_("Memory controller"),
314 "06" : N_("Bridge"),
315 "07" : N_("Communication"),
316 "08" : N_("Generic system peripheral"),
317 "09" : N_("Input device"),
318 "0a" : N_("Docking station"),
319 "0b" : N_("Processor"),
320 "0c" : N_("Serial bus"),
321 "0d" : N_("Wireless"),
322 "0e" : N_("Intelligent controller"),
323 "0f" : N_("Satellite communications controller"),
324 "10" : N_("Encryption"),
325 "11" : N_("Signal processing controller"),
326 "ff" : N_("Unassigned class"),
327 },
328
329 "usb" : {
330 "00" : N_("Unclassified"),
331 "01" : N_("Multimedia"),
332 "02" : N_("Communication"),
333 "03" : N_("Input device"),
334 "05" : N_("Generic system peripheral"),
335 "06" : N_("Image"),
336 "07" : N_("Printer"),
337 "08" : N_("Mass storage"),
338 "09" : N_("Hub"),
339 "0a" : N_("Communication"),
340 "0b" : N_("Smart card"),
341 "0d" : N_("Encryption"),
342 "0e" : N_("Display"),
343 "0f" : N_("Personal Healthcare"),
344 "dc" : N_("Diagnostic Device"),
345 "e0" : N_("Wireless"),
346 "ef" : N_("Unclassified"),
347 "fe" : N_("Unclassified"),
348 "ff" : N_("Unclassified"),
349 }
350 }
351
352 def __init__(self, backend, id, data=None):
353 Object.__init__(self, backend)
354
355 self.id = id
356 self.__data = data
357
358 def __repr__(self):
359 return "<%s vendor=%s model=%s>" % (self.__class__.__name__,
360 self.vendor_string, self.model_string)
361
3adfd81b
MT
362 def __eq__(self, other):
363 if isinstance(other, self.__class__):
364 return self.id == other.id
365
366 def __lt__(self, other):
367 if isinstance(other, self.__class__):
e2591627 368 return self.cls < other.cls or \
3adfd81b
MT
369 self.vendor_string < other.vendor_string or \
370 self.vendor < other.vendor or \
371 self.model_string < other.model_string or \
e2591627 372 self.model < other.model
66862195
MT
373
374 @property
375 def data(self):
376 if self.__data is None:
377 assert self.id
378
379 self.__data = self.db.get("SELECT * FROM fireinfo_devices \
380 WHERE id = %s", self.id)
381
382 return self.__data
383
384 def is_showable(self):
385 if self.driver in IGNORED_DEVICES:
386 return False
387
388 if self.driver in ("pcieport", "hub"):
389 return False
390
391 return True
392
393 @property
394 def subsystem(self):
395 return self.data.subsystem
396
397 @property
398 def model(self):
399 return self.data.model
400
401 @property
402 def model_string(self):
403 return self.fireinfo.get_model_string(self.subsystem,
404 self.vendor, self.model)
405
406 @property
407 def vendor(self):
408 return self.data.vendor
409
410 @property
411 def vendor_string(self):
412 return self.fireinfo.get_vendor_string(self.subsystem, self.vendor)
413
414 @property
415 def driver(self):
416 return self.data.driver
417
418 @property
419 def cls(self):
420 classid = self.data.deviceclass
421
422 if self.subsystem == "pci":
423 classid = classid[:-4]
424 if len(classid) == 1:
425 classid = "0%s" % classid
426
427 elif self.subsystem == "usb" and classid:
428 classid = classid.split("/")[0]
429 classid = "%02x" % int(classid)
430
431 try:
432 return self.classid2name[self.subsystem][classid]
433 except KeyError:
434 return "N/A"
435
436 @property
437 def percentage(self):
438 return self.data.get("percentage", None)
439
440
441class Profile(Object):
442 def __init__(self, backend, id, data=None):
443 Object.__init__(self, backend)
444
445 self.id = id
446 self.__data = data
447
448 def __repr__(self):
449 return "<%s %s>" % (self.__class__.__name__, self.public_id)
450
451 def __cmp__(self, other):
452 return cmp(self.id, other.id)
453
454 def is_showable(self):
455 if self.arch_id:
456 return True
457
458 return False
459
460 @property
461 def data(self):
462 if self.__data is None:
463 self.__data = self.db.get("SELECT * FROM fireinfo_profiles \
464 WHERE id = %s", self.id)
465
466 return self.__data
467
468 @property
469 def public_id(self):
470 return self.data.public_id
471
472 @property
473 def private_id(self):
474 raise NotImplementedError
475
476 @property
477 def time_created(self):
478 return self.data.time_created
479
480 @property
481 def time_updated(self):
482 return self.data.time_updated
483
484 def updated(self, profile_parser=None, location=None, when=None):
485 valid = self.settings.get_int("fireinfo_profile_days_valid", 14)
486
487 self.db.execute("UPDATE fireinfo_profiles \
488 SET \
489 time_updated = then_or_now(%s), \
490 time_valid = then_or_now(%s) + INTERVAL '%s days', \
491 updates = updates + 1 \
492 WHERE id = %s", when, when, valid, self.id)
493
494 if profile_parser:
495 self.set_processor_speeds(
496 profile_parser.processor_clock_speed,
497 profile_parser.processor_bogomips,
498 )
499
500 if location:
501 self.set_location(location)
502
f5e42730
MT
503 self.log_profile_update()
504
505 def log_profile_update(self):
506 # Log that an update was performed for this profile id
507 self.db.execute("INSERT INTO fireinfo_profiles_log(public_id) \
508 VALUES(%s)", self.public_id)
509
66862195
MT
510 def expired(self, when=None):
511 self.db.execute("UPDATE fireinfo_profiles \
512 SET time_valid = then_or_now(%s) WHERE id = %s", when, self.id)
513
514 def parse(self, parser):
515 # Processor
516 self.processor = parser.processor
517 self.set_processor_speeds(parser.processor_clock_speed, parser.processor_bogomips)
518
519 # All devices
520 self.devices = parser.devices
521
522 # System
523 self.system_id = parser.system_id
524
525 # Memory
526 self.memory = parser.memory
527
528 # Storage
529 self.storage = parser.storage
530
531 # Kernel
532 self.kernel_id = parser.kernel_id
533
534 # Arch
535 self.arch_id = parser.arch_id
536
537 # Release
538 self.release_id = parser.release_id
539
540 # Language
541 self.language = parser.language
542
543 # Virtual
544 if parser.virtual:
545 self.hypervisor_id = parser.hypervisor_id
546
547 # Network
548 self.network = parser.network
549
550 # Location
551
552 def get_location(self):
553 if not hasattr(self, "_location"):
554 res = self.db.get("SELECT location FROM fireinfo_profiles_locations \
555 WHERE profile_id = %s", self.id)
556
557 if res:
558 self._location = res.location
559 else:
560 self._location = None
561
562 return self._location
563
564 def set_location(self, location):
565 if self.location == location:
566 return
567
568 self.db.execute("DELETE FROM fireinfo_profiles_locations \
569 WHERE profile_id = %s", self.id)
570 self.db.execute("INSERT INTO fireinfo_profiles_locations(profile_id, location) \
571 VALUES(%s, %s)", self.id, location)
572
573 self._location = location
574
575 location = property(get_location, set_location)
576
577 @property
578 def location_string(self):
579 return self.geoip.get_country_name(self.location)
580
581 # Devices
582
583 @property
584 def device_ids(self):
585 if not hasattr(self, "_device_ids"):
586 res = self.db.query("SELECT device_id FROM fireinfo_profiles_devices \
587 WHERE profile_id = %s", self.id)
588
589 self._device_ids = sorted([r.device_id for r in res])
590
591 return self._device_ids
592
593 def get_devices(self):
594 if not hasattr(self, "_devices"):
595 res = self.db.query("SELECT * FROM fireinfo_devices \
596 LEFT JOIN fireinfo_profiles_devices ON \
597 fireinfo_devices.id = fireinfo_profiles_devices.device_id \
598 WHERE fireinfo_profiles_devices.profile_id = %s", self.id)
599
600 self._devices = []
601 for row in res:
602 device = Device(self.backend, row.id, row)
603 self._devices.append(device)
604
605 return self._devices
606
607 def set_devices(self, devices):
608 device_ids = [d.id for d in devices]
609
610 self.db.execute("DELETE FROM fireinfo_profiles_devices WHERE profile_id = %s", self.id)
611 self.db.executemany("INSERT INTO fireinfo_profiles_devices(profile_id, device_id) \
612 VALUES(%s, %s)", ((self.id, d) for d in device_ids))
613
614 self._devices = devices
615 self._device_ids = device_ids
616
617 devices = property(get_devices, set_devices)
618
4238ef83 619 def count_device(self, subsystem, vendor, model):
66862195
MT
620 counter = 0
621
622 for dev in self.devices:
4238ef83 623 if dev.subsystem == subsystem and dev.vendor == vendor and dev.model == model:
66862195
MT
624 counter += 1
625
626 return counter
627
628 # System
629
630 def get_system_id(self):
631 if not hasattr(self, "_system_id"):
632 res = self.db.get("SELECT system_id AS id FROM fireinfo_profiles_systems \
633 WHERE profile_id = %s", self.id)
634
635 if res:
636 self._system_id = res.id
637 else:
638 self._system_id = None
639
640 return self._system_id
641
642 def set_system_id(self, system_id):
643 self.db.execute("DELETE FROM fireinfo_profiles_systems WHERE profile_id = %s", self.id)
644
645 if system_id:
646 self.db.execute("INSERT INTO fireinfo_profiles_systems(profile_id, system_id) \
647 VALUES(%s, %s)", self.id, system_id)
648
649 self._system_id = None
650 if hasattr(self, "_system"):
651 del self._system
652
653 system_id = property(get_system_id, set_system_id)
654
655 @property
656 def system(self):
657 if not hasattr(self, "_system"):
658 res = self.db.get("SELECT fireinfo_systems.vendor AS vendor, fireinfo_systems.model AS model \
659 FROM fireinfo_profiles_systems \
660 LEFT JOIN fireinfo_systems ON fireinfo_profiles_systems.system_id = fireinfo_systems.id \
661 WHERE fireinfo_profiles_systems.profile_id = %s", self.id)
662
663 if res:
664 self._system = (res.vendor, res.model)
665 else:
666 self._system = (None, None)
667
668 return self._system
669
670 @property
671 def system_vendor(self):
672 try:
673 v, m = self.system
674 return v
675 except TypeError:
676 pass
677
678 @property
679 def system_model(self):
680 try:
681 v, m = self.system
682 return m
683 except TypeError:
684 pass
685
686 @property
687 def appliance_id(self):
688 if not hasattr(self, "_appliance_id"):
689 appliances = (
50b5392d 690 ("fountainnetworks-duo-box", self._appliance_test_fountainnetworks_duo_box),
4238ef83 691 ("fountainnetworks-prime", self._appliance_test_fountainnetworks_prime),
82793e74 692 ("lightningwirelabs-eco-plus", self._appliance_test_lightningwirelabs_eco_plus),
66862195
MT
693 ("lightningwirelabs-eco", self._appliance_test_lightningwirelabs_eco),
694 )
695
696 self._appliance_id = None
697 for name, test_func in appliances:
698 if not test_func():
699 continue
700
701 self._appliance_id = name
702 break
703
704 return self._appliance_id
705
706 @property
707 def appliance(self):
50b5392d
MT
708 if self.appliance_id == "fountainnetworks-duo-box":
709 return "Fountain Networks - IPFire Duo Box"
710
711 elif self.appliance_id == "fountainnetworks-prime":
4238ef83
MT
712 return "Fountain Networks - IPFire Prime Box"
713
82793e74
MT
714 elif self.appliance_id == "lightningwirelabs-eco-plus":
715 return "Lightning Wire Labs - IPFire Eco Plus Appliance"
716
4238ef83
MT
717 elif self.appliance_id == "lightningwirelabs-eco":
718 return "Lightning Wire Labs - IPFire Eco Appliance"
719
50b5392d
MT
720 def _appliance_test_fountainnetworks_duo_box(self):
721 if not self.processor.vendor == "Intel":
722 return False
723
724 if not self.processor.model_string == "Intel(R) Celeron(R) 2957U @ 1.40GHz":
725 return False
726
727 if not self.count_device("pci", "10ec", "8168") == 2:
728 return False
729
730 # WiFi module
e2591627
MT
731 #if self.count_device("usb", "148f", "5572") < 1:
732 # return False
50b5392d
MT
733
734 return True
735
4238ef83 736 def _appliance_test_fountainnetworks_prime(self):
9fd4f970 737 if not self.system in (("SECO", None), ("SECO", "0949")):
4238ef83
MT
738 return False
739
740 # Must have a wireless device
741 if self.count_device("usb", "148f", "5572") < 1:
742 return False
743
744 return True
66862195
MT
745
746 def _appliance_test_lightningwirelabs_eco(self):
747 if not self.system == ("MSI", "MS-9877"):
748 return False
749
750 # Must have four Intel network adapters
4238ef83 751 network_adapters_count = self.count_device("pci", "8086", "10d3")
66862195
MT
752 if not network_adapters_count == 4:
753 return False
754
66862195
MT
755 return True
756
82793e74
MT
757 def _appliance_test_lightningwirelabs_eco_plus(self):
758 if not self.system_vendor == "ASUS":
759 return False
760
761 if not self.system_model.startswith("P9A-I/2550"):
762 return False
763
764 # Must have four Intel network adapters
765 network_adapters_count = self.count_device("pci", "8086", "1f41")
766 if not network_adapters_count == 4:
767 return False
768
769 return True
770
66862195
MT
771 # Processors
772
773 @property
774 def processor_id(self):
775 if hasattr(self, "_processor"):
776 return self._processor.id
777
778 if not hasattr(self, "_processor_id"):
779 res = self.db.get("SELECT processor_id FROM fireinfo_profiles_processors \
780 WHERE profile_id = %s", self.id)
781
782 if res:
783 self._processor_id = res.processor_id
784 else:
785 self._processor_id = None
786
787 return self._processor_id
788
789 def get_processor(self):
790 if not self.processor_id:
791 return
792
793 if not hasattr(self, "_processor"):
794 res = self.db.get("SELECT * FROM fireinfo_profiles_processors \
795 WHERE profile_id = %s", self.id)
796
797 if res:
798 self._processor = self.fireinfo.get_processor_by_id(res.processor_id,
799 clock_speed=res.clock_speed, bogomips=res.bogomips)
800 else:
801 self._processor = None
802
803 return self._processor
804
805 def set_processor(self, processor):
806 self.db.execute("DELETE FROM fireinfo_profiles_processors \
807 WHERE profile_id = %s", self.id)
808
809 if processor:
810 self.db.execute("INSERT INTO fireinfo_profiles_processors(profile_id, processor_id) \
811 VALUES(%s, %s)", self.id, processor.id)
812
813 self._processor = processor
814
815 processor = property(get_processor, set_processor)
816
817 def set_processor_speeds(self, clock_speed, bogomips):
818 self.db.execute("UPDATE fireinfo_profiles_processors \
819 SET clock_speed = %s, bogomips = %s WHERE profile_id = %s",
820 clock_speed, bogomips, self.id)
821
822 # Compat
823 @property
824 def cpu(self):
825 return self.processor
826
827 # Memory
828
829 def get_memory(self):
830 if not hasattr(self, "_memory"):
831 res = self.db.get("SELECT amount FROM fireinfo_profiles_memory \
832 WHERE profile_id = %s", self.id)
833
834 if res:
835 self._memory = res.amount * 1024
836 else:
837 self._memory = None
838
839 return self._memory
840
841 def set_memory(self, amount):
842 if self.memory == amount:
843 return
844
845 amount /= 1024
846
847 self.db.execute("DELETE FROM fireinfo_profiles_memory WHERE profile_id = %s", self.id)
848 if amount:
849 self.db.execute("INSERT INTO fireinfo_profiles_memory(profile_id, amount) \
850 VALUES(%s, %s)", self.id, amount)
851
852 self._memory = amount * 1024
853
854 memory = property(get_memory, set_memory)
855
856 @property
857 def friendly_memory(self):
a0c9a14e 858 return util.format_size(self.memory or 0)
66862195
MT
859
860 # Storage
861
862 def get_storage(self):
863 if not hasattr(self, "_storage"):
864 res = self.db.get("SELECT amount FROM fireinfo_profiles_storage \
865 WHERE profile_id = %s", self.id)
866
867 if res:
868 self._storage = res.amount * 1024
869 else:
870 self._storage = None
871
872 return self._storage
873
874 def set_storage(self, amount):
875 if self.storage == amount:
876 return
877
878 amount /= 1024
879
880 self.db.execute("DELETE FROM fireinfo_profiles_storage WHERE profile_id = %s", self.id)
881 if amount:
882 self.db.execute("INSERT INTO fireinfo_profiles_storage(profile_id, amount) \
883 VALUES(%s, %s)", self.id, amount)
884
885 self._storage = amount * 1024
886
887 storage = property(get_storage, set_storage)
888
889 @property
890 def friendly_storage(self):
891 return util.format_size(self.storage)
892
893 # Kernel
894
895 def get_kernel_id(self):
896 if not hasattr(self, "_kernel_id"):
897 res = self.db.get("SELECT fireinfo_profiles_kernels.kernel_id AS id FROM fireinfo_profiles \
898 LEFT JOIN fireinfo_profiles_kernels ON fireinfo_profiles.id = fireinfo_profiles_kernels.profile_id \
899 WHERE fireinfo_profiles.id = %s", self.id)
900
901 if res:
902 self._kernel_id = res.id
903 else:
904 self._kernel_id = None
905
906 return self._kernel_id
907
908 def set_kernel_id(self, kernel_id):
909 if self.kernel_id == kernel_id:
910 return
911
912 self.db.execute("DELETE FROM fireinfo_profiles_kernels WHERE profile_id = %s", self.id)
913 if kernel_id:
914 self.db.execute("INSERT INTO fireinfo_profiles_kernels(profile_id, kernel_id) \
915 VALUES(%s, %s)", self.id, kernel_id)
916
917 self._kernel_id = kernel_id
918 if hasattr(self, "_kernel"):
919 del self._kernel
920
921 kernel_id = property(get_kernel_id, set_kernel_id)
922
923 @property
924 def kernel(self):
925 if not hasattr(self, "_kernel"):
926 res = self.db.get("SELECT fireinfo_kernels.name AS name FROM fireinfo_profiles \
927 LEFT JOIN fireinfo_profiles_kernels ON fireinfo_profiles.id = fireinfo_profiles_kernels.profile_id \
928 LEFT JOIN fireinfo_kernels ON fireinfo_kernels.id = fireinfo_profiles_kernels.kernel_id \
929 WHERE fireinfo_profiles.id = %s", self.id)
930
931 if res:
932 self._kernel = res.name
933 else:
934 self._kernel = None
935
936 return self._kernel
937
938 # Arch
939
940 def get_arch_id(self):
941 if not hasattr(self, "_arch_id"):
942 res = self.db.get("SELECT fireinfo_profiles_arches.arch_id AS id FROM fireinfo_profiles \
943 LEFT JOIN fireinfo_profiles_arches ON fireinfo_profiles.id = fireinfo_profiles_arches.profile_id \
944 WHERE fireinfo_profiles.id = %s", self.id)
945
946 if res:
947 self._arch_id = res.id
948 else:
949 self._arch_id = None
950
951 return self._arch_id
952
953 def set_arch_id(self, arch_id):
954 if self.arch_id == arch_id:
955 return
956
957 self.db.execute("DELETE FROM fireinfo_profiles_arches WHERE profile_id = %s", self.id)
958 if arch_id:
959 self.db.execute("INSERT INTO fireinfo_profiles_arches(profile_id, arch_id) \
960 VALUES(%s, %s)", self.id, arch_id)
961
962 self._arch_id = None
963 if hasattr(self, "_arch"):
964 del self._arch
965
966 arch_id = property(get_arch_id, set_arch_id)
967
968 @property
969 def arch(self):
970 if not hasattr(self, "_arch"):
971 res = self.db.get("SELECT fireinfo_arches.name AS name FROM fireinfo_profiles \
972 LEFT JOIN fireinfo_profiles_arches ON fireinfo_profiles.id = fireinfo_profiles_arches.profile_id \
973 LEFT JOIN fireinfo_arches ON fireinfo_arches.id = fireinfo_profiles_arches.arch_id \
974 WHERE fireinfo_profiles.id = %s", self.id)
975
976 if res:
977 self._arch = res.name
978 else:
979 self._arch = None
980
981 return self._arch
982
983 # Release
984
985 def get_release_id(self):
986 if not hasattr(self, "_release_id"):
987 res = self.db.get("SELECT fireinfo_profiles_releases.release_id AS id FROM fireinfo_profiles \
988 LEFT JOIN fireinfo_profiles_releases ON fireinfo_profiles.id = fireinfo_profiles_releases.profile_id \
989 WHERE fireinfo_profiles.id = %s", self.id)
990
991 if res:
992 self._release_id = res.id
993 else:
994 self._release_id = None
995
996 return self._release_id
997
998 def set_release_id(self, release_id):
999 if self.release_id == release_id:
1000 return
1001
1002 self.db.execute("DELETE FROM fireinfo_profiles_releases WHERE profile_id = %s", self.id)
1003 if release_id:
1004 self.db.execute("INSERT INTO fireinfo_profiles_releases(profile_id, release_id) \
1005 VALUES(%s, %s)", self.id, release_id)
1006
1007 self._release_id = release_id
1008 if hasattr(self, "_release"):
1009 del self._release
1010
1011 release_id = property(get_release_id, set_release_id)
1012
1013 @property
1014 def release(self):
1015 if not hasattr(self, "_release"):
1016 res = self.db.get("SELECT fireinfo_releases.name AS name FROM fireinfo_profiles \
1017 LEFT JOIN fireinfo_profiles_releases ON fireinfo_profiles.id = fireinfo_profiles_releases.profile_id \
1018 LEFT JOIN fireinfo_releases ON fireinfo_profiles_releases.release_id = fireinfo_releases.id \
1019 WHERE fireinfo_profiles.id = %s", self.id)
1020
1021 if res:
1022 self._release = self._format_release(res.name)
1023 else:
1024 self._release = None
1025
1026 return self._release
1027
1028 @staticmethod
1029 def _format_release(r):
1030 if not r:
1031 return r
1032
1033 # Remove the development header
1034 r = r.replace("Development Build: ", "")
1035
1036 pairs = (
1037 ("-beta", " - Beta "),
1038 ("-rc", " - Release Candidate "),
66862195
MT
1039 ("core", "Core Update "),
1040 ("beta", "Beta "),
1041 )
1042
1043 for k, v in pairs:
1044 r = r.replace(k, v)
1045
1046 return r
1047
05bd7298
MT
1048 @property
1049 def release_short(self):
1050 pairs = (
1051 (r"Release Candidate (\d+)", r"RC\1"),
1052 )
1053
1054 s = self.release
1055 for pattern, repl in pairs:
1056 if re.search(pattern, s) is None:
1057 continue
1058
1059 s = re.sub(pattern, repl, s)
1060
1061 return s
1062
66862195
MT
1063 # Virtual
1064
1065 @property
1066 def virtual(self):
1067 if not hasattr(self, "_virtual"):
1068 res = self.db.get("SELECT 1 FROM fireinfo_profiles_virtual \
1069 WHERE profile_id = %s", self.id)
1070
1071 if res:
1072 self._virtual = True
1073 else:
1074 self._virtual = False
1075
1076 return self._virtual
1077
1078 def get_hypervisor_id(self):
1079 if not hasattr(self, "_hypervisor_id"):
1080 res = self.db.get("SELECT fireinfo_profiles_virtual.hypervisor_id AS id FROM fireinfo_profiles \
1081 LEFT JOIN fireinfo_profiles_virtual ON fireinfo_profiles.id = fireinfo_profiles_virtual.profile_id \
1082 WHERE fireinfo_profiles.id = %s", self.id)
1083
1084 if res:
1085 self._hypervisor_id = res.id
1086 else:
1087 self._hypervisor_id = None
1088
1089 return self._hypervisor_id
1090
1091 def set_hypervisor_id(self, hypervisor_id):
1092 self.db.execute("DELETE FROM fireinfo_profiles_virtual WHERE profile_id = %s", self.id)
1093 self.db.execute("INSERT INTO fireinfo_profiles_virtual(profile_id, hypervisor_id) \
1094 VALUES(%s, %s)", self.id, hypervisor_id)
1095
1096 self._hypervisor_id = hypervisor_id
1097
1098 hypervisor_id = property(get_hypervisor_id, set_hypervisor_id)
1099
1100 @property
1101 def hypervisor(self):
1102 if not hasattr(self, "_hypervisor"):
1103 res = self.db.get("SELECT fireinfo_hypervisors.name AS hypervisor FROM fireinfo_profiles \
1104 LEFT JOIN fireinfo_profiles_virtual ON fireinfo_profiles.id = fireinfo_profiles_virtual.profile_id \
1105 LEFT JOIN fireinfo_hypervisors ON fireinfo_profiles_virtual.hypervisor_id = fireinfo_hypervisors.id \
1106 WHERE fireinfo_profiles.id = %s", self.id)
1107
1108 if res:
1109 self._hypervisor = res.hypervisor
1110 else:
1111 self._hypervisor = None
1112
1113 return self._hypervisor
1114
1115 # Language
1116
1117 def get_language(self):
1118 if not hasattr(self, "_language"):
1119 res = self.db.get("SELECT language FROM fireinfo_profiles_languages \
1120 WHERE profile_id = %s", self.id)
1121
1122 if res:
1123 self._language = res.language
1124 else:
1125 self._language = None
1126
1127 return self._language
1128
1129 def set_language(self, language):
1130 self.db.execute("DELETE FROM fireinfo_profiles_languages WHERE profile_id = %s", self.id)
1131
1132 if language:
1133 self.db.execute("INSERT INTO fireinfo_profiles_languages(profile_id, language) \
1134 VALUES(%s, %s)", self.id, language)
1135
1136 self._language = language
1137
1138 language = property(get_language, set_language)
1139
1140 # Network
1141
1142 def get_network(self):
1143 if not hasattr(self, "_network"):
1144 res = self.db.get("SELECT * FROM fireinfo_profiles_networks \
1145 WHERE profile_id = %s", self.id)
1146
1147 if not res:
1148 res = {}
1149
1150 self._network = ProfileNetwork(res)
1151
1152 return self._network
1153
1154 def set_network(self, network):
1155 self.db.execute("DELETE FROM fireinfo_profiles_networks WHERE profile_id = %s", self.id)
1156
1157 if network:
1158 self.db.execute("INSERT INTO fireinfo_profiles_networks(profile_id, \
1159 has_red, has_green, has_orange, has_blue) VALUES(%s, %s, %s, %s, %s)",
1160 self.id, network.has_red, network.has_green, network.has_orange, network.has_blue)
1161
1162 self._network = network
1163
1164 network = property(get_network, set_network)
1165
1166
1167class ProfileData(Object):
1168 def __init__(self, backend, id, data=None, profile=None):
1169 Object.__init__(self, backend)
1170
1171 self.id = id
1172 self._data = data
1173 self._profile = profile
1174
1175 @property
1176 def data(self):
1177 if self._data is None:
1178 self._data = self.db.get("SELECT * FROM fireinfo_profile_data \
1179 WHERE id = %s", self.id)
1180
1181 return self._data
1182
1183 @property
1184 def profile(self):
1185 if not self._profile:
1186 self._profile = self.fireinfo.get_profile_by_id(self.profile_id)
1187
1188 return self._profile
1189
1190 @property
1191 def profile_id(self):
1192 return self.data.profile_id
1193
1194
1195class ProfileParserError(Exception):
1196 pass
1197
1198
1199class ProfileParser(Object):
1200 __device_args = (
1201 "subsystem",
1202 "vendor",
1203 "model",
1204 "sub_vendor",
1205 "sub_model",
1206 "driver",
1207 "deviceclass",
1208 )
1209
1210 __processor_args = (
1211 "vendor",
1212 "model_string",
1213 "family",
1214 "model",
1215 "stepping",
1216 "core_count",
1217 "flags",
1218 )
1219
66862195
MT
1220 def __init__(self, backend, public_id, blob=None):
1221 Object.__init__(self, backend)
1222
1223 self.public_id = public_id
1224 self.private_id = None
1225 self.devices = []
1226 self.processor = None
1227 self.processor_clock_speed = None
1228 self.processor_bogomips = None
1229 self.system_id = None
1230 self.memory = None
1231 self.storage = None
1232 self.kernel = None
1233 self.kernel_id = None
1234 self.arch = None
1235 self.arch_id = None
1236 self.release = None
1237 self.release_id = None
1238 self.language = None
1239 self.virtual = None
1240 self.hypervisor_id = None
1241 self.network = None
1242
1243 self.__parse_blob(blob)
1244
1245 def equals(self, other):
1246 if not self.processor_id == other.processor_id:
1247 return False
1248
1249 if not self.device_ids == other.device_ids:
1250 return False
1251
1252 if not self.system_id == other.system_id:
1253 return False
1254
1255 if not self.memory == other.memory:
1256 return False
1257
1258 if not self.storage == other.storage:
1259 return False
1260
1261 if not self.kernel_id == other.kernel_id:
1262 return False
1263
1264 if not self.arch_id == other.arch_id:
1265 return False
1266
1267 if not self.release_id == other.release_id:
1268 return False
1269
1270 if not self.language == other.language:
1271 return False
1272
1273 if not self.virtual == other.virtual:
1274 return False
1275
1276 if other.virtual:
1277 if not self.hypervisor_id == other.hypervisor_id:
1278 return False
1279
1280 if not self.network == other.network:
1281 return False
1282
1283 return True
1284
1285 def __parse_blob(self, blob):
1286 _profile = blob.get("profile", {})
1287 self.private_id = blob.get("private_id")
1288
1289 # Do not try to parse an empty profile
1290 if not _profile:
1291 return
1292
1293 # Processor
1294 _processor = _profile.get("cpu", {})
1295 self.__parse_processor(_processor)
1296
1297 # Find devices
1298 _devices = _profile.get("devices", [])
1299 self.__parse_devices(_devices)
1300
1301 # System
1302 _system = _profile.get("system")
1303 if _system:
1304 self.__parse_system(_system)
1305
1306 # Memory (convert to bytes)
1307 memory = _system.get("memory", None)
1308 if memory:
1309 self.memory = memory * 1024
1310
1311 # Storage size (convert to bytes)
1312 storage = _system.get("root_size", None)
1313 if storage:
1314 self.storage = storage * 1024
1315
1316 # Kernel
1317 kernel = _system.get("kernel_release", None)
1318 if kernel:
1319 self.__parse_kernel(kernel)
1320
1321 # Release
1322 release = _system.get("release", None)
1323 if release:
1324 self.__parse_release(release)
1325
1326 # Language
1327 language = _system.get("language", None)
1328 if language:
1329 self.__parse_language(language)
1330
1331 # Virtual
1332 self.virtual = _system.get("virtual", False)
1333 if self.virtual:
1334 hypervisor = _profile.get("hypervisor")
1335 self.__parse_hypervisor(hypervisor)
1336
1337 # Network
1338 _network = _profile.get("network")
1339 if _network:
1340 self.__parse_network(_network)
1341
1342 @property
1343 def device_ids(self):
1344 return sorted([d.id for d in self.devices])
1345
1346 def __parse_devices(self, _devices):
1347 self.devices = []
1348
1349 for _device in _devices:
1350 args = {}
1351 for arg in self.__device_args:
1352 args[arg] = _device.get(arg, None)
1353
95ae21d1
MT
1354 # Skip if the subsystem is not set
1355 if not args.get("subsystem", None):
1356 continue
1357
66862195
MT
1358 # Find the device or create a new one.
1359 device = self.fireinfo.get_device(**args)
1360 if not device:
1361 device = self.fireinfo.create_device(**args)
1362
1363 self.devices.append(device)
1364
1365 def __parse_system(self, system):
1366 vendor = system.get("vendor", None)
1367 if not vendor:
1368 vendor = None
1369
1370 model = system.get("model", None)
1371 if not model:
1372 model = None
1373
1374 self.system_id = self.fireinfo.get_system(vendor, model)
1375 if not self.system_id:
1376 self.system_id = self.fireinfo.create_system(vendor, model)
1377
1378 @property
1379 def processor_id(self):
1380 if not self.processor:
1381 return
1382
1383 return self.processor.id
1384
1385 def __parse_processor(self, _processor):
1386 args = {}
1387 for arg in self.__processor_args:
1388 if arg == "core_count":
1389 _arg = "count"
1390 else:
1391 _arg = arg
1392
1393 args[arg] = _processor.get(_arg, None)
1394
66862195
MT
1395 self.processor = self.fireinfo.get_processor(**args)
1396 if not self.processor:
1397 self.processor = self.fireinfo.create_processor(**args)
1398
1399 self.processor_clock_speed = _processor.get("speed", None)
1400 self.processor_bogomips = _processor.get("bogomips", None)
1401
1402 arch = _processor.get("arch", None)
1403 if arch:
1404 self.__parse_arch(arch)
1405
1406 def __parse_kernel(self, kernel):
1407 self.kernel_id = self.fireinfo.get_kernel(kernel)
1408 if not self.kernel_id:
1409 self.kernel_id = self.fireinfo.create_kernel(kernel)
1410 assert self.kernel_id
1411
1412 self.kernel = kernel
1413
1414 def __parse_arch(self, arch):
1415 self.arch_id = self.fireinfo.get_arch(arch)
1416 if not self.arch_id:
1417 self.arch_id = self.fireinfo.create_arch(arch)
1418
1419 self.arch = arch
1420
1421 def __parse_release(self, release):
1422 # Remove the arch bit
1423 if release:
1424 r = [e for e in release.split() if e]
9bd46813 1425 for s in ("(x86_64)", "(i586)", "(armv5tel)"):
66862195
MT
1426 try:
1427 r.remove(s)
1428 break
1429 except ValueError:
1430 pass
1431
1432 release = " ".join(r)
1433
1434 self.release_id = self.fireinfo.get_release(release)
1435 if not self.release_id:
1436 self.release_id = self.fireinfo.create_release(release)
1437 assert self.release_id
1438
1439 self.release = release
1440
1441 def __parse_language(self, language):
2c0d3e50
MT
1442 self.language = language
1443 self.language, delim, rest = self.language.partition(".")
1444 self.language, delim, rest = self.language.partition("_")
66862195
MT
1445
1446 def __parse_hypervisor(self, hypervisor):
1447 vendor = hypervisor.get("vendor", "other")
1448
1449 if vendor in ("other", "unknown"):
1450 self.hypervisor_id = None
1451 return
1452
1453 self.hypervisor_id = self.fireinfo.get_hypervisor(vendor)
1454 if not self.hypervisor_id:
1455 self.hypervisor_id = self.fireinfo.create_hypervisor(vendor)
1456
1457 def __parse_network(self, network):
1458 self.network = ProfileNetwork({
1459 "has_red" : network.get("red", False),
1460 "has_green" : network.get("green", False),
1461 "has_orange" : network.get("orange", False),
1462 "has_blue" : network.get("blue", False),
1463 })
1464
1465
1466class Fireinfo(Object):
1467 def get_profile_count(self, when=None):
1468 res = self.db.get("SELECT COUNT(*) AS count FROM fireinfo_profiles \
1469 WHERE then_or_now(%s) BETWEEN time_created AND time_valid", when)
1470
1471 if res:
1472 return res.count
1473
de14b297
MT
1474 def get_total_updates_count(self, when=None):
1475 res = self.db.get("SELECT COUNT(*) + SUM(updates) AS count \
1476 FROM fireinfo_profiles WHERE time_created <= then_or_now(%s)", when)
66862195
MT
1477
1478 if res:
1479 return res.count
1480
1481 # Parser
1482
1483 def parse_profile(self, public_id, blob):
1484 return ProfileParser(self.backend, public_id, blob)
1485
1486 # Profiles
1487
1488 def profile_exists(self, public_id):
1489 res = self.db.get("SELECT id FROM fireinfo_profiles \
1490 WHERE public_id = %s LIMIT 1", public_id)
1491
1492 if res:
1493 return True
1494
1495 return False
1496
f5e42730 1497 def profile_rate_limit_active(self, public_id, when=None):
f5e42730 1498 res = self.db.get("SELECT COUNT(*) AS count FROM fireinfo_profiles_log \
191087b6
MT
1499 WHERE public_id = %s AND ts >= then_or_now(%s) - INTERVAL '60 minutes'",
1500 public_id, when)
f5e42730
MT
1501
1502 if res and res.count >= 10:
1503 return True
66862195 1504
f5e42730
MT
1505 return False
1506
1507 def is_private_id_change_permitted(self, public_id, private_id, when=None):
6c748b46
MT
1508 # Check if a profile exists with a different private id that is still valid
1509 res = self.db.get("SELECT 1 FROM fireinfo_profiles \
1510 WHERE public_id = %s AND NOT private_id = %s \
1511 AND time_valid >= then_or_now(%s) LIMIT 1", public_id, private_id, when)
1512
1513 if res:
1514 return False
1515
1516 return True
66862195
MT
1517
1518 def get_profile(self, public_id, private_id=None, when=None):
1519 res = self.db.get("SELECT * FROM fireinfo_profiles \
1520 WHERE public_id = %s AND \
1521 (CASE WHEN %s IS NULL THEN TRUE ELSE private_id = %s END) AND \
46f3e814
MT
1522 then_or_now(%s) BETWEEN time_created AND time_valid \
1523 ORDER BY time_updated DESC LIMIT 1",
1524 public_id, private_id, private_id, when)
66862195
MT
1525
1526 if res:
1527 return Profile(self.backend, res.id, res)
1528
d7bebd28
MT
1529 def get_profile_with_data(self, public_id, when=None):
1530 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1531 SELECT * FROM profiles JOIN fireinfo_profiles ON profiles.id = fireinfo_profiles.id \
1532 WHERE public_id = %s ORDER BY time_updated DESC LIMIT 1", when, public_id)
1533
1534 if res:
1535 return Profile(self.backend, res.id, res)
1536
66862195
MT
1537 def get_profiles(self, public_id):
1538 res = self.db.query("SELECT * FROM fireinfo_profiles \
1539 WHERE public_id = %s ORDER BY time_created DESC", public_id)
1540
1541 profiles = []
1542 for row in res:
1543 profile = Profile(self.backend, row.id, row)
1544 profiles.append(profile)
1545
1546 return profiles
1547
1548 def create_profile(self, public_id, private_id, when=None):
1549 valid = self.settings.get_int("fireinfo_profile_days_valid", 14)
1550
1551 res = self.db.get("INSERT INTO fireinfo_profiles(public_id, private_id, \
1552 time_created, time_updated, time_valid) VALUES(%s, %s, then_or_now(%s), \
1553 then_or_now(%s), then_or_now(%s) + INTERVAL '%s days') RETURNING id",
1554 public_id, private_id, when, when, when, valid)
1555
1556 if res:
f5e42730
MT
1557 p = Profile(self.backend, res.id)
1558 p.log_profile_update()
1559
1560 return p
66862195
MT
1561
1562 # Devices
1563
1564 def create_device(self, subsystem, vendor, model, sub_vendor=None, sub_model=None,
1565 driver=None, deviceclass=None):
1566 res = self.db.get("INSERT INTO fireinfo_devices(subsystem, vendor, model, \
1567 sub_vendor, sub_model, driver, deviceclass) VALUES(%s, %s, %s, %s, %s, %s, %s) \
1568 RETURNING id", subsystem, vendor, model, sub_vendor, sub_model, driver, deviceclass)
1569
1570 if res:
1571 return Device(self.backend, res.id)
1572
1573 def get_device(self, subsystem, vendor, model, sub_vendor=None, sub_model=None,
1574 driver=None, deviceclass=None):
1575 res = self.db.get("SELECT * FROM fireinfo_devices \
1576 WHERE subsystem = %s AND vendor = %s AND model = %s \
1577 AND sub_vendor IS NOT DISTINCT FROM %s \
1578 AND sub_model IS NOT DISTINCT FROM %s \
1579 AND driver IS NOT DISTINCT FROM %s \
1580 AND deviceclass IS NOT DISTINCT FROM %s \
1581 LIMIT 1", subsystem, vendor, model, sub_vendor,
1582 sub_model, driver, deviceclass)
1583
1584 if res:
1585 return Device(self.backend, res.id, res)
1586
1587 # System
1588
1589 def create_system(self, vendor, model):
1590 res = self.db.get("INSERT INTO fireinfo_systems(vendor, model) \
1591 VALUES(%s, %s) RETURNING id", vendor, model)
1592
1593 if res:
1594 return res.id
1595
1596 def get_system(self, vendor, model):
1597 res = self.db.get("SELECT id FROM fireinfo_systems WHERE vendor IS NOT DISTINCT FROM %s \
1598 AND model IS NOT DISTINCT FROM %s LIMIT 1", vendor, model)
1599
1600 if res:
1601 return res.id
1602
1603 # Processors
1604
1605 def create_processor(self, vendor, model_string, family, model, stepping, core_count, flags=None):
1606 res = self.db.get("INSERT INTO fireinfo_processors(vendor, model_string, \
1607 family, model, stepping, core_count, flags) VALUES(%s, %s, %s, %s, %s, %s, %s) \
240e9253 1608 RETURNING id", vendor or None, model_string or None, family, model, stepping, core_count, flags)
66862195
MT
1609
1610 if res:
1611 return Processor(self.backend, res.id)
1612
1613 def get_processor_by_id(self, processor_id, **kwargs):
1614 res = self.db.get("SELECT * FROM fireinfo_processors \
1615 WHERE id = %s", processor_id)
1616
1617 if res:
1618 return Processor(self.backend, res.id, data=res, **kwargs)
1619
1620 def get_processor(self, vendor, model_string, family, model, stepping, core_count, flags=None):
1621 if flags is None:
1622 flags = []
1623
1624 res = self.db.get("SELECT * FROM fireinfo_processors \
240e9253 1625 WHERE vendor IS NOT DISTINCT FROM %s AND model_string IS NOT DISTINCT FROM %s \
66862195
MT
1626 AND family IS NOT DISTINCT FROM %s AND model IS NOT DISTINCT FROM %s \
1627 AND stepping IS NOT DISTINCT FROM %s AND core_count = %s \
240e9253
MT
1628 AND flags <@ %s AND flags @> %s", vendor or None, model_string or None,
1629 family, model, stepping, core_count, flags, flags)
66862195
MT
1630
1631 if res:
1632 return Processor(self.backend, res.id, res)
1633
1634 # Kernel
1635
1636 def create_kernel(self, kernel):
1637 res = self.db.get("INSERT INTO fireinfo_kernels(name) VALUES(%s) \
1638 RETURNING id", kernel)
1639
1640 if res:
1641 return res.id
1642
1643 def get_kernel(self, kernel):
1644 res = self.db.get("SELECT id FROM fireinfo_kernels WHERE name = %s", kernel)
1645
1646 if res:
1647 return res.id
1648
1649 # Arch
1650
1651 def create_arch(self, arch):
1652 res = self.db.get("INSERT INTO fireinfo_arches(name) VALUES(%s) \
1653 RETURNING id", arch)
1654
1655 if res:
1656 return res.id
1657
1658 def get_arch(self, arch):
1659 res = self.db.get("SELECT id FROM fireinfo_arches WHERE name = %s", arch)
1660
1661 if res:
1662 return res.id
1663
1664 # Release
1665
1666 def create_release(self, release):
1667 res = self.db.get("INSERT INTO fireinfo_releases(name) VALUES(%s) \
1668 RETURNING id", release)
1669
1670 if res:
1671 return res.id
1672
1673 def get_release(self, release):
1674 res = self.db.get("SELECT id FROM fireinfo_releases WHERE name = %s", release)
1675
1676 if res:
1677 return res.id
1678
dd3a5446
MT
1679 def get_release_penetration(self, release, when=None):
1680 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1681 SELECT COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS penetration FROM profiles \
1682 LEFT JOIN fireinfo_profiles_releases ON profiles.id = fireinfo_profiles_releases.profile_id \
1683 WHERE fireinfo_profiles_releases.release_id = %s", when, release.fireinfo_id)
1684
1685 if res:
1686 return res.penetration
1687
e400e37d
MT
1688 def get_random_country_penetration(self):
1689 res = self.db.get("SELECT * FROM fireinfo_country_percentages \
1690 ORDER BY RANDOM() LIMIT 1")
1691
1692 if res:
1693 return database.Row({
1694 "country" : iso3166.countries.get(res.location),
1695 "percentage" : res.count,
1696 })
1697
66862195
MT
1698 # Hypervisor
1699
1700 def create_hypervisor(self, hypervisor):
1701 res = self.db.get("INSERT INTO fireinfo_hypervisors(name) VALUES(%s) \
1702 RETURNING id", hypervisor)
1703
1704 if res:
1705 return res.id
1706
1707 def get_hypervisor(self, hypervisor):
1708 res = self.db.get("SELECT id FROM fireinfo_hypervisors WHERE name = %s",
1709 hypervisor)
1710
1711 if res:
1712 return res.id
1713
1714 # Handle profile
1715
1716 def handle_profile(self, *args, **kwargs):
1717 self.db.execute("START TRANSACTION")
1718
1719 # Wrap all the handling of the profile in a huge transaction.
1720 try:
1721 self._handle_profile(*args, **kwargs)
1722
1723 except:
1724 self.db.execute("ROLLBACK")
1725 raise
1726
1727 else:
1728 self.db.execute("COMMIT")
1729
1730 def _handle_profile(self, public_id, profile_blob, location=None, when=None):
1731 private_id = profile_blob.get("private_id", None)
1732 assert private_id
1733
1734 # Check if the profile already exists in the database.
1735 profile = self.fireinfo.get_profile(public_id, private_id=private_id, when=when)
1736
1737 # Check if the update can actually be updated
f5e42730
MT
1738 if profile and self.fireinfo.profile_rate_limit_active(public_id, when=when):
1739 logging.warning("There were too many updates for this profile in the last hour: %s" % public_id)
1740 return
1741
1742 elif not self.is_private_id_change_permitted(public_id, private_id, when=when):
1743 logging.warning("Changing private id is not permitted for profile: %s" % public_id)
66862195
MT
1744 return
1745
1746 # Parse the profile
1747 profile_parser = self.parse_profile(public_id, profile_blob)
1748
1749 # If a profile exists, check if it matches and if so, just update the
1750 # timestamp.
1751 if profile:
1752 # Check if the profile has changed. If so, update the data.
1753 if profile_parser.equals(profile):
1754 profile.updated(profile_parser, location=location, when=when)
1755 return
1756
1757 # If it does not match, we assume that it is expired and
1758 # create a new profile.
1759 profile.expired(when=when)
1760
1761 # Replace the old profile with a new one
1762 profile = self.fireinfo.create_profile(public_id, private_id, when=when)
1763 profile.parse(profile_parser)
1764
1765 if location:
1766 profile.set_location(location)
1767
1768 return profile
1769
1770 # Data outputs
1771
1772 def get_random_profile(self, when=None):
1773 # Check if the architecture exists so that we pick a profile with some data
1774 res = self.db.get("SELECT public_id FROM fireinfo_profiles \
1775 LEFT JOIN fireinfo_profiles_arches ON fireinfo_profiles.id = fireinfo_profiles_arches.profile_id \
1776 WHERE fireinfo_profiles_arches.profile_id IS NOT NULL \
1777 AND then_or_now(%s) BETWEEN time_created AND time_valid ORDER BY RANDOM() LIMIT 1", when)
1778
1779 if res:
1780 return res.public_id
1781
1782 def get_active_profiles(self, when=None):
1783 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_at(%s) AS id) \
1784 SELECT COUNT(*) AS with_data, (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1785 LEFT JOIN fireinfo_profiles_releases ON profiles.id = fireinfo_profiles_releases.profile_id \
1786 WHERE fireinfo_profiles_releases.profile_id IS NOT NULL", when)
1787
1788 if res:
1789 return res.with_data, res.count
1790
1791 def get_archive_size(self, when=None):
1792 res = self.db.get("SELECT COUNT(*) AS count FROM fireinfo_profiles \
1793 WHERE time_created <= then_or_now(%s)", when)
1794
1795 if res:
1796 return res.count
1797
574a88c7 1798 def get_geo_location_map(self, when=None, minimum_percentage=0):
66862195
MT
1799 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_at(%s) AS id) \
1800 SELECT location, COUNT(location)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1801 LEFT JOIN fireinfo_profiles_locations ON profiles.id = fireinfo_profiles_locations.profile_id \
93adf65a
MT
1802 WHERE fireinfo_profiles_locations.location IS NOT NULL GROUP BY location \
1803 HAVING COUNT(location)::float / (SELECT COUNT(*) FROM profiles) >= %s ORDER BY count DESC",
1804 when, minimum_percentage)
66862195 1805
574a88c7 1806 return list(((r.location, r.count) for r in res))
66862195 1807
66862195
MT
1808 @property
1809 def cpu_vendors(self):
1810 res = self.db.query("SELECT DISTINCT vendor FROM fireinfo_processors ORDER BY vendor")
1811
1812 return (CPU_VENDORS.get(r.vendor, r.vendor) for r in res)
1813
1814 def get_cpu_vendors_map(self, when=None):
1815 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
b383d5d1 1816 SELECT COALESCE(vendor, %s) AS vendor, COUNT(vendor)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
66862195
MT
1817 LEFT JOIN fireinfo_profiles_processors ON profiles.id = fireinfo_profiles_processors.profile_id \
1818 LEFT JOIN fireinfo_processors ON fireinfo_profiles_processors.processor_id = fireinfo_processors.id \
b383d5d1 1819 WHERE NOT fireinfo_profiles_processors.processor_id IS NULL GROUP BY vendor ORDER BY count DESC", when, "Unknown")
66862195
MT
1820
1821 return ((CPU_VENDORS.get(r.vendor, r.vendor), r.count) for r in res)
1822
1823 def get_cpu_clock_speeds(self, when=None):
1824 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1825 SELECT AVG(fireinfo_profiles_processors.clock_speed) AS avg, \
1826 STDDEV(fireinfo_profiles_processors.clock_speed) AS stddev, \
1827 MIN(fireinfo_profiles_processors.clock_speed) AS min, \
1828 MAX(fireinfo_profiles_processors.clock_speed) AS max FROM profiles \
1829 LEFT JOIN fireinfo_profiles_processors ON profiles.id = fireinfo_profiles_processors.profile_id \
1830 WHERE NOT fireinfo_profiles_processors.processor_id IS NULL \
5516a25b
MT
1831 AND fireinfo_profiles_processors.clock_speed > 0 \
1832 AND fireinfo_profiles_processors.clock_speed < fireinfo_profiles_processors.bogomips \
1833 AND fireinfo_profiles_processors.bogomips <= %s", when, 10000)
66862195
MT
1834
1835 if res:
1836 return (res.avg or 0, res.stddev or 0, res.min or 0, res.max or 0)
1837
1838 def get_cpus_with_platform_and_flag(self, platform, flag, when=None):
1839 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
1840 processors AS (SELECT fireinfo_processors.id AS id, fireinfo_processors.flags AS flags FROM profiles \
1841 LEFT JOIN fireinfo_profiles_processors ON profiles.id = fireinfo_profiles_processors.profile_id \
1842 LEFT JOIN fireinfo_processors ON fireinfo_profiles_processors.processor_id = fireinfo_processors.id \
1843 LEFT JOIN fireinfo_profiles_arches ON profiles.id = fireinfo_profiles_arches.profile_id \
1844 LEFT JOIN fireinfo_arches ON fireinfo_profiles_arches.arch_id = fireinfo_arches.id \
1845 WHERE NOT fireinfo_profiles_processors.processor_id IS NULL \
1846 AND fireinfo_arches.platform = %s AND NOT 'hypervisor' = ANY(fireinfo_processors.flags)) \
1847 SELECT (COUNT(*)::float / (SELECT NULLIF(COUNT(*), 0) FROM processors)) AS count FROM processors \
1848 WHERE %s = ANY(processors.flags)", when, platform, flag)
1849
1850 return res.count or 0
1851
1852 def get_common_cpu_flags_by_platform(self, platform, when=None):
1853 if platform == "arm":
1854 flags = (
19518d6e 1855 "lpae", "neon", "thumb", "thumbee", "vfpv3", "vfpv4",
66862195
MT
1856 )
1857 elif platform == "x86":
1858 flags = (
1859 "aes", "avx", "avx2", "lm", "mmx", "mmxext", "nx", "pae",
1860 "pni", "popcnt", "sse", "sse2", "rdrand", "ssse3", "sse4a",
19518d6e 1861 "sse4_1", "sse4_2", "pclmulqdq", "rdseed",
66862195
MT
1862 )
1863 else:
1864 return
1865
1866 ret = []
1867 for flag in flags:
1868 ret.append((flag, self.get_cpus_with_platform_and_flag(platform, flag, when=when)))
1869
1870 # Add virtual CPU flag "virt" for virtualization support
1871 if platform == "x86":
1872 ret.append(("virt",
1873 self.get_cpus_with_platform_and_flag(platform, "vmx", when=when) + \
1874 self.get_cpus_with_platform_and_flag(platform, "svm", when=when)))
1875
1876 return sorted(ret, key=lambda x: x[1], reverse=True)
1877
84604476 1878 def get_average_memory_amount(self, when=None):
66862195 1879 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
84604476 1880 SELECT AVG(fireinfo_profiles_memory.amount) AS avg FROM profiles \
66862195
MT
1881 LEFT JOIN fireinfo_profiles_memory ON profiles.id = fireinfo_profiles_memory.profile_id", when)
1882
1883 if res:
84604476 1884 return res.avg or 0
66862195
MT
1885
1886 def get_arch_map(self, when=None):
1887 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1888 SELECT fireinfo_arches.name AS arch, COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count \
1889 FROM profiles \
1890 LEFT JOIN fireinfo_profiles_arches ON profiles.id = fireinfo_profiles_arches.profile_id \
1891 LEFT JOIN fireinfo_arches ON fireinfo_profiles_arches.arch_id = fireinfo_arches.id \
1892 WHERE NOT fireinfo_profiles_arches.profile_id IS NULL \
1893 GROUP BY fireinfo_arches.id ORDER BY count DESC", when)
1894
1895 return ((r.arch, r.count) for r in res)
1896
1897 # Virtual
1898
1899 def get_hypervisor_map(self, when=None):
1900 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
1901 virtual_profiles AS (SELECT profiles.id AS profile_id, fireinfo_profiles_virtual.hypervisor_id FROM profiles \
1902 LEFT JOIN fireinfo_profiles_virtual ON profiles.id = fireinfo_profiles_virtual.profile_id \
1903 WHERE fireinfo_profiles_virtual.profile_id IS NOT NULL) \
1904 SELECT COALESCE(fireinfo_hypervisors.name, %s) AS name, \
1905 COUNT(*)::float / (SELECT COUNT(*) FROM virtual_profiles) AS count FROM virtual_profiles \
1906 LEFT JOIN fireinfo_hypervisors ON virtual_profiles.hypervisor_id = fireinfo_hypervisors.id \
1907 GROUP BY fireinfo_hypervisors.name ORDER BY count DESC", when, "unknown")
1908
1909 return ((r.name, r.count) for r in res)
1910
1911 def get_virtual_ratio(self, when=None):
1912 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1913 SELECT COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1914 LEFT JOIN fireinfo_profiles_virtual ON profiles.id = fireinfo_profiles_virtual.profile_id \
1915 WHERE fireinfo_profiles_virtual.profile_id IS NOT NULL", when)
1916
1917 if res:
1918 return res.count
1919
1920 # Releases
1921
1922 def get_releases_map(self, when=None):
1923 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1924 SELECT fireinfo_releases.name, COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1925 LEFT JOIN fireinfo_profiles_releases ON profiles.id = fireinfo_profiles_releases.profile_id \
1926 LEFT JOIN fireinfo_releases ON fireinfo_profiles_releases.release_id = fireinfo_releases.id \
1927 GROUP BY fireinfo_releases.name ORDER BY count DESC", when)
1928
1929 return ((r.name, r.count) for r in res)
1930
1931 def get_kernels_map(self, when=None):
1932 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1933 SELECT fireinfo_kernels.name, COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1934 LEFT JOIN fireinfo_profiles_kernels ON profiles.id = fireinfo_profiles_kernels.profile_id \
1935 LEFT JOIN fireinfo_kernels ON fireinfo_profiles_kernels.kernel_id = fireinfo_kernels.id \
1936 GROUP BY fireinfo_kernels.name ORDER BY count DESC", when)
1937
1938 return ((r.name, r.count) for r in res)
1939
1940 def _process_devices(self, devices):
1941 result = []
1942
1943 for dev in devices:
1944 dev = Device(self.backend, dev.get("id", None), dev)
1945 result.append(dev)
1946
1947 return result
1948
1949 def get_driver_map(self, driver, when=None):
1950 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
1951 devices AS (SELECT * FROM profiles \
1952 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
1953 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
1954 WHERE driver = %s) \
1955 SELECT subsystem, model, vendor, driver, deviceclass, \
1956 COUNT(*)::float / (SELECT COUNT(*) FROM devices) AS percentage FROM devices \
1957 GROUP BY subsystem, model, vendor, driver, deviceclass \
1958 ORDER BY percentage DESC", when, driver)
1959
1960 return self._process_devices(res)
1961
1962 subsystem2class = {
1963 "pci" : hwdata.PCI(),
1964 "usb" : hwdata.USB(),
1965 }
1966
1967 def get_vendor_string(self, subsystem, vendor_id):
1968 try:
1969 cls = self.subsystem2class[subsystem]
1970 except KeyError:
3697181e 1971 return ""
66862195 1972
3697181e 1973 return cls.get_vendor(vendor_id) or ""
66862195
MT
1974
1975 def get_model_string(self, subsystem, vendor_id, model_id):
1976 try:
1977 cls = self.subsystem2class[subsystem]
1978 except KeyError:
3697181e 1979 return ""
66862195 1980
3697181e 1981 return cls.get_device(vendor_id, model_id) or ""
66862195
MT
1982
1983 def get_vendor_list(self, when=None):
1984 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1985 SELECT DISTINCT fireinfo_devices.subsystem AS subsystem, fireinfo_devices.vendor AS vendor FROM profiles \
1986 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
1987 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
1988 WHERE NOT fireinfo_devices.driver = ANY(%s)", when, IGNORED_DEVICES)
1989
1990 vendors = {}
1991 for row in res:
1992 vendor = self.get_vendor_string(row.subsystem, row.vendor)
1993
1994 # Drop if vendor could not be determined
1995 if vendor is None:
1996 continue
1997
1998 try:
1999 vendors[vendor].append((row.subsystem, row.vendor))
2000 except KeyError:
2001 vendors[vendor] = [(row.subsystem, row.vendor)]
2002
11347e46 2003 vendors = list(vendors.items())
66862195
MT
2004 return sorted(vendors)
2005
2006 def get_devices_by_vendor(self, subsystem, vendor, when=None):
2007 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
2008 devices AS (SELECT * FROM profiles \
2009 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
2010 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
2011 WHERE NOT fireinfo_devices.driver = ANY(%s)), \
2012 vendor_devices AS (SELECT * FROM devices WHERE devices.subsystem = %s AND devices.vendor = %s) \
2013 SELECT subsystem, model, vendor, driver, deviceclass FROM vendor_devices \
2014 GROUP BY subsystem, model, vendor, driver, deviceclass", when, IGNORED_DEVICES, subsystem, vendor)
2015
2016 return self._process_devices(res)