This file is indexed.

/usr/share/pyshared/slapos/proxy/query.py is in slapos-node-unofficial 0.35.1-4.

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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#!/opt/slapos/bin/py
# -*- coding: utf-8 -*-
# vim: set et sts=4:

import collections
import ConfigParser
from optparse import OptionParser, Option
import sys

import lxml.etree
import sqlite3

from slapos.proxy.db_version import DB_VERSION



class Parser(OptionParser):
    """
    Parse all arguments.
    """
    def __init__(self, usage=None, version=None):
      """
      Initialize all options possibles.
      """
      OptionParser.__init__(self, usage=usage, version=version,
                            option_list=[
          Option("-u", "--database-uri",
                 type=str,
                 help="URI for sqlite database"),
          Option('--show-instances',
                 help="View instance information",
                 default=False,
                 action="store_true"),
          Option('--show-params',
                 help="View published parameters",
                 default=False,
                 action="store_true"),
          Option('--show-network',
                 help="View network information",
                 default=False,
                 action="store_true"),
          Option('--show-all',
                 help="View all information",
                 default=False,
                 action="store_true"),
      ])

    def check_args(self):
        """
        Check arguments
        """
        (options, args) = self.parse_args()
        args_len = len(args)
        if args_len < 1:
          return options, '/etc/slapos/slapos-node-unofficial.cfg'

        return options, args[0]

class Config:
    def setConfig(self, option_dict, configuration_file_path):
        """
        Set options given by parameters.
        """
        # Set options parameters
        for option, value in option_dict.__dict__.items():
          setattr(self, option, value)

        # Load configuration file
        configuration_parser = ConfigParser.SafeConfigParser()
        configuration_parser.read(configuration_file_path)
        # Merges the arguments and configuration
        for section in ("slapproxy", "slapos"):
            configuration_dict = dict(configuration_parser.items(section))
            for key in configuration_dict:
                if not getattr(self, key, None):
                    setattr(self, key, configuration_dict[key])

        if not self.database_uri:
            raise ValueError('database-uri is required.')



tbl_computer = 'computer' + DB_VERSION
tbl_software = 'software' + DB_VERSION
tbl_partition = 'partition' + DB_VERSION
tbl_partition_network = 'partition_network' + DB_VERSION
tbl_slave = 'slave' + DB_VERSION

null_str = u"-"


def print_table(qry, tablename, skip=None):
    if skip is None:
        skip = set()

    columns = [c[0] for c in qry.description if c[0] not in skip]
    rows = []
    for row in qry.fetchall():
        line = {}
        for col in columns:
            val = row[col]
            if val is None:
                val = null_str
            line[col] = val.strip()
        rows.append(line)

    max_width = {col: len(col) for col in columns}
    for row in rows:
        for col in columns:
            val = row[col]
            max_width[col] = max(max_width[col], len(val) if val else 0)

    hdr = [col.center(max_width[col]) for col in columns]

    print

    if rows:
        print 'table %s:' % tablename,
    else:
        print 'table %s: empty' % tablename
        return

    if skip:
        print 'skipping %s' % ', '.join(skip)
    else:
        print

    print ' | '.join(hdr)
    print '-+-'.join('-'*len(h) for h in hdr)

    for row in rows:
        cells = [row[col].ljust(max_width[col]) for col in columns]
        print ' | '.join(cells)


def print_params(conn):
    cur = conn.cursor()

    print

    qry = cur.execute("SELECT reference, partition_reference, software_type, connection_xml FROM %s" % tbl_partition)
    for row in qry.fetchall():
        if not row['connection_xml']:
            continue

        xml = str(row['connection_xml'])
        print '%s: %s (type %s)' % (row['reference'], row['partition_reference'], row['software_type'])
        instance = lxml.etree.fromstring(xml)
        for parameter in list(instance):
            name = parameter.get('id')
            text = parameter.text
            if text and name in ('ssh-key', 'ssh-public-key'):
                text = text[:20] + '...' + text[-20:]
            print '    %s = %s' % (name, text)
        print


def print_computer_table(conn):
    cur = conn.cursor()
    qry = cur.execute("SELECT * FROM %s" % tbl_computer)
    print_table(qry, tbl_computer)


def print_software_table(conn):
    cur = conn.cursor()
    qry = cur.execute("SELECT * FROM %s" % tbl_software)
    print_table(qry, tbl_software)


def print_partition_table(conn):
    cur = conn.cursor()
    qry = cur.execute("SELECT * FROM %s WHERE slap_state<>'free'" % tbl_partition)
    print_table(qry, tbl_partition, skip=['xml', 'connection_xml', 'slave_instance_list'])

def print_slave_table(conn):
    cur = conn.cursor()
    qry = cur.execute("SELECT * FROM %s" % tbl_slave)
    print_table(qry, tbl_slave, skip=['connection_xml'])


def print_tables(conn):
    print_computer_table(conn)
    print_software_table(conn)
    print_partition_table(conn)
    print_slave_table(conn)


def print_network(conn):
    print
    cur = conn.cursor()
    addr = collections.defaultdict(list)
    qry = cur.execute("""
                      SELECT * FROM %s
                       WHERE partition_reference NOT IN (
                                                SELECT reference
                                                  FROM %s
                                                 WHERE slap_state='free')
                        """ % (tbl_partition_network, tbl_partition))
    for row in qry:
        addr[row['partition_reference']].append(row['address'])

    for partition_reference in sorted(addr.keys()):
        addresses = addr[partition_reference]
        print '%s: %s' % (partition_reference, ', '.join(addresses))




def run(config):
    conn = sqlite3.connect(config.database_uri)
    conn.row_factory = sqlite3.Row

    fn = []

    if config.show_all or config.show_instances:
        fn.append(print_tables)
    if config.show_all or config.show_params:
        fn.append(print_params)
    if config.show_all or config.show_network:
        fn.append(print_network)

    if fn:
        for f in fn:
            f(conn)
    else:
        print 'usage: %s [ --show-params | --show-network | --show-instances | --show-all ]' % sys.argv[0]



def main():
  "Run default configuration."
  usage = """usage: %s [options] CONFIGURATION_FILE

If CONFIGURATION_FILE is not given explicitly, it fallbacks on
`/etc/slapos/slapos-node-unofficial.cfg'.
""" % sys.argv[0]

  try:
    # Parse arguments
    config = Config()
    config.setConfig(*Parser(usage=usage).check_args())

    run(config)
    return_code = 0
  except SystemExit, err:
    # Catch exception raise by optparse
    return_code = err

  sys.exit(return_code)