aboutsummaryrefslogtreecommitdiff
blob: d5a7b74d115f52d7df938513b58d26a86b8723e8 (plain)
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (c) 2017, Alice Ferrazzi <alice.ferrazzi@gmail.com>
# Distributed under the terms of the GNU General Public License v2 or later

import os
from git import Repo
from elivepatch_client.client import restful
import gzip
import os
import os.path
import re
import shelve


class Kernel(object):

    def __init__(self, url):
        self.config = ''
        self.patch = ''
        self.url = url
        self.kernel_version = self.get_version()
        self.rest_manager = restful.ManaGer(url, self.kernel_version)
        self.UserID = None

    def get_version(self):
        tmp = os.uname()[2]
        version = tmp
        return version

    def set_config(self, config_path):
        self.config = config_path

    def set_patch(self, patch_path):
        self.patch = patch_path

    def send_config(self):
        d = shelve.open('userid')
        print('conifg path: '+ str(self.config) + 'server url: ' + str(self. url))
        print (os.path.basename(self.config))
        path, file = (os.path.split(self.config))
        if re.findall("[.]gz\Z", self.config):
            print('gz extension')
            f_action = FileAction(path, file)
            path, file = f_action.ungz()
            # if the file is .gz the configuration path is the tmp folder uncompressed config file
            self.config = os.path.join(path,file)
        # we are sending only uncompressed configuration files
        replay = self.rest_manager.send_file(self.config, file, '/elivepatch/api/v1.0/config')
        userid = replay['get_config']['UserID']
        old_userid = d['UserID']
        if userid:
            print(userid)
            d['UserID'] = userid
            d.close()


    def send_patch(self):
        d = shelve.open('userid')
        print("self.patch: "+ self.patch + ' url: '+ self.url)
        path, file = (os.path.split(self.patch))
        print('file :'+ file)
        replay = self.rest_manager.send_file(self.patch, file, '/elivepatch/api/v1.0/patch')
        new_userid = replay['get_patch']['UserID']
        if new_userid:
            print(new_userid)
            d['UserID'] = new_userid
            d.close()

    def build_livepatch(self):
        self.rest_manager.build_livepatch()

    def get_livepatch(self):
        self.rest_manager.get_livepatch()


class CVE(object):

    def __init__(self):
        self.git_url = "https://github.com/nluedtke/linux_kernel_cves"
        self.repo_dir = "/tmp/kernel_cve/"
        pass

    def download(self):
        Repo.clone_from(self.git_url, self.repo_dir)

    def set_repo(self, git_url, repo_dir):
        self.git_url = git_url
        self.repo_dir = repo_dir


class FileAction(object):

    def __init__(self, path, filename):
        self.path = path
        self.filename = filename
        pass

    def ungz(self):
        path_to_store = None
        get_file_path = self.path +'/'+self.filename
        store_file_path = '/tmp/'+self.filename
        print('file_path: '+ get_file_path)
        if not os.path.isdir(get_file_path):
            with gzip.open(get_file_path, 'rb') as in_file:
                s = in_file.read()
            # Store uncompressed file
            path_to_store = store_file_path[:-3]  # remove the filename extension
            with open(path_to_store, 'w') as f:
                f.write(s)
            print('working')
            path, uncompressed_file = (os.path.split(path_to_store))
        return path, uncompressed_file