This file is indexed.

/usr/share/pyshared/spambayes/safepickle.py is in spambayes 1.1a6-1.

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
"""Lock pickle files for reading and writing."""

import sys
import os
import cPickle as pickle

import lockfile

from spambayes.Options import options

def pickle_read(filename):
    """Read pickle file contents with a lock."""
    lock = lockfile.FileLock(filename)
    lock.acquire(timeout=20)
    try:
        return pickle.load(open(filename, 'rb'))
    finally:
        lock.release()

def pickle_write(filename, value, protocol=0):
    '''Store value as a pickle without creating corruption'''

    lock = lockfile.FileLock(filename)
    lock.acquire(timeout=20)

    try:
        # Be as defensive as possible.  Always keep a safe copy.
        tmp = filename + '.tmp'
        fp = None
        try: 
            fp = open(tmp, 'wb') 
            pickle.dump(value, fp, protocol) 
            fp.close() 
        except IOError, e: 
            if options["globals", "verbose"]: 
                print >> sys.stderr, 'Failed update: ' + str(e)
            if fp is not None: 
                os.remove(tmp) 
            raise
        try:
            # With *nix we can just rename, and (as long as permissions
            # are correct) the old file will vanish.  With win32, this
            # won't work - the Python help says that there may not be
            # a way to do an atomic replace, so we rename the old one,
            # put the new one there, and then delete the old one.  If
            # something goes wrong, there is at least a copy of the old
            # one.
            os.rename(tmp, filename)
        except OSError:
            os.rename(filename, filename + '.bak')
            os.rename(tmp, filename)
            os.remove(filename + '.bak')
    finally:
        lock.release()