Example #1
0
    def checkConnection(self) :
        command = "iwconfig " + self.interface
        status = weioSubprocess.shellBlocking(command)

        #print(str(status))
        # We are in STA mode, so check if we are connected
        if (status == "ERR_CMD") or "No such device" in status :
            # WiFi is DOWN
            print "Wifi is DOWN"
            self.mode = None
        # Check if wlan0 is in Master mode
        elif "Mode:Master" in status :
            print "AP Mode"
            self.mode = "ap"
            #self.essid = status.strip().startswith("ESSID:").split(':')[1]
        elif "Mode:Managed" in status :
            if "Access Point: Not-Associated" in status :
                self.mode = None
            else :
                self.mode = "sta"

        # We can not serve anything if we are not in sta or ap mode
        #print "CHECKING WIFI!"
        #if (self.mode != None):
        #   print "self.mode = " + self.mode
        #print "weioIpAddress.getLocalIpAddress() = " + weioIpAddress.getLocalIpAddress()

        if (self.mode == None):
            self.disconnectedCounter = self.disconnectedCounter + 1
        else:
            self.disconnectedCounter = 0

        config = weioConfig.getConfiguration()

        if ((self.disconnectedCounter >= 2 or (self.mode == "sta" and weioIpAddress.getLocalIpAddress() == ''))
             and config['auto_to_ap'] == "YES"):
            # Move to Master mode
            print "Trying to move to AP RESCUE mode..."
            subprocess.call("scripts/wifi_set_mode.sh rescue", shell=True)

            self.disconnectedCounter = 0

            # Restart Tornado (shell script bring it up whenever it exits)
            #cmd = "/etc/init.d/weio_run restart"
            #weioSubprocess.shellBlocking(cmd)
            print "************* EXITING ****************"
            os._exit(os.EX_OK)

        # At this point connection has been maid, and all we have to do is check ESSID
        #print "WIFI ESSID : ", status
        pat = r"(?<=ESSID:\")(.*\n?)(?=\")"
        #print "RESULT", re.findall(pat, status)[0]
        essidName = re.findall(pat, status)
        if (len(essidName)>0):
            self.essid = essidName[0]
Example #2
0
    def setConnection(self, mode):

        # Stop checking WiFi periodically (we will reset)
        self.periodicCheck.stop()

        print "SETTING THE CONNECTION " + mode
        """ First shut down the WiFi on Carambola """
        weioSubprocess.shellBlocking("wifi down")

        if (mode is 'ap'):
            fname = "/etc/config/wireless.ap"

            with open(fname) as f:
                out_fname = fname + ".tmp"
                out = open(out_fname, "w")
                for line in f:
                    line = re.sub(r"option\s+ssid\s.*$",
                                  r"option ssid " + "'" + self.essid + "'",
                                  line)

                    if (self.passwd == ""):
                        line = re.sub(r'option\s+encryption\s.*$',
                                      r'option encryption ' + "'none'", line)
                    else:
                        line = re.sub(r"option\s+key\s.*$",
                                      r"option key " + "'" + self.passwd + "'",
                                      line)
                        line = re.sub(
                            r'option\s+encryption\s.*$',
                            r'option encryption ' + "'psk2+tkip+ccmp'", line)
                    out.write(line)
                out.close()
                os.rename(out_fname, fname)
                shutil.copy(fname, "/etc/config/wireless")

            cmd = "scripts/wifi_set_mode.sh ap"
            subprocess.call(cmd, shell=True)

        elif (mode is 'sta'):
            """ Change the /etc/config/wireless.sta : replace the params """
            fname = "/etc/config/wireless.sta"
            with open(fname) as f:
                out_fname = fname + ".tmp"
                out = open(out_fname, "w")
                for line in f:
                    line = re.sub(r'option\s+ssid\s.*$',
                                  r'option ssid ' + "'" + self.essid + "'",
                                  line)
                    line = re.sub(r'option\s+key\s.*$',
                                  r'option key ' + "'" + self.passwd + "'",
                                  line)
                    if (self.passwd == ""):
                        line = re.sub(r'option\s+encryption\s.*$',
                                      r'option encryption ' + "'none'", line)
                    else:
                        line = re.sub(r"option\s+key\s.*$",
                                      r"option key " + "'" + self.passwd + "'",
                                      line)
                        line = re.sub(
                            r'option\s+encryption\s.*$',
                            r'option encryption ' + "'" + self.encryption +
                            "'", line)
                    out.write(line)
                out.close()
                os.rename(out_fname, fname)
                shutil.copy(fname, "/etc/config/wireless")

            cmd = "scripts/wifi_set_mode.sh sta"
            subprocess.call(cmd, shell=True)

        # Reset disconnectedCounter
        self.disconnectedCounter = 0

        # Restart Tornado (shell script bring it up whenever it exits)
        #cmd = "/etc/init.d/weio_run restart"
        #weioSubprocess.shellBlocking(cmd)
        print "======== EXIT TO GO TO SET CONNECTION ==============="
        os._exit(os.EX_OK)
