2 * Copyright (c) 2000-2006,2011-2012,2014 Apple Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
27 // classes for the DL related data structures
30 #ifndef _H_CDSA_UTILITIES_CSSMDB
31 #define _H_CDSA_UTILITIES_CSSMDB
33 #include <security_cdsa_utilities/cssmdata.h>
34 #include <security_cdsa_utilities/cssmpods.h>
35 #include <security_cdsa_utilities/cssmalloc.h>
36 #include <security_cdsa_utilities/cssmwalkers.h>
37 #include <security_cdsa_utilities/cssmdbname.h>
44 // Template class to build and maintain external arrays.
45 // Feel free to add and vector<> member functions and behaviours as needed.
47 // This class differs from vector mainly because it does not construct or
48 // destruct any of the elements it contains. Rather it zero fills the
49 // storage and returns references to elements.
50 // Also it does not implement insert(), erase() or assign(). It does implement
51 // which is equivalent to calling *insert(end()) on a vector.
56 typedef _Tp value_type
;
57 typedef value_type
* pointer
;
58 typedef const value_type
* const_pointer
;
59 typedef value_type
* iterator
;
60 typedef const value_type
* const_iterator
;
61 typedef value_type
& reference
;
62 typedef const value_type
& const_reference
;
63 typedef uint32 size_type
;
64 typedef ptrdiff_t difference_type
;
66 typedef reverse_iterator
<const_iterator
> const_reverse_iterator
;
67 typedef reverse_iterator
<iterator
> reverse_iterator
;
70 void insert_aux(iterator __position
, const _Tp
& __x
);
71 void insert_aux(iterator __position
);
74 iterator
begin() { return mArray
; }
75 const_iterator
begin() const { return mArray
; }
76 iterator
end() { return &mArray
[mSize
]; }
77 const_iterator
end() const { return &mArray
[mSize
]; }
79 reverse_iterator
rbegin()
80 { return reverse_iterator(end()); }
81 const_reverse_iterator
rbegin() const
82 { return const_reverse_iterator(end()); }
83 reverse_iterator
rend()
84 { return reverse_iterator(begin()); }
85 const_reverse_iterator
rend() const
86 { return const_reverse_iterator(begin()); }
88 // Must be defined in base class.
89 //size_type size() const
91 size_type
max_size() const
92 { return size_type(-1) / sizeof(_Tp
); }
93 size_type
capacity() const
96 { return begin() == end(); }
98 ArrayBuilder(pointer
&array
, size_type
&size
, size_type capacity
= 0, Allocator
&allocator
= Allocator::standard()) :
99 mArray(array
), mSize(size
), mCapacity(capacity
), mAllocator(allocator
)
102 mArray
= reinterpret_cast<pointer
>(mAllocator
.malloc(sizeof(value_type
) * mCapacity
));
104 mArray
= reinterpret_cast<pointer
>(mAllocator
.malloc(sizeof(value_type
) * mCapacity
));
105 //mArray = mAllocator.alloc(mCapacity);
107 memset(mArray
, 0, sizeof(value_type
) * mCapacity
);
110 ~ArrayBuilder() { mAllocator
.free(mArray
); }
112 reference
front() { return *begin(); }
113 const_reference
front() const { return *begin(); }
114 reference
back() { return *(end() - 1); }
115 const_reference
back() const { return *(end() - 1); }
117 void reserve(size_type newCapacity
)
119 if (newCapacity
> mCapacity
)
122 mArray
= reinterpret_cast<pointer
>(mAllocator
.realloc(mArray
, sizeof(value_type
) * newCapacity
));
124 mArray
= reinterpret_cast<pointer
>(mAllocator
.realloc(mArray
, sizeof(value_type
) * newCapacity
));
125 //mArray = mAllocator.realloc<value_type>(mArray, newCapacity));
127 memset(&mArray
[mCapacity
], 0, sizeof(value_type
) * (newCapacity
- mCapacity
));
128 mCapacity
= newCapacity
;
132 // XXX Replace by push_back and insert.
135 if (mSize
>= mCapacity
)
136 reserve(max(mSize
+ 1, mCapacity
? 2 * mCapacity
: 1));
138 return mArray
[mSize
++];
141 const_pointer
get() const { return mArray
; }
142 pointer
release() { const_pointer array
= mArray
; mArray
= NULL
; return array
; }
143 void clear() { if (mSize
) { memset(mArray
, 0, sizeof(value_type
) * mSize
); } mSize
= 0; }
145 // Must be defined in base class.
146 //reference at(size_type ix) { return mArray[ix]; }
147 //const_reference at(size_type ix) const { return mArray[ix]; }
148 //reference operator[] (size_type ix) { assert(ix < size()); return at(ix); }
149 //const_reference operator[] (size_type ix) const { assert(ix < size()); return at(ix); }
151 Allocator
&allocator() const { return mAllocator
; }
158 Allocator
&mAllocator
;
163 // A CSSM_DL_DB_LIST wrapper.
164 // Note that there is a DLDBList class elsewhere that is quite
165 // unrelated to this structure.
167 class CssmDlDbHandle
: public PodWrapper
<CssmDlDbHandle
, CSSM_DL_DB_HANDLE
> {
169 CssmDlDbHandle() { clearPod(); }
170 CssmDlDbHandle(CSSM_DL_HANDLE dl
, CSSM_DB_HANDLE db
) { DLHandle
= dl
; DBHandle
= db
; }
172 CSSM_DL_HANDLE
dl() const { return DLHandle
; }
173 CSSM_DB_HANDLE
db() const { return DBHandle
; }
175 operator bool() const { return DLHandle
&& DBHandle
; }
178 inline bool operator < (const CSSM_DL_DB_HANDLE
&h1
, const CSSM_DL_DB_HANDLE
&h2
)
180 return h1
.DLHandle
< h2
.DLHandle
181 || (h1
.DLHandle
== h2
.DLHandle
&& h1
.DBHandle
< h2
.DBHandle
);
184 inline bool operator == (const CSSM_DL_DB_HANDLE
&h1
, const CSSM_DL_DB_HANDLE
&h2
)
186 return h1
.DLHandle
== h2
.DLHandle
&& h1
.DBHandle
== h2
.DBHandle
;
189 inline bool operator != (const CSSM_DL_DB_HANDLE
&h1
, const CSSM_DL_DB_HANDLE
&h2
)
191 return h1
.DLHandle
!= h2
.DLHandle
|| h1
.DBHandle
!= h2
.DBHandle
;
195 class CssmDlDbList
: public PodWrapper
<CssmDlDbList
, CSSM_DL_DB_LIST
> {
197 uint32
count() const { return NumHandles
; }
198 uint32
&count() { return NumHandles
; }
199 CssmDlDbHandle
*handles() const { return CssmDlDbHandle::overlay(DLDBHandle
); }
200 CssmDlDbHandle
* &handles() { return CssmDlDbHandle::overlayVar(DLDBHandle
); }
202 CssmDlDbHandle
&operator [] (uint32 ix
) const
203 { assert(ix
< count()); return CssmDlDbHandle::overlay(DLDBHandle
[ix
]); }
205 void setDlDbList(uint32 n
, CSSM_DL_DB_HANDLE
*list
)
206 { count() = n
; handles() = CssmDlDbHandle::overlay(list
); }
216 CssmDLPolyData(const CSSM_DATA
&data
, CSSM_DB_ATTRIBUTE_FORMAT format
)
217 : mData(CssmData::overlay(data
))
223 // @@@ Don't use assert, but throw an exception.
224 // @@@ Do a size check on mData as well.
226 // @@@ This method is dangerous since the returned string is not guaranteed to be zero terminated.
227 operator const char *() const
229 assert(mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_STRING
230 || mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_TIME_DATE
);
231 return reinterpret_cast<const char *>(mData
.Data
);
233 operator bool() const
235 assert(mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_UINT32
|| mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_SINT32
);
236 return *reinterpret_cast<uint32
*>(mData
.Data
);
238 operator uint32() const
240 assert(mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_UINT32
);
241 return *reinterpret_cast<uint32
*>(mData
.Data
);
243 operator const uint32
*() const
245 assert(mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_MULTI_UINT32
);
246 return reinterpret_cast<const uint32
*>(mData
.Data
);
248 operator sint32() const
250 assert(mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_SINT32
);
251 return *reinterpret_cast<sint32
*>(mData
.Data
);
253 operator double() const
255 assert(mFormat
== CSSM_DB_ATTRIBUTE_FORMAT_REAL
);
256 return *reinterpret_cast<double *>(mData
.Data
);
258 operator CSSM_DATE () const;
259 operator Guid () const;
260 operator const CssmData
&() const
266 const CssmData
&mData
;
268 CSSM_DB_ATTRIBUTE_FORMAT mFormat
;
274 // CssmDbAttributeInfo pod wrapper for CSSM_DB_ATTRIBUTE_INFO
276 class CssmDbAttributeInfo
: public PodWrapper
<CssmDbAttributeInfo
, CSSM_DB_ATTRIBUTE_INFO
>
279 CssmDbAttributeInfo(const CSSM_DB_ATTRIBUTE_INFO
&attr
)
282 CssmDbAttributeInfo(const char *name
,
283 CSSM_DB_ATTRIBUTE_FORMAT vFormat
= CSSM_DB_ATTRIBUTE_FORMAT_COMPLEX
);
284 CssmDbAttributeInfo(const CSSM_OID
&oid
,
285 CSSM_DB_ATTRIBUTE_FORMAT vFormat
= CSSM_DB_ATTRIBUTE_FORMAT_COMPLEX
);
286 CssmDbAttributeInfo(uint32 id
,
287 CSSM_DB_ATTRIBUTE_FORMAT vFormat
= CSSM_DB_ATTRIBUTE_FORMAT_COMPLEX
);
289 CSSM_DB_ATTRIBUTE_NAME_FORMAT
nameFormat() const { return AttributeNameFormat
; }
290 void nameFormat(CSSM_DB_ATTRIBUTE_NAME_FORMAT nameFormat
) { AttributeNameFormat
= nameFormat
; }
292 CSSM_DB_ATTRIBUTE_FORMAT
format() const { return AttributeFormat
; }
293 void format(CSSM_DB_ATTRIBUTE_FORMAT format
) { AttributeFormat
= format
; }
295 const char *stringName() const
297 assert(nameFormat() == CSSM_DB_ATTRIBUTE_NAME_AS_STRING
);
298 return Label
.AttributeName
;
300 const CssmOid
&oidName() const
302 assert(nameFormat() == CSSM_DB_ATTRIBUTE_NAME_AS_OID
);
303 return CssmOid::overlay(Label
.AttributeOID
);
305 uint32
intName() const
307 assert(nameFormat() == CSSM_DB_ATTRIBUTE_NAME_AS_INTEGER
);
308 return Label
.AttributeID
;
311 operator const char *() const { return stringName(); }
312 operator const CssmOid
&() const { return oidName(); }
313 operator uint32() const { return intName(); }
315 bool operator <(const CssmDbAttributeInfo
& other
) const;
316 bool operator ==(const CssmDbAttributeInfo
& other
) const;
317 bool operator !=(const CssmDbAttributeInfo
& other
) const
318 { return !(*this == other
); }
322 // CssmDbRecordAttributeInfo pod wrapper for CSSM_DB_RECORD_ATTRIBUTE_INFO
324 class CssmDbRecordAttributeInfo
: public PodWrapper
<CssmDbRecordAttributeInfo
, CSSM_DB_RECORD_ATTRIBUTE_INFO
>
327 CssmDbRecordAttributeInfo()
328 { DataRecordType
= CSSM_DL_DB_RECORD_ANY
; }
330 CssmDbRecordAttributeInfo(CSSM_DB_RECORDTYPE recordType
, uint32 numberOfAttributes
,
331 CSSM_DB_ATTRIBUTE_INFO_PTR attributeInfo
)
333 DataRecordType
= recordType
;
334 NumberOfAttributes
= numberOfAttributes
;
335 AttributeInfo
= attributeInfo
;
338 CSSM_DB_RECORDTYPE
recordType() const { return DataRecordType
; }
339 void recordType(CSSM_DB_RECORDTYPE recordType
) { DataRecordType
= recordType
; }
341 uint32
size() const { return NumberOfAttributes
; }
344 CssmDbAttributeInfo
*&attributes()
345 { return CssmDbAttributeInfo::overlayVar(AttributeInfo
); }
346 CssmDbAttributeInfo
*attributes() const
347 { return CssmDbAttributeInfo::overlay(AttributeInfo
); }
348 CssmDbAttributeInfo
&at(uint32 ix
) const
349 { assert(ix
< size()); return attributes()[ix
]; }
351 CssmDbAttributeInfo
&operator [] (uint32 ix
) const { return at(ix
); }
355 // CssmAutoDbRecordAttributeInfo pod wrapper for CSSM_DB_RECORD_ATTRIBUTE_INFO
357 class CssmAutoDbRecordAttributeInfo
: public CssmDbRecordAttributeInfo
, public ArrayBuilder
<CssmDbAttributeInfo
>
360 CssmAutoDbRecordAttributeInfo(uint32 capacity
= 0, Allocator
&allocator
= Allocator::standard()) :
361 CssmDbRecordAttributeInfo(),
362 ArrayBuilder
<CssmDbAttributeInfo
>(CssmDbAttributeInfo::overlayVar(AttributeInfo
),
363 NumberOfAttributes
, capacity
, allocator
) {}
368 // CssmDbAttributeData pod wrapper for CSSM_DB_ATTRIBUTE_DATA
370 class CssmDbAttributeData
: public PodWrapper
<CssmDbAttributeData
, CSSM_DB_ATTRIBUTE_DATA
>
373 CssmDbAttributeData() { NumberOfValues
= 0; Value
= NULL
; }
374 CssmDbAttributeData(const CSSM_DB_ATTRIBUTE_DATA
&attr
)
376 CssmDbAttributeData(const CSSM_DB_ATTRIBUTE_INFO
&info
)
377 { Info
= info
; NumberOfValues
= 0; Value
= NULL
; }
379 CssmDbAttributeInfo
&info() { return CssmDbAttributeInfo::overlay(Info
); }
380 const CssmDbAttributeInfo
&info() const { return CssmDbAttributeInfo::overlay(Info
); }
381 void info (const CSSM_DB_ATTRIBUTE_INFO
&inInfo
) { Info
= inInfo
; }
383 CSSM_DB_ATTRIBUTE_FORMAT
format() const { return info().format(); }
384 void format(CSSM_DB_ATTRIBUTE_FORMAT f
) { info().format(f
); }
386 uint32
size() const { return NumberOfValues
; }
387 CssmData
*&values() { return CssmData::overlayVar(Value
); }
388 CssmData
*values() const { return CssmData::overlay(Value
); }
390 CssmData
&at(unsigned int ix
) const
392 if (ix
>= size()) CssmError::throwMe(CSSMERR_DL_MISSING_VALUE
);
396 CssmData
&operator [] (unsigned int ix
) const { return at(ix
); }
399 T
at(unsigned int ix
) const { return CssmDLPolyData(Value
[ix
], format()); }
401 // this is intentionally unspecified since it could lead to bugs; the
402 // data is not guaranteed to be NULL-terminated
403 // operator const char *() const;
405 operator string() const;
406 operator const Guid
&() const;
407 operator bool() const;
408 operator uint32() const;
409 operator const uint32
*() const;
410 operator sint32() const;
411 operator double() const;
412 operator const CssmData
&() const;
414 // set values without allocation (caller owns the data contents)
415 void set(CssmData
&data
) { set(1, &data
); }
416 void set(uint32 count
, CssmData
*datas
) { NumberOfValues
= count
; Value
= datas
; }
418 // Set the value of this Attr (assuming it was not set before).
419 void set(const CSSM_DB_ATTRIBUTE_INFO
&inInfo
, const CssmPolyData
&inValue
,
420 Allocator
&inAllocator
);
422 // copy (just) the return-value part from another AttributeData to this one
423 void copyValues(const CssmDbAttributeData
&source
, Allocator
&alloc
);
425 // Set the value of this Attr (which must be unset so far)
426 void set(const CSSM_DB_ATTRIBUTE_DATA
&source
, Allocator
&alloc
)
429 copyValues(source
, alloc
);
432 // Add a value to this attribute.
433 void add(const CssmPolyData
&inValue
, Allocator
&inAllocator
);
435 void add(const char *value
, Allocator
&alloc
)
436 { format(CSSM_DB_ATTRIBUTE_FORMAT_STRING
); add(CssmPolyData(value
), alloc
); }
438 void add(const std::string
&value
, Allocator
&alloc
)
439 { format(CSSM_DB_ATTRIBUTE_FORMAT_STRING
); add(CssmPolyData(value
), alloc
); }
441 void add(uint32 value
, Allocator
&alloc
)
442 { format(CSSM_DB_ATTRIBUTE_FORMAT_UINT32
); add(CssmPolyData(value
), alloc
); }
444 void add(sint32 value
, Allocator
&alloc
)
445 { format(CSSM_DB_ATTRIBUTE_FORMAT_SINT32
); add(CssmPolyData(value
), alloc
); }
447 void add(const CssmData
&value
, Allocator
&alloc
)
448 { format(CSSM_DB_ATTRIBUTE_FORMAT_BLOB
); add(CssmPolyData(value
), alloc
); }
450 void add(const CssmDbAttributeData
&src
, Allocator
&inAllocator
);
452 // delete specific values if they are present in this attribute data
453 bool deleteValue(const CssmData
&src
, Allocator
&inAllocator
);
454 void deleteValues(const CssmDbAttributeData
&src
, Allocator
&inAllocator
);
456 void deleteValues(Allocator
&inAllocator
);
458 bool operator <(const CssmDbAttributeData
& other
) const;
463 // CssmDbRecordAttributeData pod wrapper for CSSM_DB_RECORD_ATTRIBUTE_DATA
465 class CssmDbRecordAttributeData
: public PodWrapper
<CssmDbRecordAttributeData
, CSSM_DB_RECORD_ATTRIBUTE_DATA
>
468 CssmDbRecordAttributeData()
469 { clearPod(); DataRecordType
= CSSM_DL_DB_RECORD_ANY
; }
471 CSSM_DB_RECORDTYPE
recordType() const { return DataRecordType
; }
472 void recordType(CSSM_DB_RECORDTYPE recordType
) { DataRecordType
= recordType
; }
474 uint32
semanticInformation() const { return SemanticInformation
; }
475 void semanticInformation(uint32 semanticInformation
) { SemanticInformation
= semanticInformation
; }
477 uint32
size() const { return NumberOfAttributes
; }
478 CssmDbAttributeData
*&attributes()
479 { return CssmDbAttributeData::overlayVar(AttributeData
); }
480 CssmDbAttributeData
*attributes() const
481 { return CssmDbAttributeData::overlay(AttributeData
); }
483 // Attributes by position
484 CssmDbAttributeData
&at(unsigned int ix
) const
485 { assert(ix
< size()); return attributes()[ix
]; }
487 CssmDbAttributeData
&operator [] (unsigned int ix
) const { return at(ix
); }
489 void deleteValues(Allocator
&allocator
)
490 { for (uint32 ix
= 0; ix
< size(); ++ix
) at(ix
).deleteValues(allocator
); }
492 CssmDbAttributeData
*find(const CSSM_DB_ATTRIBUTE_INFO
&inInfo
);
494 bool operator <(const CssmDbRecordAttributeData
& other
) const;
499 // CssmAutoDbRecordAttributeData
501 class CssmAutoDbRecordAttributeData
: public CssmDbRecordAttributeData
, public ArrayBuilder
<CssmDbAttributeData
>
504 CssmAutoDbRecordAttributeData(uint32 capacity
= 0,
505 Allocator
&valueAllocator
= Allocator::standard(),
506 Allocator
&dataAllocator
= Allocator::standard()) :
507 CssmDbRecordAttributeData(),
508 ArrayBuilder
<CssmDbAttributeData
>(CssmDbAttributeData::overlayVar(AttributeData
),
509 NumberOfAttributes
, capacity
, dataAllocator
),
510 mValueAllocator(valueAllocator
) {}
511 ~CssmAutoDbRecordAttributeData();
514 void deleteValues() { CssmDbRecordAttributeData::deleteValues(mValueAllocator
); }
517 CssmDbAttributeData
&add() { return ArrayBuilder
<CssmDbAttributeData
>::add(); } // XXX using doesn't work here.
518 CssmDbAttributeData
&add(const CSSM_DB_ATTRIBUTE_INFO
&info
);
519 CssmDbAttributeData
&add(const CSSM_DB_ATTRIBUTE_INFO
&info
, const CssmPolyData
&value
);
521 // Take the attributes from the object, and overlay them onto this one
522 void updateWith(const CssmAutoDbRecordAttributeData
* newValues
);
524 // So clients can pass this as the allocator argument to add()
525 operator Allocator
&() const { return mValueAllocator
; }
527 CssmDbAttributeData
* findAttribute (const CSSM_DB_ATTRIBUTE_INFO
&info
);
529 Allocator
&mValueAllocator
;
531 CssmDbAttributeData
& getAttributeReference (const CSSM_DB_ATTRIBUTE_INFO
&info
);
536 // CssmSelectionPredicate a PodWrapper for CSSM_SELECTION_PREDICATE
538 class CssmSelectionPredicate
: public PodWrapper
<CssmSelectionPredicate
, CSSM_SELECTION_PREDICATE
> {
540 CssmSelectionPredicate() { clearPod(); }
542 CSSM_DB_OPERATOR
dbOperator() const { return DbOperator
; }
543 void dbOperator(CSSM_DB_OPERATOR dbOperator
) { DbOperator
= dbOperator
; }
545 CssmSelectionPredicate(CSSM_DB_OPERATOR inDbOperator
)
546 { dbOperator(inDbOperator
); Attribute
.NumberOfValues
= 0; Attribute
.Value
= NULL
; }
548 CssmDbAttributeData
&attribute() { return CssmDbAttributeData::overlay(Attribute
); }
549 const CssmDbAttributeData
&attribute() const { return CssmDbAttributeData::overlay(Attribute
); }
551 // Set the value of this CssmSelectionPredicate (assuming it was not set before).
552 void set(const CSSM_DB_ATTRIBUTE_INFO
&inInfo
,
553 const CssmPolyData
&inValue
, Allocator
&inAllocator
)
554 { attribute().set(inInfo
, inValue
, inAllocator
); }
556 // Set the value of this CssmSelectionPredicate using another CssmSelectionPredicate's value.
557 void set(const CSSM_SELECTION_PREDICATE
&other
, Allocator
&inAllocator
)
558 { DbOperator
= other
.DbOperator
; attribute().set(other
.Attribute
, inAllocator
); }
560 // Add a value to the list of values for this CssmSelectionPredicate.
561 void add(const CssmPolyData
&inValue
, Allocator
&inAllocator
)
562 { attribute().add(inValue
, inAllocator
); }
564 void deleteValues(Allocator
&inAllocator
) { attribute().deleteValues(inAllocator
); }
567 class CssmQuery
: public PodWrapper
<CssmQuery
, CSSM_QUERY
> {
569 CssmQuery(CSSM_DB_RECORDTYPE type
= CSSM_DL_DB_RECORD_ANY
)
570 { clearPod(); RecordType
= type
; }
572 // copy or assign flat from CSSM_QUERY
573 CssmQuery(const CSSM_QUERY
&q
) { assignPod(q
); }
574 CssmQuery
&operator = (const CSSM_QUERY
&q
) { assignPod(q
); return *this; }
576 // flat copy and change record type
577 CssmQuery(const CssmQuery
&q
, CSSM_DB_RECORDTYPE type
)
578 { *this = q
; RecordType
= type
; }
580 CSSM_DB_RECORDTYPE
recordType() const { return RecordType
; }
581 void recordType(CSSM_DB_RECORDTYPE recordType
) { RecordType
= recordType
; }
583 CSSM_DB_CONJUNCTIVE
conjunctive() const { return Conjunctive
; }
584 void conjunctive(CSSM_DB_CONJUNCTIVE conjunctive
) { Conjunctive
= conjunctive
; }
586 CSSM_QUERY_LIMITS
queryLimits() const { return QueryLimits
; }
587 void queryLimits(CSSM_QUERY_LIMITS queryLimits
) { QueryLimits
= queryLimits
; }
589 CSSM_QUERY_FLAGS
queryFlags() const { return QueryFlags
; }
590 void queryFlags(CSSM_QUERY_FLAGS queryFlags
) { QueryFlags
= queryFlags
; }
592 uint32
size() const { return NumSelectionPredicates
; }
594 CssmSelectionPredicate
*&predicates()
595 { return CssmSelectionPredicate::overlayVar(SelectionPredicate
); }
596 CssmSelectionPredicate
*predicates() const
597 { return CssmSelectionPredicate::overlay(SelectionPredicate
); }
599 CssmSelectionPredicate
&at(uint32 ix
) const
600 { assert(ix
< size()); return predicates()[ix
]; }
602 CssmSelectionPredicate
&operator[] (uint32 ix
) const { return at(ix
); }
604 void set(uint32 count
, CSSM_SELECTION_PREDICATE
*preds
)
605 { NumSelectionPredicates
= count
; SelectionPredicate
= preds
; }
607 void deleteValues(Allocator
&allocator
)
608 { for (uint32 ix
= 0; ix
< size(); ++ix
) at(ix
).deleteValues(allocator
); }
612 class CssmAutoQuery
: public CssmQuery
, public ArrayBuilder
<CssmSelectionPredicate
> {
614 CssmAutoQuery(const CSSM_QUERY
&query
, Allocator
&allocator
= Allocator::standard());
615 CssmAutoQuery(uint32 capacity
= 0, Allocator
&allocator
= Allocator::standard()) :
616 ArrayBuilder
<CssmSelectionPredicate
>(CssmSelectionPredicate::overlayVar(SelectionPredicate
),
617 NumSelectionPredicates
,
618 capacity
, allocator
) {}
621 void deleteValues() { CssmQuery::deleteValues(allocator()); }
623 CssmSelectionPredicate
&add() { return ArrayBuilder
<CssmSelectionPredicate
>::add(); }
624 CssmSelectionPredicate
&add(CSSM_DB_OPERATOR dbOperator
, const CSSM_DB_ATTRIBUTE_INFO
&info
, const CssmPolyData
&value
);
626 // So clients can pass this as the allocator argument to add()
627 operator Allocator
&() const { return allocator(); }
637 class Impl
: public RefCount
641 Impl(const CSSM_SUBSERVICE_UID
&ssuid
,const char *DbName
,const CSSM_NET_ADDRESS
*DbLocation
) :
642 mCssmSubserviceUid(ssuid
),mDbName(DbName
,DbLocation
) {}
644 ~Impl() {} // Must be public since RefPointer uses it.
647 const CssmSubserviceUid
&ssuid() const { return mCssmSubserviceUid
; }
648 const char *dbName() const { return mDbName
.dbName(); }
649 const CssmNetAddress
*dbLocation() const { return mDbName
.dbLocation(); }
651 // comparison (simple lexicographic)
652 bool operator < (const Impl
&other
) const;
653 bool operator == (const Impl
&other
) const;
655 // Private member variables
656 CssmSubserviceUid mCssmSubserviceUid
;
663 DLDbIdentifier(const CSSM_SUBSERVICE_UID
&ssuid
, const char *DbName
, const CSSM_NET_ADDRESS
*DbLocation
)
664 : mImpl(new Impl(ssuid
, DbName
, DbLocation
)) {}
665 DLDbIdentifier(const char *name
, const Guid
&guid
, uint32 ssid
, uint32 sstype
,
666 const CSSM_NET_ADDRESS
*location
= NULL
)
667 : mImpl(new Impl(CssmSubserviceUid(guid
, NULL
, ssid
, sstype
), name
, location
)) { }
669 // Conversion Operators
670 bool operator !() const { return !mImpl
; }
671 operator bool() const { return mImpl
; }
674 bool operator <(const DLDbIdentifier
&other
) const
675 { return mImpl
&& other
.mImpl
? *mImpl
< *other
.mImpl
: mImpl
.get() < other
.mImpl
.get(); }
676 bool operator ==(const DLDbIdentifier
&other
) const
677 { return mImpl
&& other
.mImpl
? *mImpl
== *other
.mImpl
: mImpl
.get() == other
.mImpl
.get(); }
678 DLDbIdentifier
&operator =(const DLDbIdentifier
&other
)
679 { mImpl
= other
.mImpl
; return *this; }
682 const CssmSubserviceUid
&ssuid() const { return mImpl
->ssuid(); }
683 const char *dbName() const { return mImpl
->dbName(); }
684 const CssmNetAddress
*dbLocation() const { return mImpl
->dbLocation(); }
685 bool IsImplEmpty() const {return mImpl
== NULL
;}
687 RefPointer
<Impl
> mImpl
;
690 // Wrappers for index-related CSSM objects.
692 class CssmDbIndexInfo
: public PodWrapper
<CssmDbIndexInfo
, CSSM_DB_INDEX_INFO
>
695 CssmDbIndexInfo(const CSSM_DB_INDEX_INFO
&attr
)
696 { (CSSM_DB_INDEX_INFO
&)*this = attr
; }
698 CSSM_DB_INDEX_TYPE
indexType() const { return IndexType
; }
699 void indexType(CSSM_DB_INDEX_TYPE indexType
) { IndexType
= indexType
; }
701 CSSM_DB_INDEXED_DATA_LOCATION
dataLocation() const { return IndexedDataLocation
; }
702 void dataLocation(CSSM_DB_INDEXED_DATA_LOCATION dataLocation
)
704 IndexedDataLocation
= dataLocation
;
707 const CssmDbAttributeInfo
&attributeInfo() const
709 return CssmDbAttributeInfo::overlay(Info
);
714 namespace DataWalkers
{
718 // DLDbIdentifiers don't walk directly because they have Impl structure and use strings.
719 // Happily, they are easily transcribed into a walkable form.
721 struct DLDbFlatIdentifier
{
722 CssmSubserviceUid
*uid
; // module reference
723 char *name
; // string name
724 CssmNetAddress
*address
; // optional network address
726 DLDbFlatIdentifier(const DLDbIdentifier
&ident
) :
727 uid(const_cast<CssmSubserviceUid
*>(&ident
.ssuid())),
728 name(const_cast<char *>(ident
.dbName())),
729 address(const_cast<CssmNetAddress
*>(ident
.dbLocation()))
732 operator DLDbIdentifier () { return DLDbIdentifier(*uid
, name
, address
); }
735 template<class Action
>
736 DLDbFlatIdentifier
*walk(Action
&operate
, DLDbFlatIdentifier
* &ident
)
740 walk(operate
, ident
->uid
);
741 walk(operate
, ident
->name
);
743 walk(operate
, ident
->address
);
749 // Walkers for the byzantine data structures of the DL universe.
750 // Geez, what WERE they smoking when they invented this?
754 template<class Action
>
755 void enumerate(Action
&operate
, CssmDbAttributeInfo
&info
)
757 switch (info
.nameFormat()) {
758 case CSSM_DB_ATTRIBUTE_NAME_AS_STRING
:
759 walk(operate
, info
.Label
.AttributeName
);
761 case CSSM_DB_ATTRIBUTE_NAME_AS_OID
:
762 walk(operate
, info
.Label
.AttributeOID
);
769 template <class Action
>
770 void walk(Action
&operate
, CssmDbAttributeInfo
&info
)
773 enumerate(operate
, info
);
776 template <class Action
>
777 CssmDbAttributeInfo
*walk(Action
&operate
, CssmDbAttributeInfo
* &info
)
780 enumerate(operate
, *info
);
784 // DbRecordAttributeInfo
785 template <class Action
>
786 void walk(Action
&operate
, CssmDbRecordAttributeInfo
&info
)
789 enumerateArray(operate
, info
, &CssmDbRecordAttributeInfo::attributes
);
792 template <class Action
>
793 CssmDbRecordAttributeInfo
*walk(Action
&operate
, CssmDbRecordAttributeInfo
* &info
)
796 enumerateArray(operate
, *info
, &CssmDbRecordAttributeInfo::attributes
);
800 // DbAttributeData (Info + value vector)
801 template <class Action
>
802 void walk(Action
&operate
, CssmDbAttributeData
&data
)
805 walk(operate
, data
.info());
806 enumerateArray(operate
, data
, &CssmDbAttributeData::values
);
809 template <class Action
>
810 CssmDbAttributeData
*walk(Action
&operate
, CssmDbAttributeData
* &data
)
813 walk(operate
, data
->info());
814 enumerateArray(operate
, *data
, &CssmDbAttributeData::values
);
818 // DbRecordAttributeData (array of ...datas)
819 template <class Action
>
820 void walk(Action
&operate
, CssmDbRecordAttributeData
&data
)
823 enumerateArray(operate
, data
, &CssmDbRecordAttributeData::attributes
);
826 template <class Action
>
827 CssmDbRecordAttributeData
*walk(Action
&operate
, CssmDbRecordAttributeData
* &data
)
830 enumerateArray(operate
, *data
, &CssmDbRecordAttributeData::attributes
);
834 // SelectionPredicates
835 template <class Action
>
836 CssmSelectionPredicate
*walk(Action
&operate
, CssmSelectionPredicate
* &predicate
)
839 walk(operate
, predicate
->attribute());
843 template<class Action
>
844 void walk(Action
&operate
, CssmSelectionPredicate
&predicate
)
847 walk(operate
, predicate
.attribute());
851 template <class Action
>
852 void walk(Action
&operate
, CssmQuery
&query
)
855 enumerateArray(operate
, query
, &CssmQuery::predicates
);
858 template <class Action
>
859 CssmQuery
*walk(Action
&operate
, CssmQuery
* &query
)
862 enumerateArray(operate
, *query
, &CssmQuery::predicates
);
866 template <class Action
>
867 CSSM_QUERY
*walk(Action
&operate
, CSSM_QUERY
* &query
)
869 return walk(operate
, CssmQuery::overlayVar(query
));
873 } // end namespace DataWalkers
874 } // end namespace Security
877 #endif // _H_CDSA_UTILITIES_CSSMDB