aboutsummaryrefslogtreecommitdiffstats
path: root/xul-ext/chrome/content/icevault.js
blob: fe2cb50732f9165d1416ddb293ceea2f3951229b (plain)
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/*
 * IceVault - An external password manager for firefox (XUL extension)
 * Copyright © 2015 Guilhem Moulin <guilhem@fripost.org>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

// IceVault global namespace
var icevault = (function() {

  const Cc = Components.classes,
        CC = Components.Constructor,
        Ci = Components.interfaces;

  const UnixServerSocket = CC( "@mozilla.org/network/server-socket;1"
                             , "nsIServerSocket"
                             , "initWithFilename" ),
        InputPump = CC( "@mozilla.org/network/input-stream-pump;1"
                      , "nsIInputStreamPump"
                      , "init" ),
        BinaryInputStream = CC( "@mozilla.org/binaryinputstream;1"
                               , "nsIBinaryInputStream"
                               , "setInputStream" ),
        ConverterOutputStream = CC( "@mozilla.org/intl/converter-output-stream;1"
                                  , "nsIConverterOutputStream"
                                  , "init" );

  // XXX should be changeable from the preferences
  let sockName = Cc["@mozilla.org/file/directory_service;1"]
                .getService(Ci.nsIProperties)
                .get("ProfD", Ci.nsIFile);
  sockName.append("S.IceVault");
  const sockPerms = parseInt("0770", 8);

  const convertStringToUTF8 = Cc["@mozilla.org/intl/utf8converterservice;1"]
                                .getService(Ci.nsIUTF8ConverterService)
                                .convertStringToUTF8;

  // Write the given UTF8 string to the ConverterOutputStream, then flush
  var send = function(stream, msg) {
    //console.log("Sending: " + msg)
    try {
      stream.writeString(msg + "\n");
    }
    finally {
      stream.flush();
    }
  };

  // Refresh the internal state: URI is set to the current tab's and the
  // form state is cleared
  var refreshDocument = function(state) {
    let tab = Application.activeWindow.activeTab;
    state.document = tab.document;
    state.forms = null;
    send(state.outStream, 'OK ' + JSON.stringify(tab.uri.scheme+'://'+tab.uri.hostPort));
  };

  // Process the command
  var process = function(state, data) {
    data = convertStringToUTF8(data, "UTF-8", false, true); // convert the bytes to UTF8
    //console.log("Received: " + data.replace(/\n$/,''));
    let command = /^\S*/.exec(data)[0];

    switch (command) {
      case "REFRESH":
        // refresh current (active) tab
        refreshDocument(state);
        break;

      case "GETFORMS":
        // refresh the form list
        let forms = [], getForms = [];
        for (let i = 0; i < state.document.forms.length; i++) {
          let form = state.document.forms[i], rect = form.getBoundingClientRect();
          if (rect.width == 0 || rect.height == 0)
            continue; // invisible form
          let fields = [], getFields = [];
          for (let i = 0; i < form.elements.length; i++) {
            let field = form.elements[i];
            if (["text","email","password"].indexOf(field.type) > -1) {
              // store only these kinds of fields
              let getField = { name: field.name, type: field.type, value: field.value };
              if (field.maxLength > -1) getField.maxLength = field.maxLength;
              fields.push(field)
              getFields.push(getField)
            }
          }

          if (fields.length) {
            // keep the element objects in the state, and build an assoc
            // list with the wanted field properties
            forms.push(fields);
            getForms.push({ method: form.method.toUpperCase(), action: form.action, fields: getFields });
          }
        }

        state.forms = forms;
        send(state.outStream, 'OK ' + JSON.stringify(getForms));
        break;

      case "FILL":
        // fill a form with the given values (unless it's null)
        try {
          if (state.forms == null)
            throw "Must issue a GETFORMS command first";
          let formIdx = /^FILL (\d+) /.exec(data);
          if (formIdx == null)
            throw "Syntax error"
          formIdx = formIdx[1];
          let values = JSON.parse(data.replace(/^FILL \d+ /, ''));
          if (formIdx < 0 || formIdx >= state.forms.length)
            throw (formIdx + ": Form index out of bounds");
          let form = state.forms[formIdx];
          if (form.length < values.length)
            throw (form.length + '<' + values.length + ": Too many values");
          for (let i = 0; i < values.length; i++)
            if (values[i] != null)
              form[i].value = values[i]
          send(state.outStream, 'OK');
        }
        catch (e if typeof e == "string" || e instanceof SyntaxError) {
          send(state.outStream, 'ERROR ' + JSON.stringify(typeof e == "string" ? e : e.message));
        }
        break;

      case "QUIT":
        state.inStream.close();
        send(state.outStream, 'BYE');
        state.outStream.close();
        break;

      default:
        send(state.outStream, 'ERROR ' + JSON.stringify('Invalid command: ' + command));
    }
  };

  var serverSocketListener = {
    onSocketAccepted: function(server, transport) {
      // New connection: asynchronously read data on the (binary) input
      // stream, and open the output stream as an UTF-8.  We don't use
      // ConverterInputStream as onDataAvailable's counts bytes not
      // chars.
      let inputStream  = transport.openInputStream(0, 0, 0),
          serverInput  = new InputPump(inputStream, -1, -1, 0, 0, false);
          outputStream = transport.openOutputStream(0, 0, 0);

      let state = { inStream: BinaryInputStream(inputStream)
                  , outStream: ConverterOutputStream(outputStream, 'UTF-8', 0, 0x0000)
                  };

      console.log("Connection accepted");
      serverInput.asyncRead(streamListener(state), null); // spawn the listener
      refreshDocument(state);
    },

    onStopListening: function(server, StatusCode) {
      // server is dead
      console.log('Server stopped listening');
    },
  };

  var streamListener = function(state) {
     return {
      onStartRequest: function(request, context) {
        this.data = '';
      },
      onDataAvailable: function(request, context, stream, offset, count) {
        this.data += state.inStream.readBytes(count);
        if (this.data.slice(-1) == "\n") {
          // full input, process the command then clear the cache
          process(state, this.data);
          this.data = '';
        }
      },
      onStopRequest: function(request, context, statusCode) {
        state.inStream.close();
        state.outStream.close();
      }
    }
  };


  // External interface
  return {
    init: function() {
      let server; // share the server accross multiple browsers (windows)
      if (Application.storage.has("IceVault.serverSocket"))
        server = Application.storage.get("IceVault.serverSocket", null);
      else {
        console.log("Initializing IceVault");
        try {
          if (sockName.exists())
            sockName.remove(false); // remove stalled socket
          server = new UnixServerSocket(sockName, sockPerms, -1);
        }
        finally {
          Application.storage.set("IceVault.serverSocket", server);
        }
      }
      server.asyncListen(serverSocketListener);
    },

    clean: function() {
      if (!Application.windows.length && sockName.exists()) {
        // remove the socket if the last window was just closed
        console.log("Removing " + sockName.path);
        sockName.remove(false);
      }
    }
  }
})();