Removing stale code.
authorScott Cantor <cantor.2@osu.edu>
Tue, 19 Jul 2005 03:27:34 +0000 (03:27 +0000)
committerScott Cantor <cantor.2@osu.edu>
Tue, 19 Jul 2005 03:27:34 +0000 (03:27 +0000)
shib-target/shib-rm.cpp [deleted file]

diff --git a/shib-target/shib-rm.cpp b/shib-target/shib-rm.cpp
deleted file mode 100644 (file)
index e158521..0000000
+++ /dev/null
@@ -1,173 +0,0 @@
-/*
- *  Copyright 2001-2005 Internet2
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-/*
- * shib-rm.cpp -- Resource Manager interface
- *
- * Created By: Derek Atkins <derek@ihtfp.com>
- *
- * $Id$
- */
-
-#include "internal.h"
-
-#ifdef HAVE_UNISTD_H
-# include <unistd.h>
-#endif
-
-#include <xercesc/util/Base64.hpp>
-
-#include <sstream>
-#include <stdexcept>
-
-using namespace std;
-using namespace log4cpp;
-using namespace saml;
-using namespace shibboleth;
-using namespace shibtarget;
-
-RPCError* RM::getAssertions(
-    const char* cookie,
-    const char* ip,
-    vector<SAMLAssertion*>& assertions,
-    SAMLAuthenticationStatement** statement
-    )
-{
-  saml::NDC ndc("getAssertions");
-  Category& log=Category::getInstance("shibtarget.RM");
-  log.info("get assertions...");
-
-  if (!cookie || !*cookie) {
-    log.error ("No cookie value provided.");
-    return new RPCError(-1, "No cookie value provided.");
-  }
-
-  if (!ip || !*ip) {
-    log.error ("Invalid ip address");
-    return new RPCError(-1, "Invalid IP address");
-  }
-
-  log.debug("session cookie: %s", cookie);
-
-  shibrpc_get_assertions_args_1 arg;
-  arg.cookie.cookie = (char*)cookie;
-  arg.cookie.client_addr = (char*)ip;
-  arg.checkIPAddress = true;
-  arg.application_id = (char *)m_app->getId();
-
-  log.info("request from %s for \"%s\"", ip, arg.application_id);
-
-  const IPropertySet* props=m_app->getPropertySet("Sessions");
-  if (props) {
-      pair<bool,bool> pcheck=props->getBool("checkAddress");
-      if (pcheck.first)
-          arg.checkIPAddress = pcheck.second;
-  }
-
-  shibrpc_get_assertions_ret_1 ret;
-  memset (&ret, 0, sizeof(ret));
-
-  // Loop on the RPC in case we lost contact the first time through
-  int retry = 1;
-  CLIENT *clnt;
-  RPC rpc;
-  do {
-    clnt = rpc->connect();
-    clnt_stat status = shibrpc_get_assertions_1(&arg, &ret, clnt);
-    if (status != RPC_SUCCESS) {
-      // FAILED.  Release, disconnect, and try again.
-      log.debug("RPC Failure: %p (%p) (%d): %s", this, clnt, status, clnt_spcreateerror("shibrpc_get_assertions_1"));
-      rpc->disconnect();
-      if (retry)
-        retry--;
-      else
-        return new RPCError(-1, "RPC Failure");
-    }
-    else {
-      // SUCCESS.  Release back into pool
-      retry = -1;
-    }
-  } while (retry>=0);
-
-  log.debug("RPC completed with status %d (%p)", ret.status.status, this);
-
-  RPCError* retval = NULL;
-  if (ret.status.status)
-    retval = new RPCError(&ret.status);
-  else {
-    try {
-      try {
-        for (u_int i = 0; i < ret.assertions.assertions_len; i++) {
-          istringstream attrstream(ret.assertions.assertions_val[i].xml_string);
-          SAMLAssertion *as = NULL;
-          log.debugStream() << "Trying to decode assertion " << i << ": " <<
-                ret.assertions.assertions_val[i].xml_string << CategoryStream::ENDLINE;
-          assertions.push_back(new SAMLAssertion(attrstream));
-        }
-
-        // return the Authentication Statement
-        if (statement) {
-          istringstream authstream(ret.auth_statement.xml_string);
-          SAMLAuthenticationStatement *auth = NULL;
-          
-          log.debugStream() << "Trying to decode authentication statement: " <<
-                ret.auth_statement.xml_string << CategoryStream::ENDLINE;
-            auth = new SAMLAuthenticationStatement(authstream);
-        
-            // Save off the statement
-            *statement = auth;
-        }
-      }
-      catch (SAMLException& e) {
-       log.error ("SAML Exception: %s", e.what());
-       ostringstream os;
-               os << e;
-               throw ShibTargetException(SHIBRPC_SAML_EXCEPTION, os.str().c_str());
-      }
-      catch (XMLException& e) {
-               log.error ("XML Exception: %s", e.getMessage());
-               auto_ptr_char msg(e.getMessage());
-               throw ShibTargetException (SHIBRPC_XML_EXCEPTION, msg.get());
-      }
-    }
-    catch (ShibTargetException &e) {
-      retval = new RPCError(e);
-    }
-
-    if (!retval)
-      retval = new RPCError();
-  }
-
-  clnt_freeres(clnt, (xdrproc_t)xdr_shibrpc_get_assertions_ret_1, (caddr_t)&ret);
-  rpc.pool();
-
-  log.debug ("returning..");
-  return retval;
-}
-
-void RM::serialize(SAMLAssertion &assertion, string &result)
-{
-  saml::NDC ndc("serialize");
-  Category& log=Category::getInstance("shibtarget.RM");
-
-  ostringstream os;
-  os << assertion;
-  unsigned int outlen;
-  char* assn = (char*) os.str().c_str();
-  XMLByte* serialized = Base64::encode(reinterpret_cast<XMLByte*>(assn), os.str().length(), &outlen);
-  result = (char*) serialized;
-  XMLString::release(&serialized);
-}