This file is indexed.

/usr/share/pyshared/tcm_iblock.py is in lio-utils 3.1+git2.fd0b34fd-2.

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

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
#!/usr/bin/python

import os, tempfile
import subprocess as sub
import string, re
from optparse import OptionParser

tcm_root = "/sys/kernel/config/target/core"

def createvirtdev(path, params):
#	print "Calling iblock createvirtdev: path " + path
	cfs_path = tcm_root + "/" + path + "/"
#	print "Calling iblock createvirtdev: params " + str(params)
	path = params[0]
	if not re.search('/dev/', path):
		print "IBLOCK: Please reference a valid /dev/ block_device"
		return -1

	udev_path = path.rstrip()
	# Resolve symbolic links to get major/minor
	udev_op = "/bin/ls -laL " + udev_path
	p = sub.Popen(udev_op, shell=True, stdout=sub.PIPE).stdout
	line = p.readline() 
	out = line.split(' ');
	major = out[4]
	minor = out[5]
	p.close()

	if major == "11,":
		print "Unable to export Linux/SCSI TYPE_CDROM from IBLOCK, please use pSCSI export"
		return -1
	if major == "22,":
		print "Unable to export IDE CDROM from IBLOCK"
		return -1

	set_udev_path_op = "echo -n " + udev_path + " > " + cfs_path + "udev_path"
	ret = os.system(set_udev_path_op)
	if ret:
		print "IBLOCK: Unable to set udev_path in " + cfs_path + " for: " + udev_path
		return -1

	control_opt = "echo -n udev_path=" + udev_path + " > " + cfs_path + "control"
	ret = os.system(control_opt)
	if ret:
		print "IBLOCK: createvirtdev failed for control_opt with " + control_opt
		return -1

	enable_opt = "echo 1 > " +  cfs_path + "enable"
	ret = os.system(enable_opt)
	if ret:
		print "IBLOCK: createvirtdev failed for enable_opt with " + enable_opt
		return -1

def iblock_freevirtdev():
	pass

def iblock_get_params(path):
	# Reference by udev_path if available	
	udev_path_file = path + "/udev_path"
	p = os.open(udev_path_file, 0)
	value = os.read(p, 1024)
	if re.search('/dev/', value):
		os.close(p)
		return value.rstrip()

	os.close(p)

	info_file = path + "/info"
	p = open(info_file, 'rU')
	try:
		value = p.read(1024)
	except IOError, msg:	
		p.close()
		return
	p.close()

	of = value.index('Major: ')
	off += 7
	major_tmp = value[off:]
	major = major_tmp.split(' ')
	off = value.index('Minor: ')
	off += 7
	minor_tmp = value[off:]
	minor = minor_tmp.split(' ')
	params = "major=" + major[0] + ",minor=" + minor[0]
	os.close(p)

	return params