1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
|
"""Django models for Bcfg2 reports."""
import sys
from django.core.exceptions import ImproperlyConfigured
try:
from django.db import models
except ImproperlyConfigured:
e = sys.exc_info()[1]
print("Reports: unable to import django models: %s" % e)
sys.exit(1)
from django.core.cache import cache
from datetime import datetime, timedelta
try:
import cPickle as pickle
except:
import pickle
KIND_CHOICES = (
#These are the kinds of config elements
('Package', 'Package'),
('Path', 'directory'),
('Path', 'file'),
('Path', 'permissions'),
('Path', 'symlink'),
('Service', 'Service'),
)
TYPE_GOOD = 0
TYPE_BAD = 1
TYPE_MODIFIED = 2
TYPE_EXTRA = 3
TYPE_CHOICES = (
(TYPE_GOOD, 'Good'),
(TYPE_BAD, 'Bad'),
(TYPE_MODIFIED, 'Modified'),
(TYPE_EXTRA, 'Extra'),
)
def convert_entry_type_to_id(type_name):
"""Convert a entry type to its entry id"""
for e_id, e_name in TYPE_CHOICES:
if e_name.lower() == type_name.lower():
return e_id
return -1
def hash_entry(entry_dict):
"""
Build a key for this based on its data
entry_dict = a dict of all the data identifying this
"""
dataset = []
for key in sorted(entry_dict.keys()):
if key in ('id', 'hash_key') or key.startswith('_'):
continue
dataset.append( (key, entry_dict[key]) )
return hash(pickle.dumps(dataset))
class Client(models.Model):
"""Object representing every client we have seen stats for."""
creation = models.DateTimeField(auto_now_add=True)
name = models.CharField(max_length=128,)
current_interaction = models.ForeignKey('Interaction',
null=True, blank=True,
related_name="parent_client")
expiration = models.DateTimeField(blank=True, null=True)
def __str__(self):
return self.name
class InteractionManager(models.Manager):
"""Manages interactions objects."""
def recent_ids(self, maxdate=None):
"""
Returns the ids of most recent interactions for clients as of a date.
Arguments:
maxdate -- datetime object. Most recent date to pull. (dafault None)
"""
from django.db import connection
cursor = connection.cursor()
cfilter = "expiration is null"
sql = 'select ri.id, x.client_id from (select client_id, MAX(timestamp) ' + \
'as timer from Reporting_interaction'
if maxdate:
if not isinstance(maxdate, datetime):
raise ValueError('Expected a datetime object')
sql = sql + " where timestamp <= '%s' " % maxdate
cfilter = "(expiration is null or expiration > '%s') and creation <= '%s'" % (maxdate, maxdate)
sql = sql + ' GROUP BY client_id) x, Reporting_interaction ri where ' + \
'ri.client_id = x.client_id AND ri.timestamp = x.timer'
sql = sql + " and x.client_id in (select id from Reporting_client where %s)" % cfilter
try:
cursor.execute(sql)
return [item[0] for item in cursor.fetchall()]
except:
'''FIXME - really need some error handling'''
pass
return []
def recent(self, maxdate=None):
"""
Returns the most recent interactions for clients as of a date
Arguments:
maxdate -- datetime object. Most recent date to pull. (dafault None)
"""
if maxdate and not isinstance(maxdate, datetime):
raise ValueError('Expected a datetime object')
return self.filter(id__in=self.recent_ids(maxdate))
class Interaction(models.Model):
"""Models each reconfiguration operation interaction between client and server."""
client = models.ForeignKey(Client, related_name="interactions")
timestamp = models.DateTimeField(db_index=True) # Timestamp for this record
state = models.CharField(max_length=32) # good/bad/modified/etc
repo_rev_code = models.CharField(max_length=64) # repo revision at time of interaction
server = models.CharField(max_length=256) # Name of the server used for the interaction
good_count = models.IntegerField() # of good config-items
total_count = models.IntegerField() # of total config-items
bad_count = models.IntegerField(default=0)
modified_count = models.IntegerField(default=0)
extra_count = models.IntegerField(default=0)
actions = models.ManyToManyField("ActionEntry")
packages = models.ManyToManyField("PackageEntry")
paths = models.ManyToManyField("PathEntry")
services = models.ManyToManyField("ServiceEntry")
failures = models.ManyToManyField("FailureEntry")
# Formerly InteractionMetadata
profile = models.ForeignKey("Group", related_name="+", null=True)
groups = models.ManyToManyField("Group")
bundles = models.ManyToManyField("Bundle")
objects = InteractionManager()
def __str__(self):
return "With " + self.client.name + " @ " + self.timestamp.isoformat()
def percentgood(self):
if not self.total_count == 0:
return (self.good_count / float(self.total_count)) * 100
else:
return 0
def percentbad(self):
if not self.total_count == 0:
return ((self.total_count - self.good_count) / (float(self.total_count))) * 100
else:
return 0
def isclean(self):
if (self.bad_count == 0 and self.good_count == self.total_count):
return True
else:
return False
def isstale(self):
if (self == self.client.current_interaction): # Is Mostrecent
if(datetime.now() - self.timestamp > timedelta(hours=25)):
return True
else:
return False
else:
#Search for subsequent Interaction for this client
#Check if it happened more than 25 hrs ago.
if (self.client.interactions.filter(timestamp__gt=self.timestamp)
.order_by('timestamp')[0].timestamp -
self.timestamp > timedelta(hours=25)):
return True
else:
return False
def save(self):
super(Interaction, self).save() # call the real save...
self.client.current_interaction = self.client.interactions.latest()
self.client.save() # save again post update
def delete(self):
'''Override the default delete. Allows us to remove Performance items'''
pitems = list(self.performance_items.all())
super(Interaction, self).delete()
for perf in pitems:
if perf.interaction.count() == 0:
perf.delete()
def badcount(self):
return self.total_count - self.good_count
def bad(self):
rv = []
for entry in ('actions', 'packages', 'paths', 'services'):
rv.extend(getattr(self, entry).filter(state=TYPE_BAD))
return rv
def modified(self):
rv = []
for entry in ('actions', 'packages', 'paths', 'services'):
rv.extend(getattr(self, entry).filter(state=TYPE_MODIFIED))
return rv
def extra(self):
rv = []
for entry in ('actions', 'packages', 'paths', 'services'):
rv.extend(getattr(self, entry).filter(state=TYPE_EXTRA))
return rv
class Meta:
get_latest_by = 'timestamp'
ordering = ['-timestamp']
unique_together = ("client", "timestamp")
class Performance(models.Model):
"""Object representing performance data for any interaction."""
interaction = models.ForeignKey(Interaction, related_name="performance_items")
metric = models.CharField(max_length=128)
value = models.DecimalField(max_digits=32, decimal_places=16)
def __str__(self):
return self.metric
class Group(models.Model):
"""
Groups extracted from interactions
name - The group name
TODO - Most of this is for future use
TODO - set a default group
"""
name = models.CharField(max_length=255, unique=True)
profile = models.BooleanField(default=False)
public = models.BooleanField(default=False)
category = models.CharField(max_length=1024, blank=True)
comment = models.TextField(blank=True)
groups = models.ManyToManyField("self", symmetrical=False)
bundles = models.ManyToManyField("Bundle")
def __unicode__(self):
return self.name
class Meta:
ordering = ('name',)
@staticmethod
def prune_orphans():
'''Prune unused groups'''
Group.objects.filter(interaction__isnull=True, group__isnull=True).delete()
class Bundle(models.Model):
"""
Bundles extracted from interactions
name - The bundle name
"""
name = models.CharField(max_length=255, unique=True)
def __unicode__(self):
return self.name
class Meta:
ordering = ('name',)
@staticmethod
def prune_orphans():
'''Prune unused bundles'''
Bundle.objects.filter(interaction__isnull=True, group__isnull=True).delete()
# new interaction models
class FilePerms(models.Model):
owner = models.CharField(max_length=128)
group = models.CharField(max_length=128)
mode = models.CharField(max_length=128)
class Meta:
unique_together = ('owner', 'group', 'mode')
def empty(self):
"""Return true if we have no real data"""
if self.owner or self.group or self.mode:
return False
else:
return True
class FileAcl(models.Model):
"""Placeholder"""
name = models.CharField(max_length=128, db_index=True)
class BaseEntry(models.Model):
""" Abstract base for all entry types """
name = models.CharField(max_length=128, db_index=True)
hash_key = models.BigIntegerField(editable=False, db_index=True)
class Meta:
abstract = True
def save(self, *args, **kwargs):
if 'hash_key' in kwargs:
self.hash_key = kwargs['hash_key']
del kwargs['hash_key']
else:
self.hash_key = hash_entry(self.__dict__)
super(BaseEntry, self).save(*args, **kwargs)
def class_name(self):
return self.__class__.__name__
def short_list(self):
"""todo"""
return []
@classmethod
def entry_from_name(cls, name):
try:
newcls = globals()[name]
if not isinstance(newcls(), cls):
raise ValueError("%s is not an instance of %s" % (name, cls))
return newcls
except KeyError:
raise ValueError("Invalid type %s" % name)
@classmethod
def entry_from_type(cls, etype):
for entry_cls in (ActionEntry, PackageEntry, PathEntry, ServiceEntry):
if etype == entry_cls.ENTRY_TYPE:
return entry_cls
else:
raise ValueError("Invalid type %s" % etype)
@classmethod
def entry_get_or_create(cls, act_dict):
"""Helper to quickly lookup an object"""
cls_name = cls().__class__.__name__
act_hash = hash_entry(act_dict)
# TODO - get form cache and validate
act_key = "%s_%s" % (cls_name, act_hash)
newact = cache.get(act_key)
if newact:
return newact
acts = cls.objects.filter(hash_key=act_hash)
if len(acts) > 0:
for act in acts:
for key in act_dict:
if act_dict[key] != getattr(act, key):
continue
#match found
newact = act
break
# worst case, its new
if not newact:
newact = cls(**act_dict)
newact.save(hash_key=act_hash)
cache.set(act_key, newact, 60 * 60)
return newact
def is_failure(self):
return isinstance(self, FailureEntry)
@classmethod
def prune_orphans(cls):
'''Remove unused entries'''
cls.objects.filter(interaction__isnull=True).delete()
class SuccessEntry(BaseEntry):
"""Base for successful entries"""
state = models.IntegerField(choices=TYPE_CHOICES)
exists = models.BooleanField(default=True)
ENTRY_TYPE = r"Success"
@property
def entry_type(self):
return self.ENTRY_TYPE
def is_extra(self):
return self.state == TYPE_EXTRA
class Meta:
abstract = True
ordering = ('state', 'name')
def short_list(self):
"""Return a list of problems"""
rv = []
if self.is_extra():
rv.append("Extra")
elif not self.exists:
rv.append("Missing")
return rv
class FailureEntry(BaseEntry):
"""Represents objects that failed to bind"""
entry_type = models.CharField(max_length=128)
message = models.TextField()
def is_failure(self):
return True
class ActionEntry(SuccessEntry):
""" The new model for package information """
status = models.CharField(max_length=128, default="check")
output = models.IntegerField(default=0)
ENTRY_TYPE = r"Action"
class PackageEntry(SuccessEntry):
""" The new model for package information """
# if this is an extra entry trget_version will be empty
target_version = models.CharField(max_length=1024, default='')
current_version = models.CharField(max_length=1024)
verification_details = models.TextField(default="")
ENTRY_TYPE = r"Package"
#TODO - prune
def version_problem(self):
"""Check for a version problem."""
if not self.current_version:
return True
if self.target_version != self.current_version:
return True
elif self.target_version == 'auto':
return True
else:
return False
def short_list(self):
"""Return a list of problems"""
rv = super(PackageEntry, self).short_list()
if self.is_extra():
return rv
if not self.version_problem() or not self.exists:
return rv
if not self.current_version:
rv.append("Missing")
else:
rv.append("Wrong version")
return rv
class PathEntry(SuccessEntry):
"""reason why modified or bad entry did not verify, or changed."""
PATH_TYPES = (
("device", "Device"),
("directory", "Directory"),
("hardlink", "Hard Link"),
("nonexistent", "Non Existent"),
("permissions", "Permissions"),
("symlink", "Symlink"),
)
DETAIL_UNUSED = 0
DETAIL_DIFF = 1
DETAIL_BINARY = 2
DETAIL_SENSITIVE = 3
DETAIL_SIZE_LIMIT = 4
DETAIL_VCS = 5
DETAIL_PRUNED = 6
DETAIL_CHOICES = (
(DETAIL_UNUSED, 'Unused'),
(DETAIL_DIFF, 'Diff'),
(DETAIL_BINARY, 'Binary'),
(DETAIL_SENSITIVE, 'Sensitive'),
(DETAIL_SIZE_LIMIT, 'Size limit exceeded'),
(DETAIL_VCS, 'VCS output'),
(DETAIL_PRUNED, 'Pruned paths'),
)
path_type = models.CharField(max_length=128, choices=PATH_TYPES)
target_perms = models.ForeignKey(FilePerms, related_name="+")
current_perms = models.ForeignKey(FilePerms, related_name="+")
acls = models.ManyToManyField(FileAcl)
detail_type = models.IntegerField(default=0,
choices=DETAIL_CHOICES)
details = models.TextField(default='')
ENTRY_TYPE = r"Path"
def mode_problem(self):
if self.current_perms.empty():
return False
elif self.target_perms.mode != self.current_perms.mode:
return True
else:
return False
def has_detail(self):
return self.detail_type != PathEntry.DETAIL_UNUSED
def is_sensitive(self):
return self.detail_type == PathEntry.DETAIL_SENSITIVE
def is_diff(self):
return self.detail_type == PathEntry.DETAIL_DIFF
def is_sensitive(self):
return self.detail_type == PathEntry.DETAIL_SENSITIVE
def is_binary(self):
return self.detail_type == PathEntry.DETAIL_BINARY
def is_too_large(self):
return self.detail_type == PathEntry.DETAIL_SIZE_LIMIT
def short_list(self):
"""Return a list of problems"""
rv = super(PathEntry, self).short_list()
if self.is_extra():
return rv
if self.mode_problem():
rv.append("File mode")
if self.detail_type == PathEntry.DETAIL_PRUNED:
rv.append("Directory has extra files")
elif self.detail_type != PathEntry.DETAIL_UNUSED:
rv.append("Incorrect data")
if hasattr(self, 'linkentry') and \
self.linkentry.target_path != self.linkentry.current_path:
rv.append("Incorrect target")
return rv
class LinkEntry(PathEntry):
"""Sym/Hard Link types"""
target_path = models.CharField(max_length=1024, blank=True)
current_path = models.CharField(max_length=1024, blank=True)
def link_problem(self):
return self.target_path != self.current_path
class DeviceEntry(PathEntry):
"""Device types. Best I can tell the client driver needs work here"""
DEVICE_TYPES = (
("block", "Block"),
("char", "Char"),
("fifo", "Fifo"),
)
device_type = models.CharField(max_length=16, choices=DEVICE_TYPES)
target_major = models.IntegerField()
target_minor = models.IntegerField()
current_major = models.IntegerField()
current_minor = models.IntegerField()
class ServiceEntry(SuccessEntry):
""" The new model for package information """
target_status = models.CharField(max_length=128, default='')
current_status = models.CharField(max_length=128, default='')
ENTRY_TYPE = r"Service"
#TODO - prune
def status_problem(self):
return self.target_status != self.current_status
def short_list(self):
"""Return a list of problems"""
rv = super(ServiceEntry, self).short_list()
if self.status_problem():
rv.append("Incorrect status")
return rv
|