This file is indexed.

/usr/share/pyshared/jpylyzer/byteconv.py is in python-jpylyzer 1.10.1-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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

import struct
import binascii

# Convert byte object of bOrder byteorder to format using formatCharacter
# Return -9999 if unpack raised an error
def _doConv(bytestr, bOrder, formatCharacter):
	# Format string for unpack
	formatStr=bOrder+formatCharacter
	try:
		result=struct.unpack(formatStr,bytestr)[0]
	except:
		result=-9999
	return(result)

def bytesToULongLong(bytes):
	# Unpack 8 byte string to unsigned long long integer, assuming big-endian byte order.
	return _doConv(bytes, ">", "Q")

def bytesToUInt(bytes):
	# Unpack 4 byte string to unsigned integer, assuming big-endian byte order.
	return _doConv(bytes, ">", "I")

def bytesToUShortInt(bytes):
	# Unpack 2 byte string to unsigned short integer, assuming big-endian  byte order
	return _doConv(bytes, ">", "H")

def bytesToUnsignedChar(bytes):
	# Unpack 1 byte string to unsigned character/integer, assuming big-endian  byte order.
	return _doConv(bytes, ">", "B")

def bytesToSignedChar(bytes):
	# Unpack 1 byte string to signed character/integer, assuming big-endian byte order.
	return _doConv(bytes, ">", "b")
	
def bytesToInteger(bytes):
	# Unpack byte string of any length to integer.
	#
	# Taken from:
	# http://stackoverflow.com/questions/4358285/
	#
	# JvdK: what endianness is assumed here? Could go wrong on some systems?

	# binascii.hexlify will be obsolete in python3 soon
	# They will add a .tohex() method to bytes class
	# Issue 3532 bugs.python.org
	
	try:
		result=int(binascii.hexlify(bytes),16)
	except:
		result=-9999
	
	return (result)

def isctrl(c):
	# Returns True if byte corresponds to device control character
	# (See also: http://www.w3schools.com/tags/ref_ascii.asp)
	return (ord(c) < 32 or ord(c)==127)
	#return (0 <= ord(c) <= 8) or (ord(c) == 12) or (14 <= ord(c) < 32)
	
def bytesToHex(bytes):
	# Return hexadecimal ascii representation of bytes
	return binascii.hexlify(bytes)

def containsControlCharacters(bytes):
	# Returns True if bytes object contains control characters

	for i in range(len(bytes)):
		if isctrl(bytes[i:i+1]):
			return(True)
	return(False)	

def replaceControlCharacters(bytes):
	# Replace all occurrences of device control characters with
	# replaceByte

	# Set replacement byte for device control characters (*must* be a bytes
	# object, if not this won't work under Python 3!)
	replaceByte=b'*'
	
	# Output bytes object
	bytesOut=b''
	
	for i in range(len(bytes)):
		
		byteIn=bytes[i:i+1]
		
		if isctrl(byteIn):
			bytesOut=bytesOut + replaceByte
		else:
			bytesOut=bytesOut+byteIn

	return(bytesOut)

def bytesToText(bytes):
	# Unpack byte object to text string, assuming big-endian
	# byte order.
	
	# Set encoding
	enc="ascii"

	# Set error mode
	errorMode="strict"
	
	# Check if bytes object contains bytes that correspond to device control characters,
	# which are not allowed in XML
	
	if containsControlCharacters(bytes):
		# Return empty string
		result=""
		
	else:
		try:
			result=bytes.decode(encoding=enc,errors=errorMode)
			
		except:
			# Return empty string
			result=""
			
	return(result)