This file is indexed.

/usr/lib/python2.7/dist-packages/vamos/vampyr/Message_test.py is in undertaker 1.6-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#!/usr/bin/env python
#
#   vampyr - extracts presence implications from kconfig dumps
#
# Copyright (C) 2011 Christian Dietrich <christian.dietrich@informatik.uni-erlangen.de>
# Copyright (C) 2012 Reinhard Tartler <tartler@informatik.uni-erlangen.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


import unittest as t

from vamos.vampyr.Messages import SparseMessage, SpatchMessage, GccMessage

from pprint import pprint

class TestMessage(t.TestCase):

    def setUp(self):
        self.sparse_output = """\
kernel/fork.c:709: warning: incorrect type in argument 1 (different signedness) | expected unsigned int [noderef] [usertype] <asn:1>*uaddr | got int [noderef] <asn:1>*clear_child_tid
include/linux/mm.h:723: warning: potentially expensive pointer subtraction
kernel/fork.c:85: warning: symbol 'max_threads' was not declared. Should it be static?
kernel/fork.c:210: warning: symbol 'fork_init' was not declared. Should it be static?
make[1]: *** [kernel/fork.o] Error 42
"""
        messages = SparseMessage.preprocess_messages(self.sparse_output.splitlines())
        self.sparse_messages = [SparseMessage(None, x) for x in messages]


        self.spatch_output = """\
net/core/skbuff.c:935:24-33: reference preceded by free on line 920
net/core/skbuff.c.source1:935:24-33: reference preceded by free on line 920
net/core/skbuff.c.source0:935:24-33: reference preceded by free on line 920
Killed
"""

        messages = SpatchMessage.preprocess_messages(self.spatch_output.splitlines())
        self.spatch_messages = [SpatchMessage(None, x, "net/core/skbuff.c", "dummy.cocci") for x in messages]

    def test_number_of_messages_sparse(self):
        self.assertEqual(len(self.sparse_output.splitlines()),
                         len(self.sparse_messages) + 1 ) # ignore the make error

    def test_equality_sparse(self):
        self.assertNotEqual(self.sparse_messages[1], self.sparse_messages[2])

    def test_number_of_messages_spatch(self):
        self.assertEqual(len(self.spatch_messages) + 1, # ignore the 'Killed' line
                         len(self.spatch_output.splitlines()))

    def test_non_equality_spatch(self):
        reference = self.spatch_messages[0]
        for m in self.spatch_messages[1:]:
            self.assertEqual(reference.get_message(), m.get_message(),
                             "Messages not correctly normalized:\n%s" % 
                             "\n".join(x.get_message() for x in self.spatch_messages))

    def test_busybox_gcc(self):
        gcc_busybox_output = """\
  CC      applets/applets.o
In file included from include/busybox.h:8:0,
                 from applets/applets.c:9:
include/libbb.h:81:30: fatal error: selinux/selinux.h: No such file or directory
compilation terminated.
make[1]: *** [applets/applets.o] Error 1
make: *** [applets_dir] Error 2
"""
        messages = GccMessage.preprocess_messages(gcc_busybox_output.splitlines())
        gcc_objs = list()
        for msg in messages:
            pprint (msg)
            gcc_objs.append(GccMessage("applets.config1", msg))
        self.assertEqual(len(gcc_objs), 1)
        for msg in gcc_objs:
            pprint(msg)
            self.assertTrue(msg.is_error, "message '%s' does not indicate an error!" % msg.bare_message)

if __name__ == '__main__':
    t.main()