This file is indexed.

/usr/lib/python2.7/dist-packages/framework/subsystems/ousaged/lowlevel.py is in fso-frameworkd 0.10.1-3.

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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
Open Usage Daemon - Generic reference counted Resource Management

(C) 2008 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
(C) 2008 Openmoko, Inc.
GPLv2 or later

Package: ousaged
Module: lowlevel

Low level (device specific) suspend/resume handling.
"""

MODULE_NAME = "ousaged"
__version__ = "0.0.1"

from helpers import readFromFile, writeToFile, hardwareName

import logging
logger = logging.getLogger( MODULE_NAME )

#============================================================================#
class GenericResumeReason( object ):
#============================================================================#
    """
    Generic resume reason class.
    """
    def gather( self ):
        return "unknown"

#============================================================================#
class OpenmokoResumeReason( object ):
#============================================================================#
    """
    Resume reason class for Openmoko GTA01 (Neo 1973) and GTA02 (Neo FreeRunner).
    """
    SYSFS_RESUME_REASON_PATH = "/sys/bus/platform/devices/neo1973-resume.0/resume_reason"
    SYSFS_RESUME_SUBREASON_PATH = "/sys/class/i2c-adapter/i2c-0/0-0073/resume_reason"

    def __init__( self ):

        self._intmap1 = { \
            "EINT00_ACCEL1": "Accelerometer",
            "EINT01_GSM": "GSM",
            "EINT02_BLUETOOTH": "Bluetooth",
            "EINT03_DEBUGBRD": "Debug",
            "EINT04_JACK": "Headphone",
            "EINT05_WLAN": "Wifi",
            "EINT06_AUXKEY": "Auxkey",
            "EINT07_HOLDKEY": "Holdkey",
            "EINT08_ACCEL2": "Accelerometer",
            "EINT09_PMU": "PMU",
            "EINT10_NULL": "invalid",
            "EINT11_NULL": "invalid",
            "EINT12_GLAMO": "GFX",
            "EINT13_NULL": "invalid",
            "EINT14_NULL": "invalid",
            "EINT15_NULL": "invalid",
        }

        self._intmap2 = { \
            "0000000200": "LowBattery",
            "0002000000": "PowerKey",
        }

    def gather( self ):
        reasons = readFromFile( self.__class__.SYSFS_RESUME_REASON_PATH ).split( '\n' )
        for line in reasons:
            if line.startswith( "*" ):
                reason = line[2:]
                break
        else:
            print "nope"
            logger.info( "No resume reason marked in %s" % self.__class__.SYSFS_RESUME_REASON_PATH )
            return "unknown"

        if reason == "EINT09_PMU":
            logger.debug( "PMU resume reason marked in %s" % self.__class__.SYSFS_RESUME_REASON_PATH )

            value = readFromFile( self.__class__.SYSFS_RESUME_SUBREASON_PATH )
            try:
                subreason = self._intmap2[value]
            except KeyError:
                logger.debug( "Unknown subreason for PMU resume" )
                return "PMU"
            else:
                return subreason
        else:
            return self._intmap1.get( reason, "unknown" )

#============================================================================#

hardware = hardwareName()
if hardware in "GTA01 GTA02".split():
    ResumeReason = OpenmokoResumeReason
else:
    ResumeReason = GenericResumeReason

resumeReasonObj = ResumeReason()
resumeReason = resumeReasonObj.gather

#============================================================================#
if __name__ == "__main__":
#============================================================================#
    pass