diff --git a/addendum/README.txt b/addendum/README.txt new file mode 100644 index 0000000..2f794fc --- /dev/null +++ b/addendum/README.txt @@ -0,0 +1,5 @@ +Supplementary files: + + collectSamlResponseAttributes.js -- Example: collect SAML Response Attributes into small javascript object; + enreechXmlTree.js -- restore Xml metadata properties in xml tree after JSON.parse(JSON.stringify(tree)); + mXml.js -- just a simple xml parser imlemented in poor javascript. diff --git a/addendum/collectSamlResponseAttributes.js b/addendum/collectSamlResponseAttributes.js new file mode 100644 index 0000000..d8ca8b1 --- /dev/null +++ b/addendum/collectSamlResponseAttributes.js @@ -0,0 +1,16 @@ +/* + * Example of how Attributes from SAML Rresponse can be collected into compact data structure + * for saving into keyval, if necessary + */ + + +var tree = xml.parse(some_saml_text); + +function get_Attributes($tags$Attribute) { + return $tags$Attribute.reduce((a, v) => { + a[v.$attr$Name] = v.$tags$AttributeValue.reduce((a, v) => {a.push(v.$text); return a}, []); + return a + }, {}) +} + +var attrs = get_Attributes(tree.Response.Assertion.AttributeStatement.$tags$Attribute); diff --git a/addendum/enreechXmlTree.js b/addendum/enreechXmlTree.js new file mode 100644 index 0000000..bdb3077 --- /dev/null +++ b/addendum/enreechXmlTree.js @@ -0,0 +1,108 @@ +/* + * It restores helper xml_tree properties after: + * xml_tree = xml.parse(xml_text); + * xml_minimal = JSON.parse(JSON.stringify(xml_tree))); + * xml_tree = enreechXmlTree(xml_minimal); + * + * It adds following properties properties in result tree: + * + * $parent -- parent node + * $attr$name -- access to attributes by name + * $tags$name -- access to set of tags by name, or + * name -- access to tag by name + * + * Example 1: + * + * var xml = require("xml"); + * var tree = xml.parse(""); + * // we have here access to tree.a.c + * var stringified_tree = JSON.stringify(tree) + * // tree is serialized to minimal representation, and lost helper + * // properties. so after parsing: + * var parsed_tree = JSON.parse(stringified_tree); + * // we have no access to parsed_tree.a.c + * // we need restore all properties by: + * var enreeched_tree = enreechXmlTree(parsed_tree); + * // now we have access to enreeched_tree.a.c + * + * Example 2: + * + * suppose you need obtain xml tree in one request, and share it with other requests. + * + * so in one request processing you can obtain xml tree, stringify it and save it keyval: + * xml = require('xml'); + * tree = xml.parse(some_source_xml_text); + * r.variables.keyval_key = JSON.stringify(tree); + * + * to restore tree from keyval in other request you need: + * tree = enreechXmlTree(JSON.parse(r.variables.keyval_key)); + */ + +function enreechXmlTree(root) { + var i, r; + + function set_once_not_enum_prop(r, name, value) { + if ('undefined' == typeof r[name]){ + Object.defineProperty(r, name, { + writable: true, + value: value + }); + + } + } + + function _enreechTree(tag, parent) { + var i, child, shortcut, r; + + r = {}; + Object.assign(r, tag); + + /* $parent. */ + + if (parent) { + set_once_not_enum_prop(r, '$parent', parent); + + } + + /* $attrs$, $attr$name */ + + if (tag.$attrs) { + for (i in tag.$attrs) { + set_once_not_enum_prop(r, '$attr$' + i, tag.$attrs[i]); + + } + + } + + /* $tags, $tags$, $tags$name */ + + if (tag.$tags) { + + tag.$tags.forEach(t => { + + child = _enreechTree(t, r); + + /* 1st child */ + + set_once_not_enum_prop(r, t.$name, child); + + /* all children */ + + shortcut = '$tags$' + t.$name; + set_once_not_enum_prop(r, shortcut, []); + r[shortcut].push(child); + }); + + } + return r; + } + + r = {}; + for (i in root) { + set_once_not_enum_prop(r, '$root', root[i]); + r[i] = _enreechTree(root[i], null); + } + + return r; + +} diff --git a/addendum/mXml.js b/addendum/mXml.js new file mode 100644 index 0000000..6a59181 --- /dev/null +++ b/addendum/mXml.js @@ -0,0 +1,254 @@ +/* + * mXml.js: mini xml parser. + * + * it is intended accept mostly valid/trusted xml and produce minimal parsing tree, like JSON.parse(JSON.stringify(native_xml.parse(source_xml_text))) + * + * Usage: + * + * var xml = mXml(); + * var tree = xml.parse(source_xml_text); + * + * Note: + * + * if you need obtain Xml metadata properties, as after native_xml.parse(source_xml_tree), then use additionally: + * + * tree = enreechXmlTree(tree); + * + */ + +function mXml () { + + return function (parser) { + return { + parse: function (a) { + var t = parser(a); + var r = {} + r[t.$name] = t; + return r; + } + } + }(function () { + + var tagstart = /(<)(?:(?:([A-Z_][A-Z0-9_\.-]*):)?(?:([A-Z_][A-Z0-9_\.-]*)(\s*)(\/?>)?)|\/(?:([A-Z_][A-Z0-9_\.-]*):)?(?:([A-Z_][A-Z0-9_\.-]*)(\s*)(>))|(!--(?:-(?!-[^>])|[^-])*-->))/gi; + + var attr = /(\/?>)|(?:(?:([A-Z_][A-Z0-9_\.-]*):)?(?:([A-Z_][A-Z0-9_\.-]*)?)?)(?:\s*=\s*(?:"([^"]*)")?)?(\s*)/ig; + + + function xml_unescape (s) { + return s.replace(/\&(?:(quot|apos|lt|gt|amp)|#(\d+)|#x([a-fA-F0-9]+));/g, function (a, name, dec, hex){ + if (name) { + switch (name) { + case 'quot' : return '"'; + case 'apos': return "'"; + case 'lt': return '<'; + case 'gt': return '>'; + case 'amp': return '&'; + } + } + if (dec) { + if (+dec > 0xFFFFF) throw new Error("xmlParseCharRef: character reference out of bounds"); + return String.fromCharCode(dec) + } + if (hex) { + if (parseInt(hex,16) > 0xFFFFF) throw new Error("xmlParseCharRef: character reference out of bounds"); + return String.fromCharCode(parseInt(hex,16)) + } + }) + } + + + function create_top_ns (old_top_ns) { + stack_of_nss.push(old_top_ns); + var new_top_ns = {} + new_top_ns.__proto__ = old_top_ns; + return new_top_ns; + } + + var stack_of_nss = []; + var top_ns = void 0; + + + function resolve_tag_ns (tag, top_ns) { + if (tag.$ns) { + if (top_ns[tag.$ns]) { + tag.$ns = top_ns[tag.$ns]; + + } else { + tag.$name = tag.$ns+':'+ tag.$name; + delete tag.$ns + + } + } + //tbd: it seems we need resolve attrs ns as well here + } + + + return function (buffer) { + + // skip leading spaces + var re_skip = /\s*/g + var res = re_skip.exec(buffer); + + var last_closed_tag = null; // last closed tag; + var parent = null; // parent tag + var stack_of_parents = []; // stack of parent tags up to parent tag; + + // accept only single element with all children elements + + tagstart.lastIndex = re_skip.lastIndex; + while (tagstart.lastIndex < buffer.length) { // loop over tags + + + // add all text up to '<' to parent tag as text node + var re_skip = /[^<]*/g + + re_skip.lastIndex = tagstart.lastIndex; + var res = re_skip.exec(buffer); + + if (parent) { + if (tagstart.lastIndex != re_skip.lastIndex) { + parent.$text += xml_unescape(buffer.substring(tagstart.lastIndex, re_skip.lastIndex)); + } + } else { + if (tagstart.lastIndex != re_skip.lastIndex) { + throw new Error("garbage before root tag") + } + } + + tagstart.lastIndex = re_skip.lastIndex; + + + // try obtain tagstart + var lastInput = tagstart.lastIndex; + var t = tagstart.exec(buffer) + + if (t === null || t.index != lastInput) { + throw new Error("can't get tag at buffer position="+lastInput); + } + + if (t[10] !== void(0)) { + // comment, skip it (or add to parent?) + continue; + } + + + if (t[7] !== void(0)) { + // close tag + var tag = { + //begin: t[1], + $ns: t[6], + $name: t[7], + //spaces: t[8], + //end: t[9], + $attrs:{}, + $tags:[], + $text:'' + } + var tag_end = t[9]; + } else { + // open tag or self closed tag; + var tag = { + //begin: t[1], + $ns: t[2], + $name: t[3], + //spaces: t[4], + //end: t[5], + $attrs:{}, + $tags:[], + $text: '' + } + var tag_end = t[5]; + } + + if (t[7] !== void(0)) { + // close tag ("" or "/>" + break; + } + + + // process xmlns scheme in attribute + if (a[2] === void(0)) { // attr_name w/o ns + tag.$attrs[a[3]] = xml_unescape(a[4]); + } else { // attr name with ns + if (a[2] === 'xmlns') { // definition of namespace + top_ns[a[3]] = xml_unescape(a[4]); + } else { + tag.$attrs[a[3]] = xml_unescape(a[4]); + + /* + * Note: we lost attribute ns for compatibility + * with native xml.parse() + */ + } + } + + } + tagstart.lastIndex = attr.lastIndex; + } + if (tag_end == '/>') { + resolve_tag_ns(tag, top_ns); + + ns_top = stack_of_nss.pop() + + // self closed tag + if (!parent) { + return tag; + } + parent.$tags.push(tag); + continue; + } + if (tag_end == '>') { + resolve_tag_ns(tag, top_ns); + + if (!parent) { + parent = tag; + } else { + parent.$tags.push(tag); + stack_of_parents.push(parent); + parent = tag; + } + + } + } + } + + } // function parser + }()); +} diff --git a/frontend_server.conf b/frontend_server.conf new file mode 100644 index 0000000..9ca0fd0 --- /dev/null +++ b/frontend_server.conf @@ -0,0 +1,81 @@ +#user nobody; +worker_processes 1; + +#error_log logs/error.log; +#error_log logs/error.log notice; +#error_log logs/error.log info; + +#pid logs/nginx.pid; + + +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + + #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + # '$status $body_bytes_sent "$http_referer" ' + # '"$http_user_agent" "$http_x_forwarded_for"'; + + #access_log logs/access.log main; + + sendfile on; + #tcp_nopush on; + + #keepalive_timeout 0; + keepalive_timeout 65; + + #gzip on; + + # ----------------------------------------------------------------------------------- + # The frontend server - reverse proxy with OpenID Connect authentication + # + # This is the backend application we are protecting with SAML SP + upstream my_backend { + zone my_backend 64k; + server localhost:8088; + } + + # log_format main_sp '$remote_addr - $samlsp_attr_sub [$time_local] "$request" $status ' + # '$body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for"'; + + include saml_sp_configuration.conf; # configuration maps, keyvals, js_import + + server { + + include saml_sp.server_conf; # Authorization code flow and Relying Party processing + + + error_log logs/error.log debug; # Reduce severity level as required + + listen 80; # Use SSL/TLS in production + + location / { + + error_page 401 = @do_samlsp_flow; + + if ($location_root_granted != "1") { + return 401; + } + + proxy_pass http://my_backend; # The backend site/app + + default_type text/html; + } + } + + server { + listen 8088; + server_name localhost; + + location / { + root html; + index index.html index.htm; + } + } + # ----------------------------------------------------------------------------------- + +} \ No newline at end of file diff --git a/saml_sp.js b/saml_sp.js new file mode 100644 index 0000000..5293f4e --- /dev/null +++ b/saml_sp.js @@ -0,0 +1,477 @@ +/* + * JavaScript functions for providing SAML SP with NGINX Plus + * + * Copyright (C) 2023 Nginx, Inc. + */ + +// Note: +// For now all communications with IdP performed via user-agent/browser, they all are not reliable +// we keep all state in static config data -- maps -- at bootstrap loaded from config file +// and in dynamic data -- keyvals -- at bootstap loading from local files (zones) + +export default {send_saml_request_to_idp, process_idp_response}; + + +const xml = require("xml"); +const querystring = require("querystring"); +const fs = require("fs"); + +function getEscapeXML() { + const fpc = Function.prototype.call; + const _replace = fpc.bind(fpc, String.prototype.replace); + + const tbl = { + '<': '<', + '>': '>', + "'": ''', + '"': '"', + '&': '&', + }; + tbl.__proto__ = null; + + return function (str) { + return _replace(str, /[<>'"&]/g, c => tbl[c]); + } +}; + +const escapeXML = getEscapeXML(); + +function createAuthnRequest_saml2_0( + id, + issueInstant, + destination, + protocolBinding, + assertionConsumerServiceUrl, + forceAuthn, + issuer +) { + + /* Apply escapeXML to all arguments, as they all are going to xml. */ + + id = escapeXML(id); + issueInstant = escapeXML(issueInstant); + destination = escapeXML(destination); + protocolBinding = escapeXML(protocolBinding); + assertionConsumerServiceUrl = escapeXML(assertionConsumerServiceUrl); + forceAuthn = escapeXML(forceAuthn); + issuer = escapeXML(issuer); + + // if (assertionConsumerServiceUrl !== '') { + // assertionConsumerServiceUrl = ' AssertionConsumerServiceURL="'+assertionConsumerServiceUrl+'"' + // } + + let xml = + '' + + `${issuer}` + + '' + + ''; + + return xml; +} + +function generateID() { + let buf = Buffer.alloc(20); + return (crypto.getRandomValues(buf)).toString('hex'); +} + + +function send_saml_request_to_idp (r) { + try { + // send redirect with autosubmit POST: + // 0) check if we are configured for IdP, so we can request metadata from IdP here (see response) + // 1) create saml request to IdP ( uniq_ID, target->process_IdP_response); + // 2) sign it if required + + function doAuthnRequest() { + var relayState = r.variables.saml_sp_relay_state; + var destination = r.variables.saml_idp_sso_url; + + r.variables.saml_request_id = "nginx_" + generateID(); + + r.variables.saml_have_session = "1"; + + var authnRequest_saml_text = createAuthnRequest_saml2_0( + r.variables.saml_request_id, // ID + new Date().toISOString(), // IssueInstant + destination, // Destination + r.variables.saml_request_binding, // ProtocolBinding + r.variables.saml_sp_acs_url, // AssertionConsumerServiceURL + r.variables.saml_sp_force_authn, // ForceAuthn + r.variables.saml_sp_entity_id // Issuer + ); + + var xml_tree = xml.parse(authnRequest_saml_text); + + let dec = new TextDecoder(); + + if (r.variables.saml_idp_sign_authn === "true") { + // TBD: + //var c14n = dec.decode(dec.AuthnRequest.exclusiveC14n()); + //<* sign c14n (use cert, and purivate_key) *> + //var xml_norm_signed_text = dec.decode(xml.parse(<* inject signature to xml_tree *>).exclusiveC14n()) + saml_error(r, 500, "Request Signing not supported yet"); + return; + } else { + // just normalize it. May be omitted for not signed request? + var xml_norm_authn = dec.decode(xml.exclusiveC14n(xml_tree)); + } + var encodedRequest = xml_norm_authn.toString("base64"); + + if (r.variables.saml_request_binding === 'HTTP-POST') { + var form = `
` + + `` + + `` + + '
'; + var autoSubmit = ''; + + r.headersOut['Content-Type'] = "text/html"; + r.return(200, form + autoSubmit); + } else { + r.return(302, r.variables.redirect_base + 'SAMLRequest=' + encodedRequest + relayState?'&RelayState='+relayState:''); + } + } + + doAuthnRequest(); + + } catch (e) { + saml_error(r, 500, "send_saml_request_to_idp internal error e.message="+e.message) + } +} + + +/////////////////////////////////////////////////////////////// + +function saml_error(r, http_code, msg) { + r.error("SAMLSP " + msg); + r.return(http_code, "SAMLSP " + msg); +} + + +async function process_idp_response (r) { + try { + let reqBody = (r.requestText).toString(); + let postResponse = querystring.parse(reqBody); + let SAMLResponseRaw = postResponse.SAMLResponse; + + // Base64 decode of SAML Response + //let SAMLResponseDec = querystring.unescape(SAMLResponseRaw); POST body cannot be URL encoded + var SAMLResponse = Buffer.from(SAMLResponseRaw, 'base64'); + + var xmlDoc; + try { + xmlDoc = xml.parse(SAMLResponse); + }catch(e) { + saml_error(r, 500, "XML parsing failed: "+e.message); + return; + } + + if (!xmlDoc) { + saml_error(r, 500, "no XML found in Response"); + return; + } + + /* + * series of check ups, part of them are general, part custom; + */ + + + /* + * perform general sanity check + */ + + + if (xmlDoc.Response.EncryptedAssertion) { + saml_error(r, 500, "Encrypted Response not supported yet -- failed"); + return; + + //tbd <* decrypt xml *> + } + + if (r.variables.saml_sp_want_signed_assertion === "true") { + if (!xmlDoc.Response.Signature) { + saml_error(r, 500, "NGINX SAML requires signed assertion -- failed"); + } + let key_data = fs.readFileSync(`conf/${r.variables.saml_idp_verification_certificate}`); + let signed_assertion = await verifySAMLSignature(xmlDoc, key_data); + } + + + /* + * check response correctness: is it response to sent request, is timeouts ok, config/auth response, and so on + */ + + + // Responce is single document root -- sanity check + if (!xmlDoc.Response) { + saml_error(r, 500, "No Response tag"); + return; + } + + // single Response attrinute InResponseTo value is present in state cache, it can be used as session later + if (xmlDoc.Response.$attr$InResponseTo) { + r.variables.saml_request_id = xmlDoc.Response.$attr$InResponseTo; + if (r.variables.saml_have_session != '1') { + saml_error(r, 500, "Wrong InResponseTo " + xmlDoc.Response.$attr$InResponseTo); + return; + } + r.variables.saml_have_session = '0'; + } else { + saml_error(r, 500, "Response tag has no InResponseTo attribute, or has more than 1"); + return; + } + + /* + * perform any other general check up + */ + + // response example from data provided by customer. + + // do we need check namespaces? + + // Response.$attr$consent == "urn:oasis:names:tc:SAML:2.0:consent:obtained" + // Response.$attr$Destination == "xxx" + // Response.$attr$ID --> use for logging + // Response.$attr$IssueInstant --> check if it is in the past, and use it later + + // Response.Issuer.$attr$Format == "urn:oasis:names:tc:SAML:2.0:nameid-format:entity" and + // Response.Issuer.$text == https://ecas.cc.cec.eu.int:7002/cas/login --> some expected value + + // ===> Probably most important test: + // Response.Status.StatusCode.$attr$Value === "urn:oasis:names:tc:SAML:2.0:status:Success" + // Response.Status.StatusMessage.$text$ === "successful EU Login authentication" + + // Response.Assertion.$attr$ID --> save for logging issues with Assertions + // Response.Assertion.$attr$IssueInstant --> check if this is not from future, can be used to check time range in Assertion.Conditions later? + // Response.Assertion.Issuer + // Response.Assertion.Subject + // Response.Assertion.Conditions --> general check time range (audience check?), oneTimeUse, ProxyRestriction + // Response.AuthnStatement + // Response.AttributeStatement.$tags$Attribute[i].$tags$AttributeValue[j].$text --> + // name N + + // $name + // $name$N? --> for example $groups$1, etc + + + /* + * end of general check up + */ + + + /* + * application level action need to be placed here. + * either simple or customized + * (for now we are ok with Response, keep stringified saml in keyval, create session and redirect back to protected root url) + */ + + // generate cookie_auth_token + r.variables.cookie_auth_token = "nginx_" + generateID(); + + // simple_action() + //r.variables.response_xml_json = JSON.stringify(xml); + + // custom_action() + // var policy_result = {} + // eval_policy(r.variables, policy, xml.Response); + // it will set r.variables.$location_N_granted in keyvals for later use + + + // grant access + r.variables.location_root_granted = '1'; + + r.headersOut["Set-Cookie"] = "auth_token=" + r.variables.cookie_auth_token + "; " + r.variables.saml_cookie_flags; + // redirect back to root + r.return(302, "/"); // should be relay state or landing page + } catch(e) { + saml_error(r, 500, "process_idp_response internal error e.message="+e.message) + } +} + +/* + * verifySAMLSignature() implements a verify clause + * from Profiles for the OASIS SAML V2.0 + * 4.1.4.3 Message Processing Rules + * Verify any signatures present on the assertion(s) or the response + * + * verification is done in accordance with + * Assertions and Protocols for the OASIS SAML V2.0 + * 5.4 XML Signature Profile + * + * The following signature algorithms are supported: + * - http://www.w3.org/2001/04/xmldsig-more#rsa-sha256 + * - http://www.w3.org/2000/09/xmldsig#rsa-sha1 + * + * The following digest algorithms are supported: + * - http://www.w3.org/2000/09/xmldsig#sha1 + * - http://www.w3.org/2001/04/xmlenc#sha256 + * + * @param doc an XMLDoc object returned by xml.parse(). + * @param key_data is SubjectPublicKeyInfo in PEM format. + */ + +async function verifySAMLSignature(saml, key_data) { + const root = saml.$root; + const rootSignature = root.Signature; + + if (!rootSignature) { + throw Error(`SAML message is unsigned`); + } + + const assertion = root.Assertion; + const assertionSignature = assertion ? assertion.Signature : null; + + if (assertionSignature) { + if (!await verifyDigest(assertionSignature)) { + return false; + } + + if (!await verifySignature(assertionSignature, key_data)) { + return false; + } + } + + if (rootSignature) { + if (!await verifyDigest(rootSignature)) { + return false; + } + + if (!await verifySignature(rootSignature, key_data)) { + return false; + } + } + + return true; +} + +async function verifyDigest(signature) { + const parent = signature.$parent; + const signedInfo = signature.SignedInfo; + const reference = signedInfo.Reference; + + /* Sanity check. */ + + const URI = reference.$attr$URI; + const ID = parent.$attr$ID; + + if (URI != `#${ID}`) { + throw Error(`signed reference URI ${URI} does not point to the parent ${ID}`); + } + + /* + * Assertions and Protocols for the OASIS SAML V2.0 + * 5.4.4 Transforms + * + * Signatures in SAML messages SHOULD NOT contain transforms other than + * the http://www.w3.org/2000/09/xmldsig#enveloped-signature and + * canonicalization transforms http://www.w3.org/2001/10/xml-exc-c14n# or + * http://www.w3.org/2001/10/xml-exc-c14n#WithComments. + */ + + const transforms = reference.Transforms.$tags$Transform; + const transformAlgs = transforms.map(t => t.$attr$Algorithm); + + if (transformAlgs[0] != 'http://www.w3.org/2000/09/xmldsig#enveloped-signature') { + throw Error(`unexpected digest transform ${transforms[0]}`); + } + + if (!transformAlgs[1].startsWith('http://www.w3.org/2001/10/xml-exc-c14n#')) { + throw Error(`unexpected digest transform ${transforms[1]}`); + } + + const namespaces = transformAlgs[1].InclusiveNamespaces; + const prefixList = namespaces ? namespaces.$attr$PrefixList: null; + + const withComments = transformAlgs[1].slice(39) == 'WithComments'; + + let hash; + const alg = reference.DigestMethod.$attr$Algorithm; + + switch (alg) { + case "http://www.w3.org/2000/09/xmldsig#sha1": + hash = "SHA-1"; + break; + case "http://www.w3.org/2001/04/xmlenc#sha256": + hash = "SHA-256"; + break; + case "http://www.w3.org/2001/04/xmlenc#sha512": + hash = "SHA-512"; + break; + default: + throw Error(`unexpected digest Algorithm ${alg}`); + } + + const expectedDigest = signedInfo.Reference.DigestValue.$text; + + const c14n = xml.exclusiveC14n(parent, signature, withComments, prefixList); + const dgst = await crypto.subtle.digest(hash, c14n); + const b64dgst = Buffer.from(dgst).toString('base64'); + + return expectedDigest === b64dgst; +} + +function keyPem2Der(pem, type) { + const pemJoined = pem.toString().split('\n').join(''); + const pemHeader = `-----BEGIN ${type} KEY-----`; + const pemFooter = `-----END ${type} KEY-----`; + const pemContents = pemJoined.substring(pemHeader.length, pemJoined.length - pemFooter.length); + return Buffer.from(pemContents, 'base64'); +} + +function base64decode(b64) { + const joined = b64.toString().split('\n').join(''); + return Buffer.from(joined, 'base64'); +} + +async function verifySignature(signature, key_data) { + const der = keyPem2Der(key_data, "PUBLIC"); + + let method, hash; + const signedInfo = signature.SignedInfo; + const alg = signedInfo.SignatureMethod.$attr$Algorithm; + + switch (alg) { + case "http://www.w3.org/2000/09/xmldsig#rsa-sha1": + method = "RSASSA-PKCS1-v1_5"; + hash = "SHA-1"; + break; + case "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256": + method = "RSASSA-PKCS1-v1_5"; + hash = "SHA-256"; + break; + case "http://www.w3.org/2001/04/xmldsig-more#rsa-sha512": + method = "RSASSA-PKCS1-v1_5"; + hash = "SHA-512"; + break; + default: + throw Error(`unexpected signature Algorithm ${alg}`); + } + + const expectedValue = base64decode(signature.SignatureValue.$text); + const withComments = signedInfo.CanonicalizationMethod + .$attr$Algorithm.slice(39) == 'WithComments'; + + const signedInfoC14n = xml.exclusiveC14n(signedInfo, null, withComments); + + const key = await crypto.subtle.importKey("spki", der, { name: method, hash }, + false, [ "verify" ]); + + return await crypto.subtle.verify({ name: method }, key, expectedValue, + signedInfoC14n); +} + +function p(args, default_opts) { + let params = merge({}, default_opts); + params = merge(params, args); + + return params; +} diff --git a/saml_sp.server_conf b/saml_sp.server_conf new file mode 100644 index 0000000..cca222b --- /dev/null +++ b/saml_sp.server_conf @@ -0,0 +1,40 @@ +# Advanced configuration TEST START + + set $internal_error_message "NGINX / SAMLSP login failure\n"; + set $saml_request_id ""; + + resolver 8.8.8.8; # For DNS lookup of IdP endpoints; + gunzip on; # Decompress IdP responses if necessary + +# Advanced configuration END + + set $redir_location "/saml/acs"; + location = /saml/acs { + # This location is called by the IdP after successful authentication + client_max_body_size 10m; + client_body_buffer_size 128k; + status_zone "SAMLSP code exchange"; + js_content samlsp.process_idp_response; + error_page 500 502 504 @saml_error; + } + + location @do_samlsp_flow { + js_content samlsp.send_saml_request_to_idp; + set $cookie_auth_token ""; + # 'Internal Server Error', 'Bad Gateway', 'Gateway Timeout' + error_page 500 502 504 @saml_error; + } + + location @saml_error { + # This location is called when no access is granted for protected root location + status_zone "SAMLSP error"; + default_type text/plain; + return 500 $internal_error_message; + } + + location /api/ { + api write=on; + allow 127.0.0.1; # Only the NGINX host may call the NGINX Plus API + deny all; + access_log off; + } diff --git a/saml_sp_configuration.conf b/saml_sp_configuration.conf new file mode 100644 index 0000000..3c753ae --- /dev/null +++ b/saml_sp_configuration.conf @@ -0,0 +1,120 @@ +## used in AuthnRequest +map $host $saml_sp_entity_id { + # Unique identifier that identifies the SP to the IdP. + default "http://sp.route443.dev"; +} + +## is used in AuthRrequest +map $host $saml_sp_acs_url { + # SP endpoint that the IdP will send the SAML Response to after successful authentication. + # Can be hardcoded, but need for XML Metadata generation + default "http://sp.route443.dev:80/saml/acs"; +} + +## to be used in logout redirect to IdP +map $host $saml_sp_slo_url { + # SP endpoint that the IdP will send the SAML Logout Request to initiate a logout process. + default "http://sp.route443.dev:80/saml/slo"; +} +##? is used as parameter in POST form +map $host $saml_sp_relay_state { + # Optional parameter that can be used to send additional data along with the SAML authn message. + # Can be used to identify the initial authentication request. For example via NGINX $request_id. + default "http://sp.route443.dev:80/landing_page"; +} + +## to be used in signing requests +map $host $saml_sp_signing_certificate { + # Maps SP to the certificate file that will be used to sign the AuthnRequest or LogoutRequest sent to the IdP. + default "authn_sign.crt"; +} + +## to be used in signing requests +map $host $saml_sp_signing_key { + # Maps SP to the private key file that will be used to sign the AuthnRequest or LogoutRequest sent to the IdP. + default "authn_sign.key"; +} + +## is used in AuthRequest +map $host $saml_sp_force_authn { + # Whether the SP should force re-authentication of the user by the IdP. + # We need to think about what could be a good anchor. Perhaps ***REMOVED*** will tell us how they use it now. + default "false"; +} + +## it is just expectation of SP. not transferred to IdP (what about encrypted Assertions?) +map $host $saml_sp_want_signed_assertion { + # Whether the SP wants the SAML Assertion from the IdP to be digitally signed. + # This is the AuthnRequest parameter that informs the IdP. + default "true"; +} + +## to be checked in Responses +map $host $saml_idp_entity_id { + # Unique identifier that identifies the IdP to the SP. + default "http://idp.route443.dev:8080/simplesaml/saml2/idp/metadata.php"; +} + +## use used in AuthnREquest and "
> /etc/apache2/apache2.conf && \ + a2enmod ssl && \ + a2enmod rewrite &&\ + a2dissite 000-default.conf default-ssl.conf && \ + a2ensite simplesamlphp.conf +RUN sed -i '//,/<\/Directory>/ s/AllowOverride None/AllowOverride All/' /etc/apache2/apache2.conf +RUN echo "RewriteEngine On" > /var/www/.htaccess +RUN echo "RewriteCond %{REQUEST_FILENAME} !-f" >> /var/www/.htaccess +RUN echo "RewriteCond %{REQUEST_FILENAME} !-d" >> /var/www/.htaccess +RUN echo "RewriteRule ^(.*)$ /simplesaml/admin/phpinfo.php [L,QSA]" >> /var/www/.htaccess +RUN echo "RedirectMatch ^/$ /simplesaml/" >> /var/www/.htaccess + +# Autorun memcached and apache +ENTRYPOINT service memcached start && apache2-foreground + +# Set work dir +WORKDIR /var/www/simplesamlphp + +# General setup +EXPOSE 8080 8443 diff --git a/test/idp/config/apache/cert.crt b/test/idp/config/apache/cert.crt new file mode 100644 index 0000000..72a9cc4 --- /dev/null +++ b/test/idp/config/apache/cert.crt @@ -0,0 +1,25 @@ +-----BEGIN CERTIFICATE----- +MIIESzCCAzOgAwIBAgIBATANBgkqhkiG9w0BAQ0FADBCMRMwEQYDVQQDEwpuZ2lu +eC1zYW1sMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBK +b3NlMB4XDTIzMDEyNjA1NTc0NFoXDTQzMDEyMTA1NTc0NFowRDEVMBMGA1UEAxMM +cm91dGU0NDMuZGV2MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcT +CFNhbiBKb3NlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsgRNB8SJ +5tj4cYLTyJeldCXyp47G/YmyzVE63SQcpQNtDS0T1z2l4mz3UJCLJrMSdCfWMCdi +mD07K/FiB9tjLhmdDRVfmPxWuj9JKu/9iB4NQqYbz513Pg0gmvXrDaIv0jcmvAhn +Gj7NPHHyinuKQ01UWYI3+nbN66dd8KH7bHISs6pmDSn6qoX2NQKTexHYKKqiQzqB +0+hjhkynBROcR75zN4iZZ7O11zOMyta7Z2L3JpVpmMTqq5wpPGTTMup9NfK6kbm/ +evJ9cBxQyzqt3NbSYWeUxdK36DpYXYWsYziaR1GuN2g+TsEhMj0AC+jB9cFOqpQh +unmA9mKVDm8b+QIDAQABo4IBSDCCAUQwCQYDVR0TBAIwADARBglghkgBhvhCAQEE +BAMCBkAwCwYDVR0PBAQDAgWgMDMGCWCGSAGG+EIBDQQmFiRPcGVuU1NMIEdlbmVy +YXRlZCBTZXJ2ZXIgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFG8wCiHo3LxmxyKGu0LU +FIu8J+UqMHEGA1UdIwRqMGiAFA0JIWFbkEmGlb27/UmPxZYAyTWPoUakRDBCMRMw +EQYDVQQDEwpuZ2lueC1zYW1sMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAP +BgNVBAcTCFNhbiBKb3Nlggh3dbtCxyEAsjAnBgNVHSUEIDAeBggrBgEFBQcDAQYI +KwYBBQUHAwIGCCsGAQUFCAICMCcGA1UdEQQgMB6CDHJvdXRlNDQzLmRldoIOKi5y +b3V0ZTQ0My5kZXYwDQYJKoZIhvcNAQENBQADggEBAGPEIHlGXTZUA8O0UHxI1sw/ +7aoeStm+evnuzjTjpqOtF253z6cYhVQSPVGdw1xKqaIjU4r2hLLodqQCMghi/mMH +eCsEr8BBEVQKhdccgcjtQc3LCXJMhlAeMnWmBDvl2d8f3d7fs3V7fLSk1OJ5PB4n +IgHQB1W/vMLLqARvJaKbZOZOv+z/ZtKBRnNP2yj4T0z6BPpKIZx5tmhPNOpNAalY +i33Fg32L0/ZsQ2Hkcs+V9lYXvRhjJXOjaxONlpiPQx9BGcT9bzs4viEHpzN4a//R +eh92mP0COqrofCRk+Kgxo/475VLUHlxT4oSC9CTEmKLvhGbyq4FRO+1T5ygK3xQ= +-----END CERTIFICATE----- diff --git a/test/idp/config/apache/ports.conf b/test/idp/config/apache/ports.conf new file mode 100644 index 0000000..7a782ee --- /dev/null +++ b/test/idp/config/apache/ports.conf @@ -0,0 +1,9 @@ +Listen 8080 + + + Listen 8443 + + + + Listen 8443 + diff --git a/test/idp/config/apache/private.key b/test/idp/config/apache/private.key new file mode 100644 index 0000000..eb1e587 --- /dev/null +++ b/test/idp/config/apache/private.key @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQCyBE0HxInm2Phx +gtPIl6V0JfKnjsb9ibLNUTrdJBylA20NLRPXPaXibPdQkIsmsxJ0J9YwJ2KYPTsr +8WIH22MuGZ0NFV+Y/Fa6P0kq7/2IHg1CphvPnXc+DSCa9esNoi/SNya8CGcaPs08 +cfKKe4pDTVRZgjf6ds3rp13woftschKzqmYNKfqqhfY1ApN7EdgoqqJDOoHT6GOG +TKcFE5xHvnM3iJlns7XXM4zK1rtnYvcmlWmYxOqrnCk8ZNMy6n018rqRub968n1w +HFDLOq3c1tJhZ5TF0rfoOlhdhaxjOJpHUa43aD5OwSEyPQAL6MH1wU6qlCG6eYD2 +YpUObxv5AgMBAAECggEBAIwtItMZClYDSC9qC4aLEzgQobEblsoS4f8XFbkJNJ0j +w316n4MAAl333A9OoqRIoiFhNSIaAWNL5ApIOx9gvAqTFL42tF5tZYWnS+BJtmS2 +9U4kKwYjQsBT6fbb6smDixCHaTLrkvRxu377Yzd07HzuqZsKFTZe0uvbkPdpNeg/ +4hc29+juHjp8M0rHWCmOdSS2mpa0wtH/zRYcKk1e8ormtnhCcV3qNC7WdCScOkBM +2C/sa4yIXDl5NMN9XLD9Sa7TPHDjFf/PrBw72OMj5aTs/E08fWDoUD8ur5Mq7p91 +h1d359IoaZWvnh3DDSLRlz/H7VJ+bwmj5hP8f23urgECgYEA5mtHmtVIpNMNCMzy +7kgvCaN+k42UaiSoC4k+zX6lToQiR9/gr3I1ZBTsUMuPWzjpian6NZyO4DdPr6Im +ZeuI9IQ2+xfplcACcmz4H5U2TcAPzZiTes1oCYqjAHPfzGBgfPBjigK5soyq2g9U +A3NeF4j/yS42AzO1JdQwA3IgkBkCgYEAxcezd+3jBq+0oAZzsn0naMLiTkdn/03Z +wHXjwGB5wN9BKgIUdwnYHeemE89+8Nd/oEe2cJHso5xS/f0/hvkr2Kjb8kCooc24 +ah5bFNTDrLDo3TogS0/njh0lxS1PEwtivchGdGZJjFAxs49I7nBTsPncc83NmPwp +U6S/2fRq5uECgYAvUB3+5AarmY6WnQbQ+M93yjOGds7f0LEU1VSo+3VUHvuvCIBp +ZikiaM1xdar1D0Wc9+MhuQj5b0IUjVYXHXscwj1L58gV8LxP5KI6Ufg5lNNp4wd9 +csoHE4mO4Tw2CiAl53J490BMMmguqHEW2EycxovHMo7yr15l6yEExB19mQKBgQCO +WGySpGQBK/SUOBCNJgZ3H8xBCqOO3Dkci7yfeNAoQIZl9ZlFE5C39UFSgMScEn2I +nhRwcJYgKyKQKvTN8Afep6mlcWPtEGLp/W8QTxGF+M2ga3VSvu+pGNFWWIXQ7yDh +9oK+w9+rXQxob3fOJIoXlb1Um4qd0N7tlGWAOKm4AQKBgQCbWWrmhicsWI6TL9/w +3iM389LfdnlFY8+ATUO9HEm3tRehi8RZw9NqE0hCFemCAKXWsqOieJgfQc6QIMSH +imJGyA/cW87CdVb65QQjWwtpyvXkLXlCJPvzTfTGIj4l38Lre9iKNNYJfACtiMoW +hg66U2vKnvW4m2fFTJrs3UstUw== +-----END PRIVATE KEY----- diff --git a/test/idp/config/apache/simplesamlphp.conf b/test/idp/config/apache/simplesamlphp.conf new file mode 100644 index 0000000..01278b4 --- /dev/null +++ b/test/idp/config/apache/simplesamlphp.conf @@ -0,0 +1,23 @@ + + ServerName localhost + DocumentRoot /var/www/simplesamlphp + Alias /simplesaml /var/www/simplesamlphp/www + + + Require all granted + + + + + ServerName localhost + DocumentRoot /var/www/simplesamlphp + SSLEngine on + SSLCertificateFile /etc/ssl/cert/cert.crt + SSLCertificateKeyFile /etc/ssl/private/private.key + Alias /simplesaml /var/www/simplesamlphp/www + + + Require all granted + + + diff --git a/test/idp/config/simplesamlphp/authsources.php b/test/idp/config/simplesamlphp/authsources.php new file mode 100644 index 0000000..7fe2ce8 --- /dev/null +++ b/test/idp/config/simplesamlphp/authsources.php @@ -0,0 +1,31 @@ + array( + 'core:AdminPassword', + ), + + 'example-userpass' => array( + 'exampleauth:UserPass', + 'aa:aa' => array( + 'uid' => array('1'), + 'eduPersonAffiliation' => array('group1'), + 'email' => 'aa@route443.dev', + 'givenName' => 'Alan', + 'surName' => 'Alda', + 'telephoneNumber' => '+31(0)12345678', + 'company' => 'NGINX Inc.', + ), + 'bb:bb' => array( + 'uid' => array('2'), + 'eduPersonAffiliation' => array('group2'), + 'email' => 'bb@route443.dev', + 'givenName' => 'Ben', + 'surName' => 'Bernanke', + 'telephoneNumber' => '+31(0)12345678', + 'company' => 'NGINX Inc.', + ), + ), + +); diff --git a/test/idp/config/simplesamlphp/ca.pem b/test/idp/config/simplesamlphp/ca.pem new file mode 100644 index 0000000..aed7367 --- /dev/null +++ b/test/idp/config/simplesamlphp/ca.pem @@ -0,0 +1,22 @@ +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIId3W7QschALIwDQYJKoZIhvcNAQENBQAwQjETMBEGA1UE +AxMKbmdpbngtc2FtbDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMREwDwYDVQQH +EwhTYW4gSm9zZTAeFw0yMzAxMjYwNTU1MTZaFw00MzAxMjEwNTU1MTZaMEIxEzAR +BgNVBAMTCm5naW54LXNhbWwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8G +A1UEBxMIU2FuIEpvc2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7 +JWAw3tnUu8fZ8BLC/8BOv9PJy+h+vDRHsddceEjqdNJRzTPkOR9X0R8NeWp3nyQ1 +KwnRysD/k7VnM45/Lt2eob9EE0omfA/YqBlf68th7Q1Fyh5G0nt1cKtpjLCULmk5 +NeV74z+IXLEx1LGVFSNj/kRjbXjYK6AkrD80GoeRPtDFBJtHZWfRGZ1jn7iQyFe7 +zae4wdsuYmpYewsL7JyLqbaj6NVGZaZRkNPQjxYyLYGnU2zxsKcJWTNLHB7cQDrP +9qdKnBUYqEbeaarh7U2wifEfvMCvJDceHZ8Sbtk51dj2h5DX85VdRm83TMmTwXnY +vs4myeOTg+uQ07/Q+v5XAgMBAAGjgbAwga0wHQYDVR0OBBYEFA0JIWFbkEmGlb27 +/UmPxZYAyTWPMHEGA1UdIwRqMGiAFA0JIWFbkEmGlb27/UmPxZYAyTWPoUakRDBC +MRMwEQYDVQQDEwpuZ2lueC1zYW1sMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0Ex +ETAPBgNVBAcTCFNhbiBKb3Nlggh3dbtCxyEAsjAMBgNVHRMEBTADAQH/MAsGA1Ud +DwQEAwIBBjANBgkqhkiG9w0BAQ0FAAOCAQEATB2DaUUp1x1xGrSKgATbEK1uzcml +SG/Y1o0d+FwIQS+NTWQyTqTgobBM/ybD5aDUo1N8WB+4fQnS4OL+srt6M7Li+86Y +aHStkCE7u3f6Tx4ej9tx84C0Uqgypa4fcajLrJjWtUPDWhxwiKrmOPOBh7XUQ4Ws +jdcqNFSNYHMl/7Bi0TynCbK8qMiTEb2nA139JgWj1h449SAk2cyomrW2n/ZiwJyQ +k8uvrLBrD+kOQD4GFqpCHO0FBNdRmTQFL6hQvYebP67AWUA/uEIMzSEE+s4+fm4P +dmSYpGCQKgYK2UAVEa8B5f3zZ033RM/lhp5hg4JMHTKbz7iI1ny7R+LKzw== +-----END CERTIFICATE----- diff --git a/test/idp/config/simplesamlphp/config.php b/test/idp/config/simplesamlphp/config.php new file mode 100644 index 0000000..7f28351 --- /dev/null +++ b/test/idp/config/simplesamlphp/config.php @@ -0,0 +1,851 @@ + 'simplesaml/', + 'certdir' => 'cert/', + 'loggingdir' => 'log/', + 'datadir' => 'data/', + + /* + * A directory where SimpleSAMLphp can save temporary files. + * + * SimpleSAMLphp will attempt to create this directory if it doesn't exist. + */ + 'tempdir' => '/tmp/simplesaml', + + + /* + * If you enable this option, SimpleSAMLphp will log all sent and received messages + * to the log file. + * + * This option also enables logging of the messages that are encrypted and decrypted. + * + * Note: The messages are logged with the DEBUG log level, so you also need to set + * the 'logging.level' option to LOG_DEBUG. + */ + 'debug' => true, + + /* + * When showerrors is enabled, all error messages and stack traces will be output + * to the browser. + * + * When errorreporting is enabled, a form will be presented for the user to report + * the error to technicalcontact_email. + */ + 'showerrors' => true, + 'errorreporting' => true, + + /** + * Custom error show function called from SimpleSAML_Error_Error::show. + * See docs/simplesamlphp-errorhandling.txt for function code example. + * + * Example: + * 'errors.show_function' => array('sspmod_example_Error_Show', 'show'), + */ + + /** + * This option allows you to enable validation of XML data against its + * schemas. A warning will be written to the log if validation fails. + */ + 'debug.validatexml' => false, + + /** + * This password must be kept secret, and modified from the default value 123. + * This password will give access to the installation page of SimpleSAMLphp with + * metadata listing and diagnostics pages. + * You can also put a hash here; run "bin/pwgen.php" to generate one. + */ + 'auth.adminpassword' => ((getenv('SIMPLESAMLPHP_ADMIN_PASSWORD') != '') ? getenv('SIMPLESAMLPHP_ADMIN_PASSWORD') : 'secret'), + 'admin.protectindexpage' => false, + 'admin.protectmetadata' => false, + + /** + * This is a secret salt used by SimpleSAMLphp when it needs to generate a secure hash + * of a value. It must be changed from its default value to a secret value. The value of + * 'secretsalt' can be any valid string of any length. + * + * A possible way to generate a random salt is by running the following command from a unix shell: + * tr -c -d '0123456789abcdefghijklmnopqrstuvwxyz' /dev/null;echo + */ + 'secretsalt' => ((getenv('SIMPLESAMLPHP_SECRET_SALT') != '') ? getenv('SIMPLESAMLPHP_SECRET_SALT') : 'defaultsecretsalt'), + + /* + * Some information about the technical persons running this installation. + * The email address will be used as the recipient address for error reports, and + * also as the technical contact in generated metadata. + */ + 'technicalcontact_name' => 'SuperAdmin', + 'technicalcontact_email' => 'superadmin@route443.dev', + + /* + * The timezone of the server. This option should be set to the timezone you want + * SimpleSAMLphp to report the time in. The default is to guess the timezone based + * on your system timezone. + * + * See this page for a list of valid timezones: http://php.net/manual/en/timezones.php + */ + 'timezone' => 'America/Los_Angeles', + + /* + * Logging. + * + * define the minimum log level to log + * SimpleSAML_Logger::ERR No statistics, only errors + * SimpleSAML_Logger::WARNING No statistics, only warnings/errors + * SimpleSAML_Logger::NOTICE Statistics and errors + * SimpleSAML_Logger::INFO Verbose logs + * SimpleSAML_Logger::DEBUG Full debug logs - not recommended for production + * + * Choose logging handler. + * + * Options: [syslog,file,errorlog] + * + */ + 'logging.level' => SimpleSAML_Logger::DEBUG, + 'logging.handler' => 'errorlog', + + /* + * Specify the format of the logs. Its use varies depending on the log handler used (for instance, you cannot + * control here how dates are displayed when using the syslog or errorlog handlers), but in general the options + * are: + * + * - %date{}: the date and time, with its format specified inside the brackets. See the PHP documentation + * of the strftime() function for more information on the format. If the brackets are omitted, the standard + * format is applied. This can be useful if you just want to control the placement of the date, but don't care + * about the format. + * + * - %process: the name of the SimpleSAMLphp process. Remember you can configure this in the 'logging.processname' + * option below. + * + * - %level: the log level (name or number depending on the handler used). + * + * - %stat: if the log entry is intended for statistical purposes, it will print the string 'STAT ' (bear in mind + * the trailing space). + * + * - %trackid: the track ID, an identifier that allows you to track a single session. + * + * - %srcip: the IP address of the client. If you are behind a proxy, make sure to modify the + * $_SERVER['REMOTE_ADDR'] variable on your code accordingly to the X-Forwarded-For header. + * + * - %msg: the message to be logged. + * + */ + //'logging.format' => '%date{%b %d %H:%M:%S} %process %level %stat[%trackid] %msg', + + /* + * Choose which facility should be used when logging with syslog. + * + * These can be used for filtering the syslog output from SimpleSAMLphp into its + * own file by configuring the syslog daemon. + * + * See the documentation for openlog (http://php.net/manual/en/function.openlog.php) for available + * facilities. Note that only LOG_USER is valid on windows. + * + * The default is to use LOG_LOCAL5 if available, and fall back to LOG_USER if not. + */ + 'logging.facility' => defined('LOG_LOCAL5') ? constant('LOG_LOCAL5') : LOG_USER, + + /* + * The process name that should be used when logging to syslog. + * The value is also written out by the other logging handlers. + */ + 'logging.processname' => 'simplesamlphp', + + /* Logging: file - Logfilename in the loggingdir from above. + */ + 'logging.logfile' => 'simplesamlphp.log', + + /* (New) statistics output configuration. + * + * This is an array of outputs. Each output has at least a 'class' option, which + * selects the output. + */ + 'statistics.out' => array(// Log statistics to the normal log. + /* + array( + 'class' => 'core:Log', + 'level' => 'notice', + ), + */ + // Log statistics to files in a directory. One file per day. + /* + array( + 'class' => 'core:File', + 'directory' => '/var/log/stats', + ), + */ + ), + + + + /* + * Database + * + * This database configuration is optional. If you are not using + * core functionality or modules that require a database, you can + * skip this configuration. + */ + + /* + * Database connection string. + * Ensure that you have the required PDO database driver installed + * for your connection string. + */ + 'database.dsn' => 'mysql:host=localhost;dbname=saml', + + /* + * SQL database credentials + */ + 'database.username' => 'simplesamlphp', + 'database.password' => 'secret', + + /* + * (Optional) Table prefix + */ + 'database.prefix' => '', + + /* + * True or false if you would like a persistent database connection + */ + 'database.persistent' => false, + + /* + * Database slave configuration is optional as well. If you are only + * running a single database server, leave this blank. If you have + * a master/slave configuration, you can define as many slave servers + * as you want here. Slaves will be picked at random to be queried from. + * + * Configuration options in the slave array are exactly the same as the + * options for the master (shown above) with the exception of the table + * prefix. + */ + 'database.slaves' => array( + /* + array( + 'dsn' => 'mysql:host=myslave;dbname=saml', + 'username' => 'simplesamlphp', + 'password' => 'secret', + 'persistent' => false, + ), + */ + ), + + + + /* + * Enable + * + * Which functionality in SimpleSAMLphp do you want to enable. Normally you would enable only + * one of the functionalities below, but in some cases you could run multiple functionalities. + * In example when you are setting up a federation bridge. + */ + 'enable.saml20-idp' => true, + 'enable.shib13-idp' => false, + 'enable.adfs-idp' => false, + 'enable.wsfed-sp' => false, + 'enable.authmemcookie' => false, + + + /* + * Module enable configuration + * + * Configuration to override module enabling/disabling. + * + * Example: + * + * 'module.enable' => array( + * // Setting to TRUE enables. + * 'exampleauth' => TRUE, + * // Setting to FALSE disables. + * 'saml' => FALSE, + * // Unset or NULL uses default. + * 'core' => NULL, + * ), + * + */ + + + /* + * This value is the duration of the session in seconds. Make sure that the time duration of + * cookies both at the SP and the IdP exceeds this duration. + */ + 'session.duration' => 8 * (60 * 60), // 8 hours. + + /* + * Sets the duration, in seconds, data should be stored in the datastore. As the datastore is used for + * login and logout requests, thid option will control the maximum time these operations can take. + * The default is 4 hours (4*60*60) seconds, which should be more than enough for these operations. + */ + 'session.datastore.timeout' => (4 * 60 * 60), // 4 hours + + /* + * Sets the duration, in seconds, auth state should be stored. + */ + 'session.state.timeout' => (60 * 60), // 1 hour + + /* + * Option to override the default settings for the session cookie name + */ + 'session.cookie.name' => 'SimpleSAMLSessionIDIdp', + + /* + * Expiration time for the session cookie, in seconds. + * + * Defaults to 0, which means that the cookie expires when the browser is closed. + * + * Example: + * 'session.cookie.lifetime' => 30*60, + */ + 'session.cookie.lifetime' => 0, + + /* + * Limit the path of the cookies. + * + * Can be used to limit the path of the cookies to a specific subdirectory. + * + * Example: + * 'session.cookie.path' => '/simplesaml/', + */ + 'session.cookie.path' => '/', + + /* + * Cookie domain. + * + * Can be used to make the session cookie available to several domains. + * + * Example: + * 'session.cookie.domain' => '.example.org', + */ + 'session.cookie.domain' => null, + + /* + * Set the secure flag in the cookie. + * + * Set this to TRUE if the user only accesses your service + * through https. If the user can access the service through + * both http and https, this must be set to FALSE. + */ + 'session.cookie.secure' => false, + + /* + * Enable secure POST from HTTPS to HTTP. + * + * If you have some SP's on HTTP and IdP is normally on HTTPS, this option + * enables secure POSTing to HTTP endpoint without warning from browser. + * + * For this to work, module.php/core/postredirect.php must be accessible + * also via HTTP on IdP, e.g. if your IdP is on + * https://idp.example.org/ssp/, then + * http://idp.example.org/ssp/module.php/core/postredirect.php must be accessible. + */ + 'enable.http_post' => false, + + /* + * Options to override the default settings for php sessions. + */ + 'session.phpsession.cookiename' => 'PHPSESSIDIDP', + 'session.phpsession.savepath' => null, + 'session.phpsession.httponly' => true, + + /* + * Option to override the default settings for the auth token cookie + */ + 'session.authtoken.cookiename' => 'SimpleSAMLAuthTokenIdp', + + /* + * Options for remember me feature for IdP sessions. Remember me feature + * has to be also implemented in authentication source used. + * + * Option 'session.cookie.lifetime' should be set to zero (0), i.e. cookie + * expires on browser session if remember me is not checked. + * + * Session duration ('session.duration' option) should be set according to + * 'session.rememberme.lifetime' option. + * + * It's advised to use remember me feature with session checking function + * defined with 'session.check_function' option. + */ + 'session.rememberme.enable' => false, + 'session.rememberme.checked' => false, + 'session.rememberme.lifetime' => (14 * 86400), + + /** + * Custom function for session checking called on session init and loading. + * See docs/simplesamlphp-advancedfeatures.txt for function code example. + * + * Example: + * 'session.check_function' => array('sspmod_example_Util', 'checkSession'), + */ + + /* + * Languages available, RTL languages, and what language is default + */ + 'language.available' => array( + 'en', 'no', 'nn', 'se', 'da', 'de', 'sv', 'fi', 'es', 'fr', 'it', 'nl', 'lb', 'cs', + 'sl', 'lt', 'hr', 'hu', 'pl', 'pt', 'pt-br', 'tr', 'ja', 'zh', 'zh-tw', 'ru', 'et', + 'he', 'id', 'sr', 'lv', 'ro', 'eu' + ), + 'language.rtl' => array('ar', 'dv', 'fa', 'ur', 'he'), + 'language.default' => 'en', + + /* + * Options to override the default settings for the language parameter + */ + 'language.parameter.name' => 'language', + 'language.parameter.setcookie' => true, + + /* + * Options to override the default settings for the language cookie + */ + 'language.cookie.name' => 'language', + 'language.cookie.domain' => null, + 'language.cookie.path' => '/', + 'language.cookie.lifetime' => (60 * 60 * 24 * 900), + + /** + * Custom getLanguage function called from SimpleSAML_XHTML_Template::getLanguage(). + * Function should return language code of one of the available languages or NULL. + * See SimpleSAML_XHTML_Template::getLanguage() source code for more info. + * + * This option can be used to implement a custom function for determining + * the default language for the user. + * + * Example: + * 'language.get_language_function' => array('sspmod_example_Template', 'getLanguage'), + */ + + /* + * Extra dictionary for attribute names. + * This can be used to define local attributes. + * + * The format of the parameter is a string with :. + * + * Specifying this option will cause us to look for modules//dictionaries/.definition.json + * The dictionary should look something like: + * + * { + * "firstattribute": { + * "en": "English name", + * "no": "Norwegian name" + * }, + * "secondattribute": { + * "en": "English name", + * "no": "Norwegian name" + * } + * } + * + * Note that all attribute names in the dictionary must in lowercase. + * + * Example: 'attributes.extradictionary' => 'ourmodule:ourattributes', + */ + 'attributes.extradictionary' => null, + + /* + * Which theme directory should be used? + */ + 'theme.use' => 'default', + + + /* + * Default IdP for WS-Fed. + */ + 'default-wsfed-idp' => 'urn:federation:pingfederate:localhost', + + /* + * Whether the discovery service should allow the user to save his choice of IdP. + */ + 'idpdisco.enableremember' => true, + 'idpdisco.rememberchecked' => true, + + // Disco service only accepts entities it knows. + 'idpdisco.validate' => true, + + 'idpdisco.extDiscoveryStorage' => null, + + /* + * IdP Discovery service look configuration. + * Wether to display a list of idp or to display a dropdown box. For many IdP' a dropdown box + * gives the best use experience. + * + * When using dropdown box a cookie is used to highlight the previously chosen IdP in the dropdown. + * This makes it easier for the user to choose the IdP + * + * Options: [links,dropdown] + * + */ + 'idpdisco.layout' => 'dropdown', + + /* + * Whether SimpleSAMLphp should sign the response or the assertion in SAML 1.1 authentication + * responses. + * + * The default is to sign the assertion element, but that can be overridden by setting this + * option to TRUE. It can also be overridden on a pr. SP basis by adding an option with the + * same name to the metadata of the SP. + */ + 'shib13.signresponse' => true, + + + /* + * Authentication processing filters that will be executed for all IdPs + * Both Shibboleth and SAML 2.0 + */ + 'authproc.idp' => array( + /* Enable the authproc filter below to add URN Prefixces to all attributes + 10 => array( + 'class' => 'core:AttributeMap', 'addurnprefix' + ), */ + /* Enable the authproc filter below to automatically generated eduPersonTargetedID. + 20 => 'core:TargetedID', + */ + + // Adopts language from attribute to use in UI + 30 => 'core:LanguageAdaptor', + + /* Add a realm attribute from edupersonprincipalname + 40 => 'core:AttributeRealm', + */ + 45 => array( + 'class' => 'core:StatisticsWithAttribute', + 'attributename' => 'realm', + 'type' => 'saml20-idp-SSO', + ), + + /* When called without parameters, it will fallback to filter attributes ‹the old way› + * by checking the 'attributes' parameter in metadata on IdP hosted and SP remote. + */ + 50 => 'core:AttributeLimit', + + /* + * Search attribute "distinguishedName" for pattern and replaces if found + + 60 => array( + 'class' => 'core:AttributeAlter', + 'pattern' => '/OU=studerende/', + 'replacement' => 'Student', + 'subject' => 'distinguishedName', + '%replace', + ), + */ + + /* + * Consent module is enabled (with no permanent storage, using cookies). + + 90 => array( + 'class' => 'consent:Consent', + 'store' => 'consent:Cookie', + 'focus' => 'yes', + 'checked' => TRUE + ), + */ + // If language is set in Consent module it will be added as an attribute. + 99 => 'core:LanguageAdaptor', + ), + /* + * Authentication processing filters that will be executed for all SPs + * Both Shibboleth and SAML 2.0 + */ + 'authproc.sp' => array( + /* + 10 => array( + 'class' => 'core:AttributeMap', 'removeurnprefix' + ), + */ + + /* + * Generate the 'group' attribute populated from other variables, including eduPersonAffiliation. + 60 => array( + 'class' => 'core:GenerateGroups', 'eduPersonAffiliation' + ), + */ + /* + * All users will be members of 'users' and 'members' + 61 => array( + 'class' => 'core:AttributeAdd', 'groups' => array('users', 'members') + ), + */ + + // Adopts language from attribute to use in UI + 90 => 'core:LanguageAdaptor', + + ), + + + /* + * This option configures the metadata sources. The metadata sources is given as an array with + * different metadata sources. When searching for metadata, simpleSAMPphp will search through + * the array from start to end. + * + * Each element in the array is an associative array which configures the metadata source. + * The type of the metadata source is given by the 'type' element. For each type we have + * different configuration options. + * + * Flat file metadata handler: + * - 'type': This is always 'flatfile'. + * - 'directory': The directory we will load the metadata files from. The default value for + * this option is the value of the 'metadatadir' configuration option, or + * 'metadata/' if that option is unset. + * + * XML metadata handler: + * This metadata handler parses an XML file with either an EntityDescriptor element or an + * EntitiesDescriptor element. The XML file may be stored locally, or (for debugging) on a remote + * web server. + * The XML hetadata handler defines the following options: + * - 'type': This is always 'xml'. + * - 'file': Path to the XML file with the metadata. + * - 'url': The URL to fetch metadata from. THIS IS ONLY FOR DEBUGGING - THERE IS NO CACHING OF THE RESPONSE. + * + * MDX metadata handler: + * This metadata handler looks up for the metadata of an entity at the given MDX server. + * The MDX metadata handler defines the following options: + * - 'type': This is always 'mdx'. + * - 'server': URL of the MDX server (url:port). Mandatory. + * - 'validateFingerprint': The fingerprint of the certificate used to sign the metadata. + * You don't need this option if you don't want to validate the signature on the metadata. Optional. + * - 'cachedir': Directory where metadata can be cached. Optional. + * - 'cachelength': Maximum time metadata cah be cached, in seconds. Default to 24 + * hours (86400 seconds). Optional. + * + * PDO metadata handler: + * This metadata handler looks up metadata of an entity stored in a database. + * + * Note: If you are using the PDO metadata handler, you must configure the database + * options in this configuration file. + * + * The PDO metadata handler defines the following options: + * - 'type': This is always 'pdo'. + * + * + * Examples: + * + * This example defines two flatfile sources. One is the default metadata directory, the other + * is a metadata directory with autogenerated metadata files. + * + * 'metadata.sources' => array( + * array('type' => 'flatfile'), + * array('type' => 'flatfile', 'directory' => 'metadata-generated'), + * ), + * + * This example defines a flatfile source and an XML source. + * 'metadata.sources' => array( + * array('type' => 'flatfile'), + * array('type' => 'xml', 'file' => 'idp.example.org-idpMeta.xml'), + * ), + * + * This example defines an mdx source. + * 'metadata.sources' => array( + * array('type' => 'mdx', server => 'http://mdx.server.com:8080', 'cachedir' => '/var/simplesamlphp/mdx-cache', 'cachelength' => 86400) + * ), + * + * This example defines an pdo source. + * 'metadata.sources' => array( + * array('type' => 'pdo') + * ), + * + * Default: + * 'metadata.sources' => array( + * array('type' => 'flatfile') + * ), + */ + 'metadata.sources' => array( + array('type' => 'flatfile'), + ), + + + /* + * Configure the datastore for SimpleSAMLphp. + * + * - 'phpsession': Limited datastore, which uses the PHP session. + * - 'memcache': Key-value datastore, based on memcache. + * - 'sql': SQL datastore, using PDO. + * + * The default datastore is 'phpsession'. + * + * (This option replaces the old 'session.handler'-option.) + */ + 'store.type' => 'memcache', + + + /* + * The DSN the sql datastore should connect to. + * + * See http://www.php.net/manual/en/pdo.drivers.php for the various + * syntaxes. + */ + 'store.sql.dsn' => 'sqlite:/path/to/sqlitedatabase.sq3', + + /* + * The username and password to use when connecting to the database. + */ + 'store.sql.username' => null, + 'store.sql.password' => null, + + /* + * The prefix we should use on our tables. + */ + 'store.sql.prefix' => 'SimpleSAMLphp', + + + /* + * Configuration for the 'memcache' session store. This allows you to store + * multiple redundant copies of sessions on different memcache servers. + * + * 'memcache_store.servers' is an array of server groups. Every data + * item will be mirrored in every server group. + * + * Each server group is an array of servers. The data items will be + * load-balanced between all servers in each server group. + * + * Each server is an array of parameters for the server. The following + * options are available: + * - 'hostname': This is the hostname or ip address where the + * memcache server runs. This is the only required option. + * - 'port': This is the port number of the memcache server. If this + * option isn't set, then we will use the 'memcache.default_port' + * ini setting. This is 11211 by default. + * - 'weight': This sets the weight of this server in this server + * group. http://php.net/manual/en/function.Memcache-addServer.php + * contains more information about the weight option. + * - 'timeout': The timeout for this server. By default, the timeout + * is 3 seconds. + * + * Example of redundant configuration with load balancing: + * This configuration makes it possible to lose both servers in the + * a-group or both servers in the b-group without losing any sessions. + * Note that sessions will be lost if one server is lost from both the + * a-group and the b-group. + * + * 'memcache_store.servers' => array( + * array( + * array('hostname' => 'mc_a1'), + * array('hostname' => 'mc_a2'), + * ), + * array( + * array('hostname' => 'mc_b1'), + * array('hostname' => 'mc_b2'), + * ), + * ), + * + * Example of simple configuration with only one memcache server, + * running on the same computer as the web server: + * Note that all sessions will be lost if the memcache server crashes. + * + * 'memcache_store.servers' => array( + * array( + * array('hostname' => 'localhost'), + * ), + * ), + * + */ + 'memcache_store.servers' => array( + array( + array('hostname' => 'localhost'), + ), + ), + + + /* + * This value allows you to set a prefix for memcache-keys. The default + * for this value is 'SimpleSAMLphp', which is fine in most cases. + * + * When running multiple instances of SSP on the same host, and more + * than one instance is using memcache, you probably want to assign + * a unique value per instance to this setting to avoid data collision. + */ + 'memcache_store.prefix' => 'simpleSAMLphp', + + + /* + * This value is the duration data should be stored in memcache. Data + * will be dropped from the memcache servers when this time expires. + * The time will be reset every time the data is written to the + * memcache servers. + * + * This value should always be larger than the 'session.duration' + * option. Not doing this may result in the session being deleted from + * the memcache servers while it is still in use. + * + * Set this value to 0 if you don't want data to expire. + * + * Note: The oldest data will always be deleted if the memcache server + * runs out of storage space. + */ + 'memcache_store.expires' => 36 * (60 * 60), // 36 hours. + + + /* + * Should signing of generated metadata be enabled by default. + * + * Metadata signing can also be enabled for a individual SP or IdP by setting the + * same option in the metadata for the SP or IdP. + */ + 'metadata.sign.enable' => false, + + /* + * The default key & certificate which should be used to sign generated metadata. These + * are files stored in the cert dir. + * These values can be overridden by the options with the same names in the SP or + * IdP metadata. + * + * If these aren't specified here or in the metadata for the SP or IdP, then + * the 'certificate' and 'privatekey' option in the metadata will be used. + * if those aren't set, signing of metadata will fail. + */ + 'metadata.sign.privatekey' => null, + 'metadata.sign.privatekey_pass' => null, + 'metadata.sign.certificate' => null, + + + /* + * Proxy to use for retrieving URLs. + * + * Example: + * 'proxy' => 'tcp://proxy.example.com:5100' + */ + 'proxy' => null, + + /* + * Array of domains that are allowed when generating links or redirections + * to URLs. SimpleSAMLphp will use this option to determine whether to + * to consider a given URL valid or not, but you should always validate + * URLs obtained from the input on your own (i.e. ReturnTo or RelayState + * parameters obtained from the $_REQUEST array). + * + * SimpleSAMLphp will automatically add your own domain (either by checking + * it dynamically, or by using the domain defined in the 'baseurlpath' + * directive, the latter having precedence) to the list of trusted domains, + * in case this option is NOT set to NULL. In that case, you are explicitly + * telling SimpleSAMLphp to verify URLs. + * + * Set to an empty array to disallow ALL redirections or links pointing to + * an external URL other than your own domain. This is the default behaviour. + * + * Set to NULL to disable checking of URLs. DO NOT DO THIS UNLESS YOU KNOW + * WHAT YOU ARE DOING! + * + * Example: + * 'trusted.url.domains' => array('sp.example.com', 'app.example.com'), + */ + 'trusted.url.domains' => array(), + +); diff --git a/test/idp/config/simplesamlphp/phpinfo.php b/test/idp/config/simplesamlphp/phpinfo.php new file mode 100644 index 0000000..41ed4c2 --- /dev/null +++ b/test/idp/config/simplesamlphp/phpinfo.php @@ -0,0 +1,8 @@ + '__DEFAULT__', + + // X.509 key and certificate. Relative to the cert directory. + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + + /* + * Authentication source to use. Must be one that is configured in + * 'config/authsources.php'. + */ + 'auth' => 'example-userpass', + 'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => FALSE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => FALSE, + 'validate.logout' => FALSE, + + 'OrganizationName' => [ + 'en' => 'NGINX SAML', + 'ru' => 'энджин-икс самл', + ], + 'OrganizationURL' => [ + 'en' => 'https://example.org', + 'ru' => 'https://example.ru', + ], + /* Uncomment the following to use the uri NameFormat on attributes. */ + /* + 'attributes.NameFormat' => 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri', + 'authproc' => [ + // Convert LDAP names to oids. + 100 => ['class' => 'core:AttributeMap', 'name2oid'], + ], + */ + + /* + * Uncomment the following to specify the registration information in the + * exported metadata. Refer to: + * http://docs.oasis-open.org/security/saml/Post2.0/saml-metadata-rpi/v1.0/cs01/saml-metadata-rpi-v1.0-cs01.html + * for more information. + */ + /* + 'RegistrationInfo' => [ + 'authority' => 'urn:mace:example.org', + 'instant' => '2008-01-17T11:28:03Z', + 'policies' => [ + 'en' => 'http://example.org/policy', + 'es' => 'http://example.org/politica', + ], + ], + */ +]; + +$metadata['https://idp.route443.dev/ssopost-sas0-vauthn0-eas0-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => FALSE, + 'saml20.sign.assertion' => FALSE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => FALSE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssopost-sas0-vauthn1-eas0-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => FALSE, + 'saml20.sign.assertion' => FALSE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssopost-sas1-vauthn1-eas0-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssopost-sas1-vauthn1-eas1-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => TRUE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssoredir-sas1-vauthn1-eas0-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssoredir-sas1-vauthn1-eas1-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => TRUE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssopost-art-sas1-vauthn1-eas1-eni0/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => TRUE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, + 'saml20.sendartifact' => TRUE, +); + +$metadata['https://idp.route443.dev/ssopost-art-sas1-vauthn1-eas1-eni1/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1', + 'assertion.encryption' => TRUE, + 'nameid.encryption' => TRUE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, + 'saml20.sendartifact' => TRUE, +); + +$metadata['https://idp.route443.dev/ssopost-sas1-vauthn1-sha256/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssopost-sas1-vauthn1-sha384/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); + +$metadata['https://idp.route443.dev/ssopost-sas1-vauthn1-sha512/'] = array( + 'host' => '__DEFAULT__', + 'privatekey' => 'saml.key', + 'certificate' => 'saml.pem', + 'auth' => 'example-userpass', + 'userid.attribute' => 'email', + 'SingleSignOnServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'SingleLogoutServiceBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'signature.algorithm' => 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512', + 'assertion.encryption' => FALSE, + 'nameid.encryption' => FALSE, + 'saml20.sign.response' => TRUE, + 'saml20.sign.assertion' => TRUE, + 'sign.logout' => FALSE, + 'validate.authnrequest' => TRUE, + 'validate.logout' => FALSE, +); \ No newline at end of file diff --git a/test/idp/config/simplesamlphp/saml20-sp-remote.php b/test/idp/config/simplesamlphp/saml20-sp-remote.php new file mode 100644 index 0000000..e97bfd3 --- /dev/null +++ b/test/idp/config/simplesamlphp/saml20-sp-remote.php @@ -0,0 +1,56 @@ + getenv('SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE'), + 'SingleLogoutService' => getenv('SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE'), +); + +$metadata['http://sp.route443.dev'] = array ( + 'entityid' => 'http://sp.route443.dev', + 'contacts' => + array ( + ), + 'metadata-set' => 'saml20-sp-remote', + 'AssertionConsumerService' => + array ( + 0 => + array ( + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'Location' => 'http://sp.route443.dev/saml/acs', + 'index' => 0, + 'isDefault' => true, + ), + ), + 'SingleLogoutService' => + array ( + 0 => + array ( + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + 'Location' => 'http://sp.route443.dev/saml/sls', + 'ResponseLocation' => 'http://sp.route443.dev/saml/sls', + ), + 1 => + array ( + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + 'Location' => 'http://sp.route443.dev/saml/sls', + 'ResponseLocation' => 'http://sp.route443.dev/saml/sls', + ), + ), + 'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified', + 'keys' => + array ( + 0 => + array ( + 'encryption' => false, + 'signing' => true, + 'type' => 'X509Certificate', + 'X509Certificate' => 'MIIERTCCAy2gAwIBAgIBAjANBgkqhkiG9w0BAQsFADBCMRMwEQYDVQQDEwpuZ2lueC1zYW1sMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMB4XDTIzMDEyNjA1NTkzMloXDTMzMDEyMzA1NTkzMlowSTEaMBgGA1UEAxMRc2lnbi5yb3V0ZTQ0My5kZXYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIU2FuIEpvc2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDBBf0jHxvbZtHfwneJF94ga0XQkw7InHgrqD+RQW0wQ/Xlz54f+31MsBzz+ZmDA5IlVWYHhf+CZz5WFT0lstKHM6P52SdntdEqwV89KBB00e/fhs6/6JdFMlmwdyUEySYGa8gtr7GPVVmMjtQ8pryJLC8hC0DCpABoTkgzPy2YZrwlE3L4bejsttSUwAsM+TIgoe0emuoYza7ezB4ba4WBFo7noUiEZub7wrbDLdpaTzl5q0aHkRRfSHy0PQ5NGlp0H8DyeHKWjHSR9Om8XMSrKU1PAprF+Tf0S9MF2oLfDxP2AEWpmyC1joC2a8TbTGkTey/SxsuNW665Iv07BC23AgMBAAGjggE9MIIBOTAJBgNVHRMEAjAAMBEGCWCGSAGG+EIBAQQEAwIGQDALBgNVHQ8EBAMCBaAwMwYJYIZIAYb4QgENBCYWJE9wZW5TU0wgR2VuZXJhdGVkIFNlcnZlciBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUGSHB6+BPP91/Ay882eOAcRVlIM4wcQYDVR0jBGowaIAUDQkhYVuQSYaVvbv9SY/FlgDJNY+hRqREMEIxEzARBgNVBAMTCm5naW54LXNhbWwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIU2FuIEpvc2WCCHd1u0LHIQCyMCcGA1UdJQQgMB4GCCsGAQUFBwMBBggrBgEFBQcDAgYIKwYBBQUIAgIwHAYDVR0RBBUwE4IRc2lnbi5yb3V0ZTQ0My5kZXYwDQYJKoZIhvcNAQELBQADggEBAG8ZGiea/rpI5ZWmptr5pcAKAym5VNENWBZ7YnJVEuYUhjCgZSQvt498D5zCHUZtiuxkbOV8xEvUunPtFfx5s+nKolJndBPSbxy3LvYI2SDHtGYRi5iJ38SpNIy1lV1In4OkKUKxJrl6SnTQoy2w+m4GbDWl6xgDLKMDJccJZ1tgtlKF29BYX9lv20ev0d1qESCoz9ovC1oOW2XUETl03WYPa2mIQnOaDswzLhS/psTUDeoMYcRGRMyaKrzl6zuw+G3IHQbgh/hCe77AXf8BFC8g2hmte7k4TGM1K3VggmB6TdqmmMyS9yW9bz8C3oM5Wdaa43fMYVeGxNeVjfcFbWI=', + ), + ), + 'validate.authnrequest' => false, + 'saml20.sign.assertion' => false, +); \ No newline at end of file diff --git a/test/idp/docker-compose.yml b/test/idp/docker-compose.yml new file mode 100644 index 0000000..9ed9201 --- /dev/null +++ b/test/idp/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3' +services: + testsamlidp_idp: + build: + context: . + dockerfile: ./Dockerfile + args: + - ServerName=idp.route443.dev + environment: + SIMPLESAMLPHP_SP_ENTITY_ID: https://idp.route443.dev + SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE: https://idp.route443.dev/simplesaml/module.php/saml/sp/saml2-acs.php/test-sp + SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE: https://idp.route443.dev/simplesaml/module.php/saml/sp/saml2-logout.php/test-sp + SIMPLESAMLPHP_ADMIN_PASSWORD: admin + SIMPLESAMLPHP_SECRET_SALT: salt + ports: + - "8080:8080" + - "8443:8443" + tty: true diff --git a/test/makefile b/test/makefile new file mode 100644 index 0000000..5351c6b --- /dev/null +++ b/test/makefile @@ -0,0 +1,93 @@ +# makefile to prepare SAML test env for nginx +WORKDIR=${CURDIR} + +# build directory +SESRC:=~/nginx-se +NGX:=$(WORKDIR)/nginx-se +NJS:=$(WORKDIR)/njs +IDP:=$(WORKDIR)/idp + +# nginx installation prefix +PREFIX:=$(WORKDIR)/nginx + +# SAML conf files +CFLIST:=saml_sp.js frontend_server.conf saml_sp_configuration.conf saml_sp.server_conf + +# this is needed to instrument code properly +PROF_CFLAGS=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC +PROF_LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now + +# used nginx modules +MODULES= --with-http_ssl_module \ + --with-http_addition_module \ + --with-http_sub_module \ + --with-http_gzip_static_module \ + --with-http_auth_request_module \ + --with-http_gunzip_module \ + --with-http_stub_status_module \ + --with-http_session_log_module \ + --with-stream \ + --with-stream_ssl_module \ + --with-stream_ssl_preread_module \ + --with-file-aio \ + --with-mail_ssl_module \ + --with-http_v2_module \ + --with-http_slice_module \ + --with-http_auth_jwt_module \ + --with-debug \ + --with-threads \ + --with-compat \ + --add-module=$(NJS)/nginx + +all: build start + @echo "Done!" + +# not really targets, just shortcuts +.PHONY: build start stop restart clean + +# builds NGINX Plus and NJS +build: + cp -r $(SESRC) $(WORKDIR) || { echo "nginx-se not found!"; exit 1; } + hg clone http://hg.nginx.org/njs + cd $(NJS) && \ + ./configure && make + cd $(NGX) && \ + hg up se && \ + ./auto/configure --with-cc-opt="$(PROF_CFLAGS)" \ + --with-ld-opt="$(PROF_LDFLAGS)" \ + --prefix=$(PREFIX) $(MODULES) && \ + make -j$(nproc) install && \ + rm -f $(NGX)/autotest.* + @rm -rf $(NGX) + @rm -rf $(NJS) + @echo "NGINX and NJS BUILD OK" + +# start nginx with saml configuration and SimpleSAMLphp docker container +start: + cd $(IDP) &&\ + docker-compose up -d --build + cd $(WORKDIR) &&\ + $(foreach f,$(CFLIST),cp ../$(f) $(PREFIX)/conf/;) + cd $(PREFIX) &&\ + sudo sbin/nginx -p $(PREFIX) -c $(PREFIX)/conf/frontend_server.conf + +# start nginx with saml configuration and SimpleSAMLphp docker container +restart: + cd $(WORKDIR) &&\ + $(foreach f,$(CFLIST),cp ../$(f) $(PREFIX)/conf/;) + cd $(PREFIX) &&\ + sudo sbin/nginx -s reload + +# stop nginx with saml configuration and SimpleSAMLphp docker container +stop: + cd $(IDP) &&\ + docker-compose down + cd $(PREFIX) &&\ + sudo sbin/nginx -s quit + +# cleanup +clean: + @rm -rf $(PREFIX) + @rm -rf $(NGX) + @rm -rf $(NJS) + @echo "CLEANUP DONE" \ No newline at end of file