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