This file is indexed.

/usr/bin/wammu is in wammu 0.44-1.

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
 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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
#
# Copyright © 2003 - 2018 Michal Čihař <michal@cihar.com>
#
# This file is part of Wammu <https://wammu.eu/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
'''
Wammu - Phone manager
Execution script
'''
from __future__ import unicode_literals
from __future__ import print_function

import os
import sys
import getopt
try:
    import Wammu
except ImportError:
    print('Failed to import Wammu module, trying to fix sys.path!')
    sys.path.append(
        os.path.join(
            os.path.dirname(__file__),
            '..', 'lib', 'python2.7', 'site-packages'
        )
    )
    sys.path.append(
        os.path.join(
            os.path.dirname(__file__),
            '..', 'lib', 'python2.7', 'dist-packages'
        )
    )
    import Wammu
import Wammu.Locales
from Wammu.Locales import ugettext as _

# Disable warning about missing files
# This can be caused by attempt to import Python modules, which don't
# have all DLLs satisfied.
if sys.platform.startswith('win'):
    import win32api
    import win32con
    win32api.SetErrorMode(win32con.SEM_NOOPENFILEERRORBOX)


def version():
    '''
    Displays version information.
    '''
    print(_('Wammu - Windowed Gammu version %s') % Wammu.__version__)


def usage():
    '''
    Shows program usage.
    '''
    version()
    print(_('Usage: %s [OPTION...]' % os.path.basename(__file__)))
    print()
    print(_('Options:'))
    print('%-20s ... %s' % (
        '-h/--help',
        _('show this help')
    ))
    print('%-20s ... %s' % (
        '-v/--version',
        _('show program version')
    ))
    print('%-20s ... %s' % (
        '-l/--local-locales',
        _('force using of locales from current directory rather than system ones')
    ))
    print('%-20s ... %s' % (
        '-i/--info',
        _('prints connection settings and tries to connect the phone')
    ))
    print('%-20s ... %s' % (
        '-d/--debug',
        _('enables debug output to stderr')
    ))
    print()


def info():
    '''
    Displays configuration summary and tries to connect to phone.
    '''
    import Wammu.WammuSettings
    import Wammu.Utils
    import gammu

    settings = Wammu.WammuSettings.WammuConfig()
    section = settings.ReadInt('/Gammu/Section')
    config = settings.gammu.GetConfig(section)
    if config['Connection'] == '' or config['Device'] == '':
        print(_('Wammu is not configured!'))

    cfg = {
        'StartInfo': settings.ReadBool('/Gammu/StartInfo'),
        'UseGlobalDebugFile': True,
        'DebugFile': None,  # Set on other place
        'SyncTime': settings.ReadBool('/Gammu/SyncTime'),
        'Connection': config['Connection'],
        'LockDevice': settings.ReadBool('/Gammu/LockDevice'),
        'DebugLevel': 'textalldate',  # Set on other place
        'Device': config['Device'],
        'Model': config['Model'],
    }

    # Compatibility with old Gammu versions
    cfg = Wammu.Utils.CompatConfig(cfg)

    print(_('Wammu configuration:'))
    print('%-15s: %s' % (_('Connection'), cfg['Connection']))
    print('%-15s: %s' % (_('Model'), cfg['Model']))
    print('%-15s: %s' % (_('Device'), cfg['Device']))
    print(_('Connecting...'))
    if Wammu.debug:
        gammu.SetDebugFile(sys.stderr)
        gammu.SetDebugLevel('textalldate')
    sm = gammu.StateMachine()
    sm.SetConfig(0, cfg)
    sm.Init()
    print(_('Getting phone information...'))
    Manufacturer = sm.GetManufacturer()
    Model = sm.GetModel()
    IMEI = sm.GetIMEI()
    Firmware = sm.GetFirmware()
    Code = sm.GetSecurityStatus()
    print(_('Phone infomation:'))
    print('%-15s: %s' % (_('Manufacturer'), Manufacturer))
    print('%-15s: %s (%s)' % (_('Model'), Model[0], Model[1]))
    print('%-15s: %s' % (_('IMEI'), IMEI))
    print('%-15s: %s' % (_('Firmware'), Firmware[0]))
    if Code is not None:
        print('%-15s: %s' % (_('Requested code'), Code))


def parse_options():
    '''
    Processes program options.
    '''
    try:
        opts, args = getopt.getopt(
            sys.argv[1:],
            'hvlid',
            ['help', 'version', 'local-locales', 'info', 'debug']
        )
    except getopt.GetoptError as val:
        usage()
        print(_('Command line parsing failed with error:'))
        print(val)
        sys.exit(2)

    if len(args) != 0:
        usage()
        print(_('Extra unrecognized parameters passed to program'))
        sys.exit(3)

    do_info = False

    for opt, dummy in opts:
        if opt in ('-l', '--local-locales'):
            Wammu.Locales.UseLocal()
            print(_('Using local built locales!'))
        if opt in ('-h', '--help'):
            usage()
            sys.exit()
        if opt in ('-v', '--version'):
            version()
            sys.exit()
        if opt in ('-i', '--info'):
            do_info = True
        if opt in ('-d', '--debug'):
            Wammu.debug = True

    if do_info:
        info()
        sys.exit()


if __name__ == '__main__':
    Wammu.Locales.Init()
    parse_options()
    # need to be imported after locales are initialised
    import Wammu.App
    Wammu.App.Run()