/* * * Copyright (c) 2013 - 2017 Lijun Liao * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License version 3 * as published by the Free Software Foundation with the addition of the * following permission added to Section 15 as permitted in Section 7(a): * * FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY * THE AUTHOR LIJUN LIAO. LIJUN LIAO DISCLAIMS THE WARRANTY OF NON INFRINGEMENT * OF THIRD PARTY RIGHTS. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License. * * You can be released from the requirements of the license by purchasing * a commercial license. Buying such a license is mandatory as soon as you * develop commercial activities involving the XiPKI software without * disclosing the source code of your own applications. * * For more information, please contact Lijun Liao at this * address: lijun.liao@gmail.com */ package org.xipki.pki.ca.dbtool.diffdb; import java.math.BigInteger; import java.security.cert.X509Certificate; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.xipki.commons.common.EndOfQueue; import org.xipki.commons.common.util.ParamUtil; import org.xipki.commons.datasource.DataSourceWrapper; import org.xipki.commons.datasource.springframework.dao.DataAccessException; import org.xipki.commons.security.util.X509Util; import org.xipki.pki.ca.dbtool.DbToolBase; import org.xipki.pki.ca.dbtool.StopMe; import org.xipki.pki.ca.dbtool.diffdb.io.DbDigestEntry; import org.xipki.pki.ca.dbtool.diffdb.io.DbSchemaType; import org.xipki.pki.ca.dbtool.diffdb.io.DigestDbEntrySet; import org.xipki.pki.ca.dbtool.diffdb.io.IdentifiedDbDigestEntry; import org.xipki.pki.ca.dbtool.diffdb.io.XipkiDbControl; /** * @author Lijun Liao * @since 2.0.0 */ public class XipkiDbDigestReader extends DbDigestReader { private static final Logger LOG = LoggerFactory.getLogger(XipkiDbDigestReader.class); private int caId; private XipkiDbControl dbControl; private Connection conn; private String selectCertSql; private class XipkiDbRetriever implements Retriever { private PreparedStatement selectCertStmt; private boolean endReached; XipkiDbRetriever() throws DataAccessException { try { selectCertStmt = datasource.prepareStatement(conn, selectCertSql); } catch (DataAccessException ex) { datasource.returnConnection(conn); throw ex; } } @Override public void run() { while (!endReached && !stopMe.stopMe()) { try { query(); } catch (InterruptedException ex) { LOG.error("InterruptedException: {}", ex.getMessage()); } } releaseResources(selectCertStmt, null); datasource.returnConnection(conn); selectCertStmt = null; } private void query() throws InterruptedException { long startId = lastProcessedId + 1; DigestDbEntrySet result = new DigestDbEntrySet(startId); ResultSet rs = null; try { selectCertStmt.setLong(1, startId); rs = selectCertStmt.executeQuery(); while (rs.next()) { long id = rs.getLong("ID"); if (lastProcessedId < id) { lastProcessedId = id; } String hash = rs.getString(dbControl.getColCerthash()); BigInteger serial = new BigInteger(rs.getString("SN"), 16); boolean revoked = rs.getBoolean("REV"); Integer revReason = null; Long revTime = null; Long revInvTime = null; if (revoked) { revReason = rs.getInt("RR"); revTime = rs.getLong("RT"); revInvTime = rs.getLong("RIT"); if (revInvTime == 0) { revInvTime = null; } } DbDigestEntry cert = new DbDigestEntry(serial, revoked, revReason, revTime, revInvTime, hash); result.addEntry(new IdentifiedDbDigestEntry(cert, id)); } } catch (Exception ex) { if (ex instanceof SQLException) { ex = datasource.translate(selectCertSql, (SQLException) ex); } result.setException(ex); } finally { releaseResources(null, rs); } if (result.getEntries().isEmpty()) { endReached = true; outQueue.put(EndOfQueue.INSTANCE); } else { outQueue.put(result); } } // method query } // class XipkiDbRetriever private XipkiDbDigestReader(final DataSourceWrapper datasource, final X509Certificate caCert, final int totalAccount, final long minId, final int numBlocksToRead, final int numPerSelect, final StopMe stopMe) throws Exception { super(datasource, caCert, totalAccount, minId, numBlocksToRead, stopMe); } // constructor private void init(final DbSchemaType dbSchemaType, final int caId, final int numPerSelect) throws Exception { this.caId = caId; this.conn = datasource.getConnection(); this.dbControl = new XipkiDbControl(dbSchemaType); StringBuilder sb = new StringBuilder(); sb.append("ID,SN,REV,RR,RT,RIT,"); sb.append(dbControl.getColCerthash()); sb.append(" FROM CERT INNER JOIN ").append(dbControl.getTblCerthash()); sb.append(" ON CERT.").append(dbControl.getColCaId()).append("=").append(caId); sb.append(" AND CERT.ID>=? AND CERT.ID=").append(dbControl.getTblCerthash()).append(".CID"); this.selectCertSql = datasource.buildSelectFirstSql(numPerSelect, "ID ASC", sb.toString()); if (!super.init()) { throw new Exception("could not initialize the " + this.getClass().getName()); } } public int getCaId() { return caId; } @Override protected Retriever getRetriever() throws DataAccessException { return new XipkiDbRetriever(); } public static XipkiDbDigestReader getInstance(final DataSourceWrapper datasource, final DbSchemaType dbSchemaType, final int caId, final int numBlocksToRead, final int numPerSelect, final StopMe stopMe) throws Exception { ParamUtil.requireNonNull("datasource", datasource); Connection conn = datasource.getConnection(); XipkiDbControl dbControl = new XipkiDbControl(dbSchemaType); Statement stmt = null; ResultSet rs = null; String sql = null; X509Certificate caCert; int totalAccount; long minId; try { stmt = datasource.createStatement(conn); sql = "SELECT CERT FROM " + dbControl.getTblCa() + " WHERE ID=" + caId; rs = stmt.executeQuery(sql); if (!rs.next()) { throw new IllegalArgumentException("no CA with id '" + caId + "' is available"); } caCert = X509Util.parseBase64EncodedCert(rs.getString("CERT")); rs.close(); sql = "SELECT COUNT(*) FROM CERT WHERE " + dbControl.getColCaId() + "=" + caId; rs = stmt.executeQuery(sql); totalAccount = rs.next() ? rs.getInt(1) : 0; rs.close(); sql = "SELECT MIN(ID) FROM CERT WHERE " + dbControl.getColCaId() + "=" + caId; rs = stmt.executeQuery(sql); minId = rs.next() ? rs.getLong(1) : 1; XipkiDbDigestReader reader = new XipkiDbDigestReader(datasource, caCert, totalAccount, minId, numBlocksToRead, numPerSelect, stopMe); reader.init(dbSchemaType, caId, numPerSelect); return reader; } catch (SQLException ex) { throw datasource.translate(sql, ex); } finally { DbToolBase.releaseResources(datasource, stmt, rs); } } // method getInstance }