Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes usage of overloaded STDERR interface #41

Merged
merged 23 commits into from
Sep 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e5dedd7
[api] [refactor] Removed STDERR overload
Marak Aug 26, 2017
88d0db1
[config] [fix] Don’t use SSL/HTTPS by default
Marak Aug 26, 2017
5054f5d
[api] [fix] Add carriage return to pipe3 writes
Marak Aug 26, 2017
109c7bb
[test] Added invalid services tests
Marak Aug 30, 2017
bcd4536
[test] Added tests for service as middlewares
Marak Aug 31, 2017
43a49e2
[api] Improved spawning API
Marak Aug 31, 2017
da4fccb
[api] [minor] Set 500 status code on error message
Marak Aug 31, 2017
f908b21
[api] [refactor] Renamed stderr to fd3
Marak Aug 31, 2017
4262802
[api] [python] [refactor] Remove stderr overload
Marak Aug 31, 2017
80315f9
[api] [python] Do not require microcule in scripts
Marak Aug 31, 2017
dca5659
[minor] Update code comment
Marak Aug 31, 2017
eee41ea
[examples] Update python wsgi API
Marak Aug 31, 2017
93f9b87
[bin] [fix] [minor] Wrong scope
Marak Sep 7, 2017
65b3fc0
[bin] [fix] Remove wsgi code injection
Marak Sep 7, 2017
ebb5c6f
[api] [refactor] Removed viewPresenter
Marak Sep 7, 2017
7fd30c3
[dist] Added nyc code coverage tool
Marak Sep 9, 2017
ad9d47b
[api] [fix] schema plugin should end response
Marak Sep 19, 2017
53d2670
[test] Added basic plugins test
Marak Sep 19, 2017
f0075c4
[api] [minor] Rename stderr to fd3
Marak Sep 19, 2017
1f89318
[dist] [misc] Added more examples
Marak Sep 19, 2017
293ea83
[api] [fix] End response on vm errors
Marak Sep 19, 2017
7205f62
[minor] Remove code comments
Marak Sep 19, 2017
aed57cd
[test] [minor] Comment out language tests
Marak Sep 19, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.DS_Store
node_modules/
reports/
__pycache__/
*.pyc
*.pyo
.nyc_output
26 changes: 17 additions & 9 deletions bin/binaries/lib/python/microcule/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
import traceback
import pkg_resources
import wsgiref.handlers
import os

# open incoming connection from fd3
fd3 = os.fdopen(3, 'w+')

class FullMicroculeJSONFormatter(logging.Formatter):
def format(self, record):
Expand Down Expand Up @@ -78,15 +81,18 @@ def send_exception(self, info=None):
payload['error'] += error
else:
payload['error'] = error
sys.stderr.write(json.dumps(res)+'\n')
sys.stderr.flush()
sys.stderr.write(json.dumps({'type': 'statusCode', 'payload': {'value': 500}})+'\n')
sys.stderr.flush()


fd3.write(json.dumps(res)+'\n')
fd3.flush()
fd3.write(json.dumps({'type': 'statusCode', 'payload': {'value': 500}})+'\n')
fd3.flush()

if self.display:
sys.stdout.write(payload['error'].rstrip('\n')+'\n')
sys.stdout.flush()
sys.stderr.write(json.dumps({'type': 'end'})+'\n')
sys.stderr.flush()
fd3.write(json.dumps({'type': 'end'})+'\n')
fd3.flush()


class wsgi(wsgiref.handlers.CGIHandler):
Expand All @@ -100,9 +106,11 @@ def __init__(self, Hook=None):
def send_headers(self):
self.cleanup_headers()
self.headers_sent = True
head = {'type': 'writeHead', 'payload': {'code': self.status, 'headers': dict(self.headers)}}
sys.stderr.write(json.dumps(head)+'\n')
sys.stderr.flush()
# remark: the status code needs to be sent to the parent process as an 3 digit integer value, not a string value with label
# todo: make parse int code for status more robust.
head = {'type': 'writeHead', 'payload': {'code': int(self.status[:3]), 'headers': dict(self.headers)}}
fd3.write(json.dumps(head)+'\n')
fd3.flush()

def add_cgi_vars(self):
#assert not Hook['isStreaming'], 'Streaming hooks not yet supported by WSGI gateway'
Expand Down
51 changes: 19 additions & 32 deletions bin/binaries/micro-node
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ try {
}


// pipe3 is an additional STDIO pipe we can use for HTTP response methods, debugging events, logging events, and other out of band comms
var pipe3 = new net.Socket({ fd: 3 });

