This file is indexed.

/usr/lib/python2.7/dist-packages/framework/subsystems/onetworkd/sharing.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
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env python
"""
Network Connection Sharing

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

Package: onetworkd
Module: sharing
"""

MODULE_NAME = "onetworkd"
__version__ = "0.0.1"

from network import theNetwork
from helpers import isValidAddress, writeToFile
import dhcp

import dbus
import dbus.service
import gobject

import os, subprocess

import logging
logger = logging.getLogger( MODULE_NAME )

DBUS_INTERFACE_NETWORK = "org.freesmartphone.Network"
DBUS_OBJECT_PATH = "/org/freesmartphone/Network"

#============================================================================#
class NoInterface( dbus.DBusException ):
#============================================================================#
    _dbus_error_name = "org.freesmartphone.Network.NoInterface"

#============================================================================#
class NoAddress( dbus.DBusException ):
#============================================================================#
    _dbus_error_name = "org.freesmartphone.Network.NoAddress"

#============================================================================#
class InternalError( dbus.DBusException ):
#============================================================================#
    _dbus_error_name = "org.freesmartphone.Network.InternalError"

#============================================================================#
class ConnectionSharing( dbus.service.Object ):
#============================================================================#
    def __init__( self, bus ):
        self.path = DBUS_OBJECT_PATH
        dbus.service.Object.__init__( self, bus, self.path )
        self.bus = bus

    #
    # dbus org.freesmartphone.Network
    #
    @dbus.service.method( DBUS_INTERFACE_NETWORK, "s", "",
                          async_callbacks=( "dbus_ok", "dbus_error" ) )
    def StartConnectionSharingWithInterface( self, interface, dbus_ok, dbus_error ):
        """

        This should be roughly equivalent to:

        #!/bin/sh
        iptables -I INPUT 1 -s 192.168.0.200 -j ACCEPT
        iptables -I OUTPUT 1 -s 192.168.0.202 -j ACCEPT
        iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24
        echo 1 > /proc/sys/net/ipv4/ip_forward

        <prepare udhcpd configuration>
        <launch udhcpd>
        """

        try:
            iface = theNetwork[ str(interface) ]
        except KeyError:
            dbus_error( NoInterface( "%s is not a valid interface. Known interfaces are %s" % ( interface, theNetwork.keys() ) ) )
            return

        source_address = iface.ipAddress4()

        commands = []
        commands.append( "iptables -I INPUT 1 -s 192.168.0.0/24 -j ACCEPT" )
        commands.append( "iptables -I OUTPUT 1 -s %s -j ACCEPT" % source_address )
        commands.append( "iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24" )

        for command in commands:
            logger.debug( "issuing command '%s'" % command )
            result = subprocess.call( command.split( ' ' ) )
            logger.debug( "command result = %d" % result )
            if result != 0:
                dbus_error( InternalError( "%s gave returncode %d" % ( command, result ) ) )
                return
        writeToFile( "/proc/sys/net/ipv4/ip_forward", "1" )


        dhcp.prepareDaemonConfigurationForInterface( iface )
        dhcp.launchDaemon()

        dbus_ok()

    def StopConnectionSharing( self, interface, dbus_ok, dbus_error ):

        """
        stop dhcpd daemons
        clear iptables
        """

#============================================================================#
def factory(prefix, controller):
#============================================================================#
    """This is the magic function that will be called by the framework module manager"""
    return [ ConnectionSharing( controller.bus ) ]

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