transport IMA file info via PTS Component Evidence Policy URI
This commit is contained in:
@@ -32,7 +32,6 @@
|
||||
#define SECURITY_DIR "/sys/kernel/security/"
|
||||
#define IMA_BIOS_MEASUREMENTS SECURITY_DIR "tpm0/binary_bios_measurements"
|
||||
#define IMA_RUNTIME_MEASUREMENTS SECURITY_DIR "ima/binary_runtime_measurements"
|
||||
#define IMA_MEASUREMENT_BATCH_SIZE 200
|
||||
#define IMA_PCR 10
|
||||
#define IMA_TYPE_LEN 3
|
||||
#define IMA_FILENAME_LEN_MAX 255
|
||||
@@ -106,11 +105,6 @@ struct pts_ita_comp_ima_t {
|
||||
*/
|
||||
int bios_count;
|
||||
|
||||
/**
|
||||
* Count of IMA file measurements in current batch
|
||||
*/
|
||||
int ima_count;
|
||||
|
||||
/**
|
||||
* IMA BIOS measurements
|
||||
*/
|
||||
@@ -135,6 +129,32 @@ struct pts_ita_comp_ima_t {
|
||||
* IMA state machine
|
||||
*/
|
||||
ima_state_t state;
|
||||
|
||||
/**
|
||||
* Total number of component measurements
|
||||
*/
|
||||
int count;
|
||||
|
||||
/**
|
||||
* Number of successful component measurements
|
||||
*/
|
||||
int count_ok;
|
||||
|
||||
/**
|
||||
* Number of unknown component measurements
|
||||
*/
|
||||
int count_unknown;
|
||||
|
||||
/**
|
||||
* Number of differing component measurements
|
||||
*/
|
||||
int count_differ;
|
||||
|
||||
/**
|
||||
* Number of failed component measurements
|
||||
*/
|
||||
int count_failed;
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -455,19 +475,15 @@ METHOD(pts_component_t, get_depth, u_int32_t,
|
||||
}
|
||||
|
||||
METHOD(pts_component_t, measure, status_t,
|
||||
pts_ita_comp_ima_t *this, pts_t *pts, pts_comp_evidence_t **evidence,
|
||||
pts_file_meas_t **measurements)
|
||||
pts_ita_comp_ima_t *this, pts_t *pts, pts_comp_evidence_t **evidence)
|
||||
{
|
||||
bios_entry_t *bios_entry;
|
||||
ima_entry_t *ima_entry, *entry;
|
||||
status_t status;
|
||||
int count;
|
||||
enumerator_t *e;
|
||||
ima_entry_t *ima_entry;
|
||||
pts_pcr_t *pcrs;
|
||||
pts_file_meas_t *file_meas;
|
||||
pts_comp_evidence_t *evid = NULL;
|
||||
status_t status;
|
||||
|
||||
pcrs = pts->get_pcrs(pts);
|
||||
*measurements = NULL;
|
||||
|
||||
switch (this->state)
|
||||
{
|
||||
@@ -487,13 +503,9 @@ METHOD(pts_component_t, measure, status_t,
|
||||
DBG1(DBG_PTS, "could not retrieve bios measurement entry");
|
||||
return status;
|
||||
}
|
||||
*evidence = extend_pcr(this, pcrs, bios_entry->pcr,
|
||||
bios_entry->measurement);
|
||||
evid = extend_pcr(this, pcrs, bios_entry->pcr,
|
||||
bios_entry->measurement);
|
||||
free(bios_entry);
|
||||
if (!evidence)
|
||||
{
|
||||
return FAILED;
|
||||
}
|
||||
|
||||
/* break if still some BIOS measurements are left */
|
||||
if (this->bios_list->get_count(this->bios_list))
|
||||
@@ -513,28 +525,6 @@ METHOD(pts_component_t, measure, status_t,
|
||||
break;
|
||||
case IMA_STATE_BOOT_AGGREGATE:
|
||||
case IMA_STATE_RUNTIME:
|
||||
/* ready to send next batch of file measurements ? */
|
||||
if (this->ima_count++ == 0)
|
||||
{
|
||||
file_meas = pts_file_meas_create(0);
|
||||
count = 0;
|
||||
|
||||
e = this->ima_list->create_enumerator(this->ima_list);
|
||||
while (e->enumerate(e, &entry) &&
|
||||
count++ < IMA_MEASUREMENT_BATCH_SIZE)
|
||||
{
|
||||
file_meas->add(file_meas, entry->filename,
|
||||
entry->file_measurement);
|
||||
}
|
||||
e->destroy(e);
|
||||
*measurements = file_meas;
|
||||
}
|
||||
else if (this->ima_count == IMA_MEASUREMENT_BATCH_SIZE)
|
||||
{
|
||||
/* ready for file measurement batch in the next round */
|
||||
this->ima_count = 0;
|
||||
}
|
||||
|
||||
status = this->ima_list->remove_first(this->ima_list,
|
||||
(void**)&ima_entry);
|
||||
if (status != SUCCESS)
|
||||
@@ -542,29 +532,31 @@ METHOD(pts_component_t, measure, status_t,
|
||||
DBG1(DBG_PTS, "could not retrieve ima measurement entry");
|
||||
return status;
|
||||
}
|
||||
*evidence = extend_pcr(this, pcrs, IMA_PCR, ima_entry->measurement);
|
||||
|
||||
if (this->state == IMA_STATE_BOOT_AGGREGATE)
|
||||
{
|
||||
check_boot_aggregate(pcrs, ima_entry->measurement);
|
||||
}
|
||||
|
||||
evid = extend_pcr(this, pcrs, IMA_PCR, ima_entry->measurement);
|
||||
if (evid)
|
||||
{
|
||||
evid->set_validation(evid, PTS_COMP_EVID_VALIDATION_PASSED,
|
||||
ima_entry->filename);
|
||||
}
|
||||
free(ima_entry->file_measurement.ptr);
|
||||
free(ima_entry->filename);
|
||||
free(ima_entry);
|
||||
|
||||
if (!evidence)
|
||||
{
|
||||
return FAILED;
|
||||
}
|
||||
this->state = this->ima_list->get_count(this->ima_list) ?
|
||||
IMA_STATE_RUNTIME : IMA_STATE_END;
|
||||
break;
|
||||
case IMA_STATE_END:
|
||||
break;
|
||||
}
|
||||
|
||||
return (this->state == IMA_STATE_END) ? SUCCESS : NEED_MORE;
|
||||
|
||||
*evidence = evid;
|
||||
return evid ? ((this->state == IMA_STATE_END) ? SUCCESS : NEED_MORE) :
|
||||
FAILED;
|
||||
}
|
||||
|
||||
METHOD(pts_component_t, verify, status_t,
|
||||
@@ -579,6 +571,7 @@ METHOD(pts_component_t, verify, status_t,
|
||||
time_t measurement_time;
|
||||
chunk_t measurement, pcr_before, pcr_after;
|
||||
status_t status;
|
||||
char *uri;
|
||||
|
||||
pcrs = pts->get_pcrs(pts);
|
||||
measurement = evidence->get_measurement(evidence, &extended_pcr,
|
||||
@@ -611,15 +604,13 @@ METHOD(pts_component_t, verify, status_t,
|
||||
|
||||
if (this->bios_count)
|
||||
{
|
||||
DBG1(DBG_PTS, "checking %d %N '%N' functional component "
|
||||
"evidence measurements", this->bios_count,
|
||||
pen_names, vid, names, name);
|
||||
DBG1(DBG_PTS, "checking %d %N '%N' BIOS evidence measurements",
|
||||
this->bios_count, pen_names, vid, names, name);
|
||||
}
|
||||
else
|
||||
{
|
||||
DBG1(DBG_PTS, "registering %N '%N' functional component "
|
||||
"evidence measurements", pen_names, vid, names,
|
||||
name);
|
||||
DBG1(DBG_PTS, "registering %N '%N' BIOS evidence measurements",
|
||||
pen_names, vid, names, name);
|
||||
this->is_registering = TRUE;
|
||||
}
|
||||
this->state = IMA_STATE_BIOS;
|
||||
@@ -653,9 +644,42 @@ METHOD(pts_component_t, verify, status_t,
|
||||
this->state = IMA_STATE_BOOT_AGGREGATE;
|
||||
/* fall through to next state */
|
||||
case IMA_STATE_BOOT_AGGREGATE:
|
||||
check_boot_aggregate(pcrs, measurement);
|
||||
this->state = IMA_STATE_RUNTIME;
|
||||
break;
|
||||
case IMA_STATE_RUNTIME:
|
||||
this->count++;
|
||||
if (evidence->get_validation(evidence, &uri) !=
|
||||
PTS_COMP_EVID_VALIDATION_PASSED)
|
||||
{
|
||||
DBG1(DBG_PTS, "policy URI could no be retrieved");
|
||||
this->count_failed++;
|
||||
return FAILED;
|
||||
}
|
||||
status = this->pts_db->check_file_measurement(this->pts_db,
|
||||
pts->get_platform_info(pts),
|
||||
PTS_MEAS_ALGO_SHA1_IMA,
|
||||
measurement, uri);
|
||||
switch (status)
|
||||
{
|
||||
case SUCCESS:
|
||||
DBG3(DBG_PTS, "%#B for '%s' is ok", &measurement, uri);
|
||||
this->count_ok++;
|
||||
break;
|
||||
case NOT_FOUND:
|
||||
DBG2(DBG_PTS, "%#B for '%s' not found", &measurement, uri);
|
||||
this->count_unknown++;
|
||||
break;
|
||||
case VERIFY_ERROR:
|
||||
DBG1(DBG_PTS, "%#B for '%s' differs", &measurement, uri);
|
||||
this->count_differ++;
|
||||
break;
|
||||
case FAILED:
|
||||
default:
|
||||
DBG1(DBG_PTS, "%#B for '%s' failed", &measurement, uri);
|
||||
this->count_failed++;
|
||||
}
|
||||
|
||||
break;
|
||||
case IMA_STATE_END:
|
||||
break;
|
||||
@@ -666,7 +690,7 @@ METHOD(pts_component_t, verify, status_t,
|
||||
{
|
||||
if (!chunk_equals(pcr_before, pcrs->get(pcrs, extended_pcr)))
|
||||
{
|
||||
DBG1(DBG_PTS, "PCR %2u: pcr_before is not equal to pcr value",
|
||||
DBG1(DBG_PTS, "PCR %2u: pcr_before is not equal to register value",
|
||||
extended_pcr);
|
||||
}
|
||||
if (pcrs->set(pcrs, extended_pcr, pcr_after))
|
||||
@@ -700,17 +724,29 @@ METHOD(pts_component_t, finalize, bool,
|
||||
/* close registration */
|
||||
this->is_registering = FALSE;
|
||||
|
||||
DBG1(DBG_PTS, "registered %d %N '%N' functional component evidence "
|
||||
"measurements", this->seq_no, pen_names, vid, names, name);
|
||||
DBG1(DBG_PTS, "registered %d %N '%N' BIOS evidence measurements",
|
||||
this->seq_no, pen_names, vid, names, name);
|
||||
}
|
||||
else if (this->seq_no < this->bios_count)
|
||||
{
|
||||
DBG1(DBG_PTS, "%d of %d %N '%N' functional component evidence "
|
||||
"measurements missing", this->bios_count - this->seq_no,
|
||||
this->bios_count, pen_names, vid, names, name);
|
||||
DBG1(DBG_PTS, "%d of %d %N '%N' BIOS evidence measurements missing",
|
||||
this->bios_count - this->seq_no, this->bios_count,
|
||||
pen_names, vid, names, name);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* finalize IMA file measurements */
|
||||
if (this->count)
|
||||
{
|
||||
DBG1(DBG_PTS, "processed %d %N '%N' file evidence measurements: "
|
||||
"%d ok, %d unknown, %d differ, %d failed",
|
||||
this->count, pen_names, vid, names, name,
|
||||
this->count_ok, this->count_unknown, this->count_differ,
|
||||
this->count_failed);
|
||||
|
||||
return !this->count_differ && !this->count_failed;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -762,7 +798,6 @@ pts_component_t *pts_ita_comp_ima_create(u_int8_t qualifier, u_int32_t depth,
|
||||
.pts_db = pts_db,
|
||||
.bios_list = linked_list_create(),
|
||||
.ima_list = linked_list_create(),
|
||||
.ima_count = IMA_MEASUREMENT_BATCH_SIZE - 1,
|
||||
.pcr_info = lib->settings->get_bool(lib->settings,
|
||||
"libimcv.plugins.imc-attestation.pcr_info", TRUE),
|
||||
);
|
||||
|
||||
@@ -106,8 +106,7 @@ METHOD(pts_component_t, get_depth, u_int32_t,
|
||||
}
|
||||
|
||||
METHOD(pts_component_t, measure, status_t,
|
||||
pts_ita_comp_tboot_t *this, pts_t *pts, pts_comp_evidence_t **evidence,
|
||||
pts_file_meas_t **measurements)
|
||||
pts_ita_comp_tboot_t *this, pts_t *pts, pts_comp_evidence_t **evidence)
|
||||
|
||||
{
|
||||
size_t pcr_len;
|
||||
@@ -165,7 +164,7 @@ METHOD(pts_component_t, measure, status_t,
|
||||
if (pcr_before.len != pcr_len || pcr_after.len != pcr_len ||
|
||||
measurement.len != pcr_len)
|
||||
{
|
||||
DBG1(DBG_PTS, "TBOOT measurement or pcr data have the wrong size");
|
||||
DBG1(DBG_PTS, "TBOOT measurement or PCR data have the wrong size");
|
||||
free(measurement.ptr);
|
||||
free(pcr_before.ptr);
|
||||
free(pcr_after.ptr);
|
||||
@@ -263,7 +262,7 @@ METHOD(pts_component_t, verify, status_t,
|
||||
{
|
||||
if (!chunk_equals(pcr_before, pcrs->get(pcrs, extended_pcr)))
|
||||
{
|
||||
DBG1(DBG_PTS, "PCR %2u: pcr_before is not equal to pcr value",
|
||||
DBG1(DBG_PTS, "PCR %2u: pcr_before is not equal to register value",
|
||||
extended_pcr);
|
||||
}
|
||||
if (pcrs->set(pcrs, extended_pcr, pcr_after))
|
||||
|
||||
@@ -70,8 +70,7 @@ METHOD(pts_component_t, get_depth, u_int32_t,
|
||||
}
|
||||
|
||||
METHOD(pts_component_t, measure, status_t,
|
||||
pts_ita_comp_tgrub_t *this, pts_t *pts, pts_comp_evidence_t **evidence,
|
||||
pts_file_meas_t **measurements)
|
||||
pts_ita_comp_tgrub_t *this, pts_t *pts, pts_comp_evidence_t **evidence)
|
||||
{
|
||||
size_t pcr_len;
|
||||
pts_pcr_transform_t pcr_transform;
|
||||
|
||||
@@ -87,7 +87,7 @@ struct private_pts_comp_evidence_t {
|
||||
/**
|
||||
* Verification Policy URI
|
||||
*/
|
||||
chunk_t policy_uri;
|
||||
char *policy_uri;
|
||||
|
||||
};
|
||||
|
||||
@@ -157,7 +157,7 @@ METHOD(pts_comp_evidence_t, set_pcr_info, void,
|
||||
}
|
||||
|
||||
METHOD(pts_comp_evidence_t, get_validation, pts_comp_evid_validation_t,
|
||||
private_pts_comp_evidence_t *this, chunk_t *uri)
|
||||
private_pts_comp_evidence_t *this, char **uri)
|
||||
{
|
||||
if (uri)
|
||||
{
|
||||
@@ -168,10 +168,14 @@ METHOD(pts_comp_evidence_t, get_validation, pts_comp_evid_validation_t,
|
||||
|
||||
METHOD(pts_comp_evidence_t, set_validation, void,
|
||||
private_pts_comp_evidence_t *this, pts_comp_evid_validation_t validation,
|
||||
chunk_t uri)
|
||||
char *uri)
|
||||
{
|
||||
this->validation = validation;
|
||||
this->policy_uri = chunk_clone(uri);
|
||||
if (uri)
|
||||
{
|
||||
this->policy_uri = strdup(uri);
|
||||
DBG3(DBG_PTS, "'%s'", uri);
|
||||
}
|
||||
}
|
||||
|
||||
METHOD(pts_comp_evidence_t, destroy, void,
|
||||
@@ -181,7 +185,7 @@ METHOD(pts_comp_evidence_t, destroy, void,
|
||||
free(this->measurement.ptr);
|
||||
free(this->pcr_before.ptr);
|
||||
free(this->pcr_after.ptr);
|
||||
free(this->policy_uri.ptr);
|
||||
free(this->policy_uri);
|
||||
free(this);
|
||||
}
|
||||
|
||||
|
||||
@@ -120,7 +120,7 @@ struct pts_comp_evidence_t {
|
||||
* @return validation Validation Result
|
||||
*/
|
||||
pts_comp_evid_validation_t (*get_validation)(pts_comp_evidence_t *this,
|
||||
chunk_t *uri);
|
||||
char **uri);
|
||||
|
||||
/**
|
||||
* Sets Validation Result if available
|
||||
@@ -129,7 +129,7 @@ struct pts_comp_evidence_t {
|
||||
* @param uri Verification Policy URI
|
||||
*/
|
||||
void (*set_validation)(pts_comp_evidence_t *this,
|
||||
pts_comp_evid_validation_t validation, chunk_t uri);
|
||||
pts_comp_evid_validation_t validation, char* uri);
|
||||
|
||||
/**
|
||||
* Destroys a pts_comp_evidence_t object.
|
||||
|
||||
@@ -66,8 +66,7 @@ struct pts_component_t {
|
||||
* @return status return code
|
||||
*/
|
||||
status_t (*measure)(pts_component_t *this, pts_t *pts,
|
||||
pts_comp_evidence_t** evidence,
|
||||
pts_file_meas_t** measurements);
|
||||
pts_comp_evidence_t** evidence);
|
||||
|
||||
/**
|
||||
* Verify the evidence measurements of the PTS Functional Component
|
||||
|
||||
@@ -117,7 +117,6 @@ METHOD(pts_file_meas_t, check, bool,
|
||||
{
|
||||
enumerator_t *enumerator;
|
||||
entry_t *entry;
|
||||
char *status_msg;
|
||||
int count_ok = 0, count_not_found = 0, count_differ = 0;
|
||||
status_t status;
|
||||
|
||||
@@ -129,23 +128,25 @@ METHOD(pts_file_meas_t, check, bool,
|
||||
switch (status)
|
||||
{
|
||||
case SUCCESS:
|
||||
status_msg = "is ok";
|
||||
DBG3(DBG_PTS, " %#B for '%s' is ok", &entry->measurement,
|
||||
entry->filename);
|
||||
count_ok++;
|
||||
break;
|
||||
case NOT_FOUND:
|
||||
status_msg = "not found";
|
||||
DBG2(DBG_PTS, " %#B for '%s' not found", &entry->measurement,
|
||||
entry->filename);
|
||||
count_not_found++;
|
||||
break;
|
||||
case VERIFY_ERROR:
|
||||
status_msg = "differs";
|
||||
DBG1(DBG_PTS, " %#B for '%s' differs", &entry->measurement,
|
||||
entry->filename);
|
||||
count_differ++;
|
||||
break;
|
||||
case FAILED:
|
||||
default:
|
||||
status_msg = "failed";
|
||||
DBG1(DBG_PTS, " %#B for '%s' failed", &entry->measurement,
|
||||
entry->filename);
|
||||
}
|
||||
DBG2(DBG_PTS, " %#B for '%s' %s", &entry->measurement,
|
||||
entry->filename, status_msg);
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user