868f9ac26b20a1db3fdefa7bc766b3599ad9d71f
[aaf/authz.git] / auth / auth-cass / src / main / java / org / onap / aaf / auth / dao / cass / CredDAO.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.dao.cass;
23
24 import java.io.ByteArrayOutputStream;
25 import java.io.DataInputStream;
26 import java.io.DataOutputStream;
27 import java.io.IOException;
28 import java.nio.ByteBuffer;
29 import java.security.SecureRandom;
30 import java.util.Date;
31 import java.util.List;
32
33 import org.onap.aaf.auth.dao.Bytification;
34 import org.onap.aaf.auth.dao.CIDAO;
35 import org.onap.aaf.auth.dao.Cached;
36 import org.onap.aaf.auth.dao.CassDAOImpl;
37 import org.onap.aaf.auth.dao.Loader;
38 import org.onap.aaf.auth.dao.Streamer;
39 import org.onap.aaf.auth.env.AuthzTrans;
40 import org.onap.aaf.auth.layer.Result;
41 import org.onap.aaf.misc.env.APIException;
42 import org.onap.aaf.misc.env.util.Chrono;
43
44 import com.datastax.driver.core.Cluster;
45 import com.datastax.driver.core.Row;
46
47 /**
48  * CredDAO manages credentials. 
49  * @author Jonathan
50  * Date: 7/19/13
51  */
52 public class CredDAO extends CassDAOImpl<AuthzTrans,CredDAO.Data> {
53     public static final String TABLE = "cred";
54     public static final int CACHE_SEG = 0x40; // yields segment 0x0-0x3F
55     public static final int RAW = -1;
56     public static final int FQI = 0;
57     public static final int BASIC_AUTH = 1;
58     public static final int BASIC_AUTH_SHA256 = 2;
59     public static final int CERT_SHA256_RSA =200;
60     public static final SecureRandom srand = new SecureRandom();
61     
62     private HistoryDAO historyDAO;
63     private CIDAO<AuthzTrans> infoDAO;
64     private PSInfo psNS;
65     private PSInfo psID;
66     
67     public CredDAO(AuthzTrans trans, Cluster cluster, String keyspace) throws APIException, IOException {
68         super(trans, CredDAO.class.getSimpleName(),cluster, keyspace, Data.class,TABLE, readConsistency(trans,TABLE), writeConsistency(trans,TABLE));
69         init(trans);
70     }
71
72     public CredDAO(AuthzTrans trans, HistoryDAO hDao, CacheInfoDAO ciDao) throws APIException, IOException {
73         super(trans, CredDAO.class.getSimpleName(),hDao, Data.class,TABLE, readConsistency(trans,TABLE), writeConsistency(trans,TABLE));
74         historyDAO = hDao;
75         infoDAO = ciDao;
76         init(trans);
77     }
78
79     public static final int KEYLIMIT = 3;
80     public static class Data extends CacheableData implements Bytification {
81         
82         public String                   id;
83         public Integer                  type;
84         public Date                     expires;
85         public Integer                  other;
86         public String                   ns;
87         public String                                   tag;
88         public String                                   notes;
89         public ByteBuffer               cred;  //   this is a blob in cassandra
90
91
92         @Override
93         public int[] invalidate(Cached<?,?> cache) {
94             return new int[] {
95                 seg(cache,id) // cache is for all entities
96             };
97         }
98         
99         @Override
100         public ByteBuffer bytify() throws IOException {
101             ByteArrayOutputStream baos = new ByteArrayOutputStream();
102             CredLoader.deflt.marshal(this,new DataOutputStream(baos));
103             return ByteBuffer.wrap(baos.toByteArray());
104         }
105         
106         @Override
107         public void reconstitute(ByteBuffer bb) throws IOException {
108             CredLoader.deflt.unmarshal(this, toDIS(bb));
109         }
110
111         public String toString() {
112             return id + ' ' + type + ' ' + Chrono.dateTime(expires);
113         }
114     }
115
116     public static class CredLoader extends Loader<Data> implements Streamer<Data>{
117         public static final int MAGIC=153323443;
118         public static final int VERSION=2;
119         public static final int BUFF_SIZE=48; // Note: 
120
121         public static final CredLoader deflt = new CredLoader(KEYLIMIT);
122         public CredLoader(int keylimit) {
123             super(keylimit);
124         }
125
126         @Override
127         public Data load(Data data, Row row) {
128             data.id = row.getString(0);
129             data.type = row.getInt(1);    // NOTE: in datastax driver,  If the int value is NULL, 0 is returned!
130             data.expires = row.getTimestamp(2);
131             data.other = row.getInt(3);
132             data.ns = row.getString(4);     
133             data.tag = row.getString(5);
134             data.notes = row.getString(6);
135             data.cred = row.getBytesUnsafe(7);            
136             return data;
137         }
138
139         @Override
140         protected void key(Data data, int _idx, Object[] obj) {
141                 int idx = _idx;
142
143             obj[idx] = data.id;
144             obj[++idx] = data.type;
145             obj[++idx] = data.expires;
146         }
147
148         @Override
149         protected void body(Data data, int idx, Object[] obj) {
150             int i;
151             obj[i=idx] = data.other;
152             obj[++i] = data.ns;
153             obj[++i] = data.tag;
154             obj[++i] = data.notes;
155             obj[++i] = data.cred;
156         }
157
158         @Override
159         public void marshal(Data data, DataOutputStream os) throws IOException {
160             writeHeader(os,MAGIC,VERSION);
161             writeString(os, data.id);
162             os.writeInt(data.type);    
163             os.writeLong(data.expires==null?-1:data.expires.getTime());
164             os.writeInt(data.other==null?0:data.other);
165             writeString(os, data.ns);
166             writeString(os, data.tag);
167             writeString(os, data.notes);
168             if (data.cred==null) {
169                 os.writeInt(-1);
170             } else {
171                 int l = data.cred.limit()-data.cred.position();
172                 os.writeInt(l);
173                 os.write(data.cred.array(),data.cred.position(),l);
174             }
175         }
176
177         @Override
178         public void unmarshal(Data data, DataInputStream is) throws IOException {
179             /*int version = */readHeader(is,MAGIC,VERSION);
180             // If Version Changes between Production runs, you'll need to do a switch Statement, and adequately read in fields
181             byte[] buff = new byte[BUFF_SIZE];
182             data.id = readString(is,buff);
183             data.type = is.readInt();
184             
185             long l = is.readLong();
186             data.expires = l<0?null:new Date(l);
187             data.other = is.readInt();
188             data.ns = readString(is,buff);
189             data.tag = readString(is,buff);
190             data.notes = readString(is,buff);
191             
192             int i = is.readInt();
193             data.cred=null;
194             if (i>=0) {
195                 byte[] bytes = new byte[i]; // a bit dangerous, but lessened because of all the previous sized data reads
196                 int read = is.read(bytes);
197                 if (read>0) {
198                     data.cred = ByteBuffer.wrap(bytes);
199                 }
200             }
201         }
202     }
203
204     private void init(AuthzTrans trans) throws APIException, IOException {
205         // Set up sub-DAOs
206         if (historyDAO==null) {
207             historyDAO = new HistoryDAO(trans,this);
208         }
209         if (infoDAO==null) {
210             infoDAO = new CacheInfoDAO(trans,this);
211         }
212         
213
214         String[] helpers = setCRUD(trans, TABLE, Data.class, CredLoader.deflt);
215         
216         psNS = new PSInfo(trans, SELECT_SP + helpers[FIELD_COMMAS] + " FROM " + TABLE +
217                 " WHERE ns = ?", CredLoader.deflt,readConsistency);
218         
219         psID = new PSInfo(trans, SELECT_SP + helpers[FIELD_COMMAS] + " FROM " + TABLE +
220                 " WHERE id = ?", CredLoader.deflt,readConsistency);
221     }
222     
223         /* (non-Javadoc)
224          * @see org.onap.aaf.auth.dao.CassDAOImpl#create(org.onap.aaf.misc.env.TransStore, java.lang.Object)
225          */
226         @Override
227         public Result<Data> create(AuthzTrans trans, Data data) {
228                 if(data.tag == null) {
229                         if(data.type==0) {
230                                 data.tag="PlaceHolder";
231                         } else {
232                                 long l = srand.nextLong();
233                                 data.tag = Long.toHexString(l);
234                         }
235                 }
236                 return super.create(trans, data);
237         }
238
239         public Result<List<Data>> readNS(AuthzTrans trans, String ns) {
240         return psNS.read(trans, R_TEXT, new Object[]{ns});
241     }
242     
243     public Result<List<Data>> readID(AuthzTrans trans, String id) {
244         return psID.read(trans, R_TEXT, new Object[]{id});
245     }
246     
247     /**
248      * Log Modification statements to History
249      *
250      * @param modified        which CRUD action was done
251      * @param data            entity data that needs a log entry
252      * @param overrideMessage if this is specified, we use it rather than crafting a history message based on data
253      */
254     @Override
255     protected void wasModified(AuthzTrans trans, CRUD modified, Data data, String ... override) {
256         boolean memo = override.length>0 && override[0]!=null;
257         boolean subject = override.length>1 && override[1]!=null;
258
259         HistoryDAO.Data hd = HistoryDAO.newInitedData();
260         hd.user = trans.user();
261         hd.action = modified.name();
262         hd.target = TABLE;
263         hd.subject = subject?override[1]: data.id;
264         hd.memo = memo
265                 ? String.format("%s by %s", override[0], hd.user)
266                 : (modified.name() + "d credential for " + data.id);
267         // Detail?
268            if (modified==CRUD.delete) {
269                     try {
270                         hd.reconstruct = data.bytify();
271                     } catch (IOException e) {
272                         trans.error().log(e,"Could not serialize CredDAO.Data");
273                     }
274                 }
275
276         if (historyDAO.create(trans, hd).status!=Status.OK) {
277             trans.error().log("Cannot log to History");
278         }
279         if (infoDAO.touch(trans, TABLE,data.invalidate(cache)).status!=Status.OK) {
280             trans.error().log("Cannot touch Cred");
281         }
282     }
283 }