// babel support for es6 / es7
// the spawned child needs regenerator run-time here
Expand Down Expand Up @@ -84,7 +86,7 @@ output.addTrailers = function (headers) {
"headers": headers
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

output.removeHeader = function (name) {
Expand All @@ -94,7 +96,7 @@ output.removeHeader = function (name) {
"name": name
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

output.setHeader = function (name, value) {
Expand All @@ -105,7 +107,7 @@ output.setHeader = function (name, value) {
"value": value
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

output.setTimeout = function (msecs, cb) {
Expand All @@ -116,7 +118,7 @@ output.setTimeout = function (msecs, cb) {
"msecs": msecs
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

output.sendDate = function (value) {
Expand All @@ -126,7 +128,7 @@ output.sendDate = function (value) {
"value": value
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

output.statusMessage = function (value) {
Expand All @@ -136,7 +138,7 @@ output.statusMessage = function (value) {
"value": value
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

// Using Object.defineProperty
Expand All @@ -148,7 +150,7 @@ Object.defineProperty(output, 'statusCode', {
"value": value
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
}
});

Expand All @@ -158,7 +160,7 @@ output.writeContinue = function () {
"payload": {
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

output.writeHead = function (code, headers) {
Expand All @@ -169,12 +171,12 @@ output.writeHead = function (code, headers) {
"headers": headers
}
};
console.error(JSON.stringify(message));
pipe3.write(JSON.stringify(message) + '\n');
};

// Capture any stream errors
output.on('error', function(err){
console.error(JSON.stringify({ type: "error", payload: { error: err.message, code: err.code } }));
output.on('error', function (err) {
pipe3.write(JSON.stringify({ type: "error", payload: { error: err.message, code: err.code } }));
process.exit();
});

Expand All @@ -184,7 +186,7 @@ output.json = function json (data) {
if (typeof data !== 'undefined') {
console.log(JSON.stringify(data, true, 2));
}
console.error(JSON.stringify({ type: "end" }));
pipe3.write(JSON.stringify({ type: "end" }));
process.exit();
};

Expand All @@ -193,14 +195,14 @@ output.end = function end (data) {
if (typeof data !== 'undefined') {
console.log(data);
}
console.error(JSON.stringify({ type: "end" }));
pipe3.write(JSON.stringify({ type: "end" }));
process.exit();
};

// Custom errorHandler for `run-service` execution
function errorHandler (err) {
if (err) {
console.error(JSON.stringify({ type: "error", payload: { error: err.message, code: err.code } }));
pipe3.write(JSON.stringify({ type: "error", payload: { error: err.message, code: err.code } }));
process.exit();
}
};
Expand Down Expand Up @@ -231,7 +233,6 @@ process.stdin.url = env.input.url;
process.stdin.connection = env.input.connection;
process.stdin.resource = { params: {}};


// Send logs to stderr as JSON message
var debug = function debug () {
var args = [];
Expand All @@ -241,7 +242,7 @@ var debug = function debug () {
if (args.length === 1) {
args = args[0];
}
console.error(JSON.stringify({ type: "log", payload: { entry: args } }));
pipe3.write(JSON.stringify({ type: "log", payload: { entry: args } }));
return;
};

Expand Down Expand Up @@ -294,20 +295,6 @@ psr(process.stdin, output, function (req, res, fields) {
}
*/

/* Remark: Removed for now, not needed yet?
// pipe3 is an additional STDIO pipe we can use for HTTP request / response methods
// it's currently being used to handle incoming request.end and request.close events
var pipe3 = new net.Socket({ fd: 3 });
pipe3.on('data', function (buf) {
var str = buf.toString();
if (str.search('input.close') !== -1) {
process.stdin.emit('close');
}
if (str.search('input.end') !== -1) {
process.stdin.emit('end');
}
});
*/

/* TODO: add ability to proxy request parameters to middleware chain
var proxy = new Proxy(process.stdin, {
Expand All @@ -323,7 +310,7 @@ var proxy = new Proxy(process.stdin, {
//console.log("Setting property '" + name + "', initial value: " + value);
if (!(name in target)) {
// console.log("Setting non-existant property '" + name + "', initial value: " + value);
console.error(JSON.stringify({ type: "setvar", payload: { key: name, value: value } }));
pipe3.write(JSON.stringify({ type: "setvar", payload: { key: name, value: value } }));
}
target[name] = value;
return true;
Expand All @@ -334,7 +321,7 @@ var proxy = new Proxy(process.stdin, {
/* TODO: add ability to send proxied params back to parent process
// sets key value on input stream ( useful for middleware processing later )
process.stdin.set = function (key, value) {
console.error(JSON.stringify({ type: "setvar", payload: { key: key, value: value } }));
pipe3.write(JSON.stringify({ type: "setvar", payload: { key: key, value: value } }));
};
*/

Expand Down
3 changes: 3 additions & 0 deletions bin/binaries/micro-python
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ def __prepare():
__prepare()
del __prepare

# inject microcule WSGI handler code
# code = code + '\nimport microcule\nmicrocule.wsgi(Hook).run(app)\n'

# Execute the code as a string in ( this ) context
# print(code)
exec(code)
2 changes: 1 addition & 1 deletion bin/microcule
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function startServer (_service) {
})(req, output, function(){
// if we made it here, it means no services called res.end()
// we should end the service ( or else it will hang forever )
res.end();
output.end();
});
});
} else {
Expand Down
4 changes: 2 additions & 2 deletions config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ module.exports = {
http: {
port: 3000,
host: "0.0.0.0",
https: true, // set to `true` to enable SSL server. cert, key, and ca will be required.
https: false, // set to `true` to enable SSL server. cert, key, and ca will be required.
key: fs.readFileSync(__dirname + "/ssl/server-key.pem").toString(),
cert: fs.readFileSync(__dirname + "/ssl/server-crt.pem").toString(),
ca: [fs.readFileSync(__dirname + '/ssl/ca-crt.pem').toString()],
sslRequired: true, // redirects all http traffic to https, optional
sslRequired: false, // redirects all http traffic to https, optional
onlySSL: false // will only start https server with no unprotected http interface, optional
},
SERVICE_MAX_TIMEOUT: 10000,
Expand Down
22 changes: 22 additions & 0 deletions examples/express-jail-chroot.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
var microcule = require('../');
var express = require('express');
var app = express();

var nodeService = function testService (opts) {
var res = opts.res;
console.log('logging to console');
res.end('ran service');
};

var handler = microcule.plugins.spawn({
code: nodeService,
language: "javascript",
jail: "chroot",
jailArgs: [ '/Users/worker']
});

app.use(handler);

app.listen(3000, function () {
console.log('server started on port 3000');
});
45 changes: 45 additions & 0 deletions examples/express-jail-nsjail.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
var microcule = require('../');
var express = require('express');
var app = express();

var nodeService = function testService (opts) {
var res = opts.res;
console.log('logging to console');
setTimeout(function(){
res.end('ran service');
}, 10)
};

var bash = microcule.plugins.spawn({
code: 'ps -ax',
language: "bash",
jail: "nsjail",
jailArgs: [ '-Mo', '--chroot', '/var/chroot/', '--user', '99999', '--group', '99999']
});

var handler = microcule.plugins.spawn({
code: nodeService,
language: "javascript",
jail: "nsjail",
jailArgs: [ '-Mo', '--chroot', '/var/chroot/', '--user', '99999', '--group', '99999']
});

var ps = microcule.plugins.spawn({
bin: "/bin/ps",
argv: ['-ax' ]
});

var psJail = microcule.plugins.spawn({
bin: "/bin/ps",
argv: ['-ax' ],
jail: "nsjail",
jailArgs: [ '-Mo', '--chroot', '/var/chroot/', '--user', '99999', '--group', '99999']
});

app.use('/node', handler);
app.use('/ps', ps);
app.use('/psjail', psJail);

app.listen(3000, function () {
console.log('server started on port 3000');
});
44 changes: 44 additions & 0 deletions examples/express-service-view.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
var microcule = require('../');
var express = require('express');
var app = express();

var nodeService = function testService (opts) {
var res = opts.res;
console.log('logging to console');
res.end('Hello world!');
};

var handler = microcule.plugins.spawn({
code: nodeService,
language: "javascript"
});

//var view = microcule.plugins.viewPresenter({}, req, res, next);

app.use('/view', function(req, res, next){
microcule.viewPresenter({
view: "Service outputs: {{hook.output}}"
}, req, res, function(err, req, output){
handler(req, output, next)
})
});

/* presenter API has been removed ( for now )
app.use('/view-presenter', function(req, res, next){
microcule.viewPresenter({
view: "Service outputs: {{hook.output}} <div class='output'><div>",
presenter: function (opts, cb) {
opts.res.setHeader('Content-type', 'text/html');
var $ = this.$;
$('.output').html('presenters can use $ selectors');
cb(null, $.html());
}
}, req, res, function(err, req, output){
handler(req, output, next)
})
});
*/

app.listen(3000, function () {
console.log('server started on port 3000');
});
Loading