This file is indexed.

/usr/lib/python2.7/dist-packages/pyavm/embed.py is in python-pyavm 0.9.4-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
 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
from __future__ import print_function, division

import struct
import warnings

from .jpeg import is_jpeg, JPEGFile, JPEGSegment
from .png import is_png, PNGFile, PNGChunk


def embed_xmp(image_in, image_out, xmp_packet):

    if is_jpeg(image_in):

        # Check length
        if len(xmp_packet) >= 65503:
            raise Exception("XMP packet is too long to embed in JPG file")

        # XMP segment
        xmp_segment = JPEGSegment()

        # APP1 marker
        xmp_segment.bytes = b"\xff\xe1"

        # Length of XMP packet + 2 + 29
        xmp_segment.bytes += struct.pack('>H', len(xmp_packet) + 29 + 2)

        # XMP Namespace URI (NULL-terminated)
        xmp_segment.bytes += b"http://ns.adobe.com/xap/1.0/\x00"

        # XMP packet
        xmp_segment.bytes += xmp_packet

        # Read in input file
        jpeg_file = JPEGFile.read(image_in)

        # Check if there is already XMP data in the file
        existing = []
        for segment in jpeg_file.segments:
            if segment.type == 'APP1':
                if segment.bytes[4:32] == b'http://ns.adobe.com/xap/1.0/':
                    existing.append(segment)
        if existing:
            warnings.warn("Discarding existing XMP packet from JPEG file")
            for e in existing:
                jpeg_file.segments.remove(e)

        # Position at which to insert the packet
        markers = [x.type for x in jpeg_file.segments]

        if 'APP1' in markers:  # Put it after existing APP1
            index = markers.index('APP1') + 1
        elif 'APP0' in markers:  # Put it after existing APP0
            index = markers.index('APP0') + 1
        elif 'SOF' in markers:
            index = markers.index('SOF')
        else:
            raise ValueError("Could not find SOF marker")

        # Insert segment into JPEG file
        jpeg_file.segments.insert(index, xmp_segment)
        jpeg_file.write(image_out)

    elif is_png(image_in):

        xmp_chunk = PNGChunk()

        # Keyword
        xmp_chunk.data = b'XML:com.adobe.xmp'

        # Null separator
        xmp_chunk.data += b'\x00'

        # Compression flag
        xmp_chunk.data += b'\x00'

        # Compression method
        xmp_chunk.data += b'\x00'

        # Null separator
        xmp_chunk.data += b'\x00'

        # Null separator
        xmp_chunk.data += b'\x00'

        # Text
        xmp_chunk.data += xmp_packet

        # Set type
        xmp_chunk.type = b'iTXt'

        # Read in input file
        png_file = PNGFile.read(image_in)

        # Check if there is already XMP data in the file
        existing = []
        for chunk in png_file.chunks:
            if chunk.type == b'iTXt':
                if chunk.data.startswith(b'XML:com.adobe.xmp'):
                    existing.append(chunk)
        if existing:
            warnings.warn("Discarding existing XMP packet from PNG file")
            for e in existing:
                png_file.chunks.remove(e)

        # Insert chunk into PNG file
        png_file.chunks.insert(1, xmp_chunk)
        png_file.write(image_out)

    else:

        raise Exception("Only JPG and PNG files are supported at this time")