Example #3
0
    def setConnection(self, mode):

        # Stop checking WiFi periodically (we will reset)
        self.periodicCheck.stop()
        
        print "SETTING THE CONNECTION " + mode

        """ First shut down the WiFi on Carambola """
        weioSubprocess.shellBlocking("wifi down")

        if (mode is 'ap') :
            fname = "/etc/config/wireless.ap"

            with open(fname) as f:
                out_fname = fname + ".tmp"
                out = open(out_fname, "w")
                for line in f:
                    line = re.sub(r"option\s+ssid\s.*$", r"option ssid " +
                            "'" + self.essid + "'", line)

                    if (self.passwd == ""):
                        line = re.sub(r'option\s+encryption\s.*$', r'option encryption '
                               + "'none'", line)
                    else:
                        line = re.sub(r"option\s+key\s.*$", r"option key " +
                                "'" + self.passwd + "'", line)
                        line = re.sub(r'option\s+encryption\s.*$', r'option encryption '
                               + "'psk2+tkip+ccmp'", line)
                    out.write(line)
                out.close()
                os.rename(out_fname, fname)
                shutil.copy(fname, "/etc/config/wireless")

            cmd = "scripts/wifi_set_mode.sh ap"
            subprocess.call(cmd, shell=True)

        elif (mode is 'sta') :
            """ Change the /etc/config/wireless.sta : replace the params """
            fname = "/etc/config/wireless.sta"
            with open(fname) as f:
                out_fname = fname + ".tmp"
                out = open(out_fname, "w")
                for line in f:
                    line = re.sub(r'option\s+ssid\s.*$', r'option ssid ' + "'" + self.essid + "'", line)
                    line = re.sub(r'option\s+key\s.*$', r'option key ' + "'" + self.passwd + "'", line)
                    if (self.passwd == ""):
                        line = re.sub(r'option\s+encryption\s.*$', r'option encryption '
                               + "'none'", line)
                    else:
                        line = re.sub(r"option\s+key\s.*$", r"option key " +
                                "'" + self.passwd + "'", line)
                        line = re.sub(r'option\s+encryption\s.*$', r'option encryption ' +
                                "'" + self.encryption + "'", line)
                    out.write(line)
                out.close()
                os.rename(out_fname, fname)
                shutil.copy(fname, "/etc/config/wireless")
	
            cmd = "scripts/wifi_set_mode.sh sta"
            subprocess.call(cmd, shell=True)

        # Reset disconnectedCounter
        self.disconnectedCounter = 0

        # Restart Tornado (shell script bring it up whenever it exits)
        #cmd = "/etc/init.d/weio_run restart"
        #weioSubprocess.shellBlocking(cmd)
        print "======== EXIT TO GO TO SET CONNECTION ==============="
        os._exit(os.EX_OK)