Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python2.7 |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 2 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 3 | |
| 4 | """ |
Junxiao Shi | e273333 | 2016-11-24 14:11:40 +0000 | [diff] [blame] | 5 | Copyright (c) 2014-2016, Regents of the University of California, |
| 6 | Arizona Board of Regents, |
| 7 | Colorado State University, |
| 8 | University Pierre & Marie Curie, Sorbonne University, |
| 9 | Washington University in St. Louis, |
| 10 | Beijing Institute of Technology, |
| 11 | The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 12 | |
| 13 | This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 14 | See AUTHORS.md for complete list of NFD authors and contributors. |
| 15 | |
| 16 | NFD is free software: you can redistribute it and/or modify it under the terms |
| 17 | of the GNU General Public License as published by the Free Software Foundation, |
| 18 | either version 3 of the License, or (at your option) any later version. |
| 19 | |
| 20 | NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 21 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 22 | PURPOSE. See the GNU General Public License for more details. |
| 23 | |
| 24 | You should have received a copy of the GNU General Public License along with |
| 25 | NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 26 | """ |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 27 | |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 28 | from BaseHTTPServer import HTTPServer |
| 29 | from SimpleHTTPServer import SimpleHTTPRequestHandler |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 30 | from SocketServer import ThreadingMixIn |
| 31 | import sys |
Chengyu Fan | 30aa207 | 2014-07-20 13:52:32 -0600 | [diff] [blame] | 32 | import subprocess |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 33 | import urlparse |
| 34 | import logging |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 35 | import argparse |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 36 | import socket |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 37 | import os |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 38 | |
| 39 | |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 40 | class StatusHandler(SimpleHTTPRequestHandler): |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 41 | """ The handler class to handle requests.""" |
| 42 | def do_GET(self): |
| 43 | # get the url info to decide how to respond |
| 44 | parsedPath = urlparse.urlparse(self.path) |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 45 | if parsedPath.path == "/": |
| 46 | # get current nfd status, and use it as result message |
| 47 | (res, resultMessage) = self.getNfdStatus() |
| 48 | self.send_response(200) |
| 49 | if res == 0: |
| 50 | self.send_header("Content-type", "text/xml; charset=UTF-8") |
| 51 | else: |
| 52 | self.send_header("Content-type", "text/html; charset=UTF-8") |
| 53 | |
| 54 | self.end_headers() |
| 55 | self.wfile.write(resultMessage) |
| 56 | elif parsedPath.path == "/robots.txt" and self.server.robots == True: |
| 57 | resultMessage = "" |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 58 | self.send_response(200) |
| 59 | self.send_header("Content-type", "text/plain") |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 60 | self.end_headers() |
| 61 | self.wfile.write(resultMessage) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 62 | else: |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 63 | SimpleHTTPRequestHandler.do_GET(self) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 64 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 65 | def log_message(self, format, *args): |
| 66 | if self.server.verbose: |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 67 | logging.info("%s - %s\n" % (self.address_string(), |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 68 | format % args)) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 69 | |
| 70 | def getNfdStatus(self): |
Junxiao Shi | e273333 | 2016-11-24 14:11:40 +0000 | [diff] [blame] | 71 | """ Obtain XML-formatted NFD status report """ |
| 72 | sp = subprocess.Popen(['nfdc', 'status', 'report', 'xml'], stdout=subprocess.PIPE, close_fds=True) |
Alexander Afanasyev | b4bac925 | 2014-11-03 13:56:01 -0800 | [diff] [blame] | 73 | output = sp.communicate()[0] |
| 74 | if sp.returncode == 0: |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 75 | # add the xml-stylesheet processing instruction after the 1st '>' symbol |
| 76 | newLineIndex = output.index('>') + 1 |
| 77 | resultStr = output[:newLineIndex]\ |
| 78 | + "<?xml-stylesheet type=\"text/xsl\" href=\"nfd-status.xsl\"?>"\ |
| 79 | + output[newLineIndex:] |
Alexander Afanasyev | b4bac925 | 2014-11-03 13:56:01 -0800 | [diff] [blame] | 80 | return (sp.returncode, resultStr) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 81 | else: |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 82 | htmlStr = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional'\ |
| 83 | + '//EN" "http://www.w3.org/TR/html4/loose.dtd">\n'\ |
| 84 | + '<html><head><title>NFD status</title>'\ |
| 85 | + '<meta http-equiv="Content-type" content="text/html;'\ |
| 86 | + 'charset=UTF-8"></head>\n<body>' |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 87 | # return connection error code |
| 88 | htmlStr = htmlStr + "<p>Cannot connect to NFD,"\ |
Alexander Afanasyev | b4bac925 | 2014-11-03 13:56:01 -0800 | [diff] [blame] | 89 | + " Code = " + str(sp.returncode) + "</p>\n" |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 90 | htmlStr = htmlStr + "</body></html>" |
Alexander Afanasyev | b4bac925 | 2014-11-03 13:56:01 -0800 | [diff] [blame] | 91 | return (sp.returncode, htmlStr) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 92 | |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 93 | class ThreadHttpServer(ThreadingMixIn, HTTPServer): |
| 94 | """ Handle requests using threads """ |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 95 | def __init__(self, server, handler, verbose=False, robots=False): |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 96 | serverAddr = server[0] |
| 97 | # socket.AF_UNSPEC is not supported, check whether it is v6 or v4 |
| 98 | ipType = self.getIpType(serverAddr) |
| 99 | if ipType == socket.AF_INET6: |
| 100 | self.address_family = socket.AF_INET6 |
| 101 | elif ipType == socket.AF_INET: |
| 102 | self.address_family == socket.AF_INET |
| 103 | else: |
| 104 | logging.error("The input IP address is neither IPv6 nor IPv4") |
| 105 | sys.exit(2) |
| 106 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 107 | try: |
| 108 | HTTPServer.__init__(self, server, handler) |
| 109 | except Exception as e: |
| 110 | logging.error(str(e)) |
| 111 | sys.exit(2) |
| 112 | self.verbose = verbose |
| 113 | self.robots = robots |
| 114 | |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 115 | def getIpType(self, ipAddr): |
| 116 | """ Get ipAddr's address type """ |
| 117 | # if ipAddr is an IPv6 addr, return AF_INET6 |
| 118 | try: |
| 119 | socket.inet_pton(socket.AF_INET6, ipAddr) |
| 120 | return socket.AF_INET6 |
| 121 | except socket.error: |
| 122 | pass |
| 123 | # if ipAddr is an IPv4 addr return AF_INET, if not, return None |
| 124 | try: |
| 125 | socket.inet_pton(socket.AF_INET, ipAddr) |
| 126 | return socket.AF_INET |
| 127 | except socket.error: |
| 128 | return None |
| 129 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 130 | |
| 131 | # main function to start |
| 132 | def httpServer(): |
| 133 | parser = argparse.ArgumentParser() |
| 134 | parser.add_argument("-p", type=int, metavar="port number", |
| 135 | help="Specify the HTTP server port number, default is 8080.", |
| 136 | dest="port", default=8080) |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 137 | # if address is not specified, use 127.0.0.1 |
| 138 | parser.add_argument("-a", default="127.0.0.1", metavar="IP address", dest="addr", |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 139 | help="Specify the HTTP server IP address.") |
| 140 | parser.add_argument("-r", default=False, dest="robots", action="store_true", |
| 141 | help="Enable HTTP robots to crawl; disabled by default.") |
Alexander Afanasyev | 8a09376 | 2014-07-16 18:43:09 -0700 | [diff] [blame] | 142 | parser.add_argument("-f", default="@DATAROOTDIR@/ndn", metavar="Server Directory", dest="serverDir", |
| 143 | help="Specify the working directory of nfd-status-http-server, default is @DATAROOTDIR@/ndn.") |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 144 | parser.add_argument("-v", default=False, dest="verbose", action="store_true", |
| 145 | help="Verbose mode.") |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 146 | parser.add_argument("--version", default=False, dest="version", action="store_true", |
| 147 | help="Show version and exit") |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 148 | |
| 149 | args = vars(parser.parse_args()) |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 150 | |
| 151 | if args['version']: |
| 152 | print "@VERSION@" |
| 153 | return |
| 154 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 155 | localPort = args["port"] |
| 156 | localAddr = args["addr"] |
| 157 | verbose = args["verbose"] |
| 158 | robots = args["robots"] |
Chengyu Fan | 45d1a76 | 2014-07-08 14:21:32 -0600 | [diff] [blame] | 159 | serverDirectory = args["serverDir"] |
| 160 | |
| 161 | os.chdir(serverDirectory) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 162 | |
| 163 | # setting log message format |
| 164 | logging.basicConfig(format='%(asctime)s [%(levelname)s] %(message)s', |
| 165 | level=logging.INFO) |
| 166 | |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 167 | # if port is invalid, exit |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 168 | if localPort <= 0 or localPort > 65535: |
| 169 | logging.error("Specified port number is invalid") |
| 170 | sys.exit(2) |
| 171 | |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 172 | httpd = ThreadHttpServer((localAddr, localPort), StatusHandler, |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 173 | verbose, robots) |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 174 | httpServerAddr = "" |
| 175 | if httpd.address_family == socket.AF_INET6: |
| 176 | httpServerAddr = "http://[%s]:%s" % (httpd.server_address[0], |
| 177 | httpd.server_address[1]) |
| 178 | else: |
| 179 | httpServerAddr = "http://%s:%s" % (httpd.server_address[0], |
| 180 | httpd.server_address[1]) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 181 | |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 182 | logging.info("Server started - at %s" % httpServerAddr) |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 183 | |
| 184 | try: |
| 185 | httpd.serve_forever() |
| 186 | except KeyboardInterrupt: |
| 187 | pass |
| 188 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 189 | httpd.server_close() |
| 190 | |
Chengyu Fan | e25b0f0 | 2014-04-05 21:42:40 -0600 | [diff] [blame] | 191 | logging.info("Server stopped") |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 192 | |
| 193 | |
| 194 | if __name__ == '__main__': |
| 195 | httpServer() |