aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/contentviews/protobuf.py
blob: 4bbb1580931436dc794ed7b9ece00f9434fe49f9 (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
import subprocess

from . import base


class ViewProtobuf(base.View):
    """Human friendly view of protocol buffers
    The view uses the protoc compiler to decode the binary
    """

    name = "Protocol Buffer"
    prompt = ("protobuf", "p")
    content_types = [
        "application/x-protobuf",
        "application/x-protobuffer",
    ]

    def is_available(self):
        try:
            p = subprocess.Popen(
                ["protoc", "--version"],
                stdout=subprocess.PIPE
            )
            out, _ = p.communicate()
            return out.startswith(b"libprotoc")
        except:
            return False

    def __call__(self, data, **metadata):
        if not self.is_available():
            raise NotImplementedError("protoc not found. Please make sure 'protoc' is available in $PATH.")

        # if Popen raises OSError, it will be caught in
        # get_content_view and fall back to Raw
        p = subprocess.Popen(['protoc', '--decode_raw'],
                             stdin=subprocess.PIPE,
                             stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE)
        decoded, _ = p.communicate(input=data)
        if not decoded:
            raise ValueError("Failed to parse input.")
        return "Protobuf", base.format_text(decoded)