/firefox/components/LocalProxy.js

https://github.com/timkuijsten/GoogleSharing · JavaScript · 128 lines · 87 code · 25 blank · 16 comment · 7 complexity · dc04e5dd0d6b56cc535b31c0c20fe445 MD5 · raw file

  1. // Copyright (c) 2010 Moxie Marlinspike <moxie@thoughtcrime.org>
  2. // This program is free software; you can redistribute it and/or
  3. // modify it under the terms of the GNU General Public License as
  4. // published by the Free Software Foundation; either version 3 of the
  5. // License, or (at your option) any later version.
  6. // This program is distributed in the hope that it will be useful, but
  7. // WITHOUT ANY WARRANTY; without even the implied warranty of
  8. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  9. // General Public License for more details.
  10. // You should have received a copy of the GNU General Public License
  11. // along with this program; if not, write to the Free Software
  12. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  13. // USA
  14. function LocalProxy(remoteProxy) {
  15. this.wrappedJSObject = this;
  16. this.remoteProxy = remoteProxy;
  17. this.serverSocket = null;
  18. this.encryptedServerSocket = null;
  19. this.proxyInfo = null;
  20. this.encryptedProxyInfo = null;
  21. this.tunnelProxy = null;
  22. this.terminated = false;
  23. this.constructServerSocket();
  24. this.initializeProxyInfo();
  25. }
  26. LocalProxy.prototype.hasCachedIdentity = function() {
  27. return this.remoteProxy.hasCachedIdentity();
  28. };
  29. LocalProxy.prototype.fetchSharedIdentity = function(async) {
  30. return this.remoteProxy.fetchSharedIdentity(async);
  31. };
  32. LocalProxy.prototype.updateSharedIdentity = function(cookie, domain, path) {
  33. this.remoteProxy.updateSharedIdentity(cookie, domain, path);
  34. };
  35. LocalProxy.prototype.setProxyTunnel = function(tunnelProxy) {
  36. this.tunnelProxy = tunnelProxy;
  37. };
  38. LocalProxy.prototype.getInterfaceLanguage = function() {
  39. return this.remoteProxy.getInterfaceLanguage();
  40. };
  41. LocalProxy.prototype.getSearchLanguage = function() {
  42. return this.remoteProxy.getSearchLanguage();
  43. };
  44. LocalProxy.prototype.shutdown = function() {
  45. this.terminated = true;
  46. this.serverSocket.close();
  47. this.encryptedServerSocket.close();
  48. };
  49. LocalProxy.prototype.getProxyInfo = function() {
  50. return this.proxyInfo;
  51. };
  52. LocalProxy.prototype.getEncryptedProxyInfo = function() {
  53. return this.encryptedProxyInfo;
  54. };
  55. LocalProxy.prototype.matchesURL = function(url) {
  56. return !this.terminated && this.remoteProxy.matchesURL(url);
  57. };
  58. LocalProxy.prototype.isPrefetchURL = function(url) {
  59. return !this.terminated && this.remoteProxy.isPrefetchURL(url);
  60. };
  61. LocalProxy.prototype.constructServerSocket = function() {
  62. try {
  63. this.serverSocket = Components.classes["@mozilla.org/network/server-socket;1"].createInstance(Components.interfaces.nsIServerSocket);
  64. this.serverSocket.init(-1,true,-1);
  65. this.serverSocket.asyncListen(this);
  66. this.encryptedServerSocket = Components.classes["@mozilla.org/network/server-socket;1"]
  67. .createInstance(Components.interfaces.nsIServerSocket);
  68. this.encryptedServerSocket.init(-1,true,-1);
  69. this.encryptedServerSocket.asyncListen(this);
  70. } catch (e) {
  71. dump("Server socket construction failed: " + e + "\n");
  72. }
  73. };
  74. LocalProxy.prototype.initializeProxyInfo = function() {
  75. var proxyService = Components.classes["@mozilla.org/network/protocol-proxy-service;1"].getService(Components.interfaces.nsIProtocolProxyService);
  76. this.proxyInfo = proxyService.newProxyInfo("http", "localhost", this.serverSocket.port, 1, 0, null);
  77. // this.encryptedProxyInfo = proxyService.newProxyInfo("http", this.remoteProxy.getHost(),
  78. // this.remoteProxy.getHTTPPort(), 1, 0, null);
  79. this.encryptedProxyInfo = proxyService.newProxyInfo("http", "localHost", this.encryptedServerSocket.port, 1, 0, null);
  80. };
  81. LocalProxy.prototype.connectToRemoteProxy = function(connectWithoutSsl) {
  82. var transportService = Components.classes["@mozilla.org/network/socket-transport-service;1"]
  83. .getService(Components.interfaces.nsISocketTransportService);
  84. var transport;
  85. if (this.remoteProxy.isSSLEnabled() && !connectWithoutSsl) {
  86. transport = transportService.createTransport(['ssl'],1,this.remoteProxy.getHost(), this.remoteProxy.getSSLPort(),this.tunnelProxy);
  87. } else {
  88. // XXX if tunnelProxy is HTTP, we need to do CONNECT ourselves here.
  89. transport = transportService.createTransport(null,0,this.remoteProxy.getHost(),this.remoteProxy.getHTTPPort(),this.tunnelProxy);
  90. }
  91. transport.setTimeout(0, 5);
  92. return transport;
  93. };
  94. LocalProxy.prototype.onSocketAccepted = function(serverSocket, clientTransport) {
  95. var serverTransport = this.connectToRemoteProxy(serverSocket == this.encryptedServerSocket);
  96. var dataShuffler = new DataShuffler(this, clientTransport, serverTransport);
  97. dataShuffler.shuffle();
  98. };
  99. LocalProxy.prototype.onStopListening = function(serverSocket, status) {
  100. if (!this.terminated) {
  101. dump("onStopListening called for active ServerSocket...\n");
  102. }
  103. };