X-Git-Url: https://git.saurik.com/apple/syslog.git/blobdiff_plain/8158235332f5a3f4f20cebe26bf739b481ca2df5..refs/heads/master:/aslcommon/asl_memory.c?ds=sidebyside diff --git a/aslcommon/asl_memory.c b/aslcommon/asl_memory.c index 1bf140f..1dcfab1 100644 --- a/aslcommon/asl_memory.c +++ b/aslcommon/asl_memory.c @@ -21,8 +21,6 @@ * @APPLE_LICENSE_HEADER_END@ */ -#include -#include "asl_memory.h" #include #include #include @@ -30,19 +28,21 @@ #include #include #include +#include +#include +#include #include +#include "asl_memory.h" #define DEFAULT_MAX_RECORDS 2000 -#define MEM_STRING_HEADER_SIZE 8 +#define DEFAULT_MAX_STRING_MEMORY 4096000 #define forever for(;;) -extern time_t asl_parse_time(const char *str); -extern int asl_msg_cmp(asl_msg_t *a, asl_msg_t *b); uint32_t -asl_memory_statistics(asl_memory_t *s, aslmsg *msg) +asl_memory_statistics(asl_memory_t *s, asl_msg_t **msg) { - aslmsg out; + asl_msg_t * out; uint32_t i, n; uint64_t size; char str[256]; @@ -50,7 +50,7 @@ asl_memory_statistics(asl_memory_t *s, aslmsg *msg) if (s == NULL) return ASL_STATUS_INVALID_STORE; if (msg == NULL) return ASL_STATUS_INVALID_ARG; - out = asl_new(ASL_TYPE_MSG); + out = asl_msg_new(ASL_TYPE_MSG); if (out == NULL) return ASL_STATUS_NO_MEMORY; size = sizeof(asl_memory_t); @@ -58,21 +58,30 @@ asl_memory_statistics(asl_memory_t *s, aslmsg *msg) for (i = 0; i < s->string_count; i++) { - size += MEM_STRING_HEADER_SIZE; - if (((mem_string_t *)s->string_cache[i])->str != NULL) size += (strlen(((mem_string_t *)s->string_cache[i])->str) + 1); + size += sizeof(mem_string_t); + if (s->string_cache[i]->str != NULL) size += (strlen(s->string_cache[i]->str) + 1); } snprintf(str, sizeof(str), "%llu", size); - asl_set(out, "Size", str); + asl_msg_set_key_val(out, "Size", str); n = 0; for (i = 0; i < s->record_count; i++) if (s->record[i]->mid != 0) n++; + snprintf(str, sizeof(str), "%u", s->record_count); + asl_msg_set_key_val(out, "MaxRecords", str); + snprintf(str, sizeof(str), "%u", n); - asl_set(out, "RecordCount", str); + asl_msg_set_key_val(out, "RecordCount", str); snprintf(str, sizeof(str), "%u", s->string_count); - asl_set(out, "StringCount", str); + asl_msg_set_key_val(out, "StringCount", str); + + snprintf(str, sizeof(str), "%lu", s->curr_string_mem); + asl_msg_set_key_val(out, "StringMemory", str); + + snprintf(str, sizeof(str), "%lu", s->max_string_mem); + asl_msg_set_key_val(out, "MaxStringMemory", str); *msg = out; return ASL_STATUS_OK; @@ -81,35 +90,45 @@ asl_memory_statistics(asl_memory_t *s, aslmsg *msg) uint32_t asl_memory_close(asl_memory_t *s) { - uint32_t i; - if (s == NULL) return ASL_STATUS_OK; + + dispatch_sync(s->queue, ^{ + uint32_t i; - if (s->record != NULL) - { - for (i = 0; i < s->record_count; i++) + if (s->record != NULL) { - if (s->record[i] != NULL) free(s->record[i]); - s->record[i] = NULL; - } + for (i = 0; i < s->record_count; i++) + { + free(s->record[i]); + s->record[i] = NULL; + } - free(s->record); - s->record = NULL; - } + free(s->record); + s->record = NULL; + } - if (s->buffer_record != NULL) free(s->buffer_record); + free(s->buffer_record); + s->buffer_record = NULL; - if (s->string_cache != NULL) - { - for (i = 0; i < s->string_count; i++) + if (s->string_cache != NULL) { - if (s->string_cache[i] != NULL) free(s->string_cache[i]); - s->string_cache[i] = NULL; + for (i = 0; i < s->string_count; i++) + { + if (s->string_cache[i] != NULL) + { + free(s->string_cache[i]->str); + free(s->string_cache[i]); + } + + s->string_cache[i] = NULL; + } + + free(s->string_cache); + s->string_cache = NULL; } + }); - free(s->string_cache); - s->string_cache = NULL; - } + dispatch_release(s->queue); free(s); @@ -117,7 +136,7 @@ asl_memory_close(asl_memory_t *s) } uint32_t -asl_memory_open(uint32_t max_records, asl_memory_t **s) +asl_memory_open(uint32_t max_records, size_t max_str_mem, asl_memory_t **s) { asl_memory_t *out; uint32_t i; @@ -125,14 +144,25 @@ asl_memory_open(uint32_t max_records, asl_memory_t **s) if (s == NULL) return ASL_STATUS_INVALID_ARG; if (max_records == 0) max_records = DEFAULT_MAX_RECORDS; + if (max_str_mem == 0) max_str_mem = DEFAULT_MAX_STRING_MEMORY; out = calloc(1, sizeof(asl_memory_t)); if (out == NULL) return ASL_STATUS_NO_MEMORY; + out->queue = dispatch_queue_create("ASL Memory Queue", NULL); + if (out->queue == NULL) + { + free(out); + return ASL_STATUS_NO_MEMORY; + } + + out->max_string_mem = max_str_mem; + out->record_count = max_records; out->record = (mem_record_t **)calloc(max_records, sizeof(mem_record_t *)); if (out->record == NULL) { + dispatch_release(out->queue); free(out); return ASL_STATUS_NO_MEMORY; } @@ -158,28 +188,67 @@ asl_memory_open(uint32_t max_records, asl_memory_t **s) return ASL_STATUS_OK; } +static void +asl_memory_reset(asl_memory_t *s) +{ + uint32_t i; + if (s == NULL) return; + + /* clear all message records */ + for (i = 0; i < s->record_count; i++) + { + memset(s->record[i], 0, sizeof(mem_record_t)); + } + + /* reset the string cache */ + if (s->string_cache != NULL) + { + for (i = 0; i < s->string_count; i++) + { + if (s->string_cache[i] != NULL) + { + free(s->string_cache[i]->str); + free(s->string_cache[i]); + } + + s->string_cache[i] = NULL; + } + + free(s->string_cache); + s->string_cache = NULL; + } + + s->string_count = 0; +} + static mem_string_t * -mem_string_new(const char *str, uint32_t len, uint32_t hash) +asl_memory_string_new(const char *str, uint32_t len, uint32_t hash) { mem_string_t *out; - size_t ss; if (str == NULL) return NULL; - ss = MEM_STRING_HEADER_SIZE + len + 1; - out = (mem_string_t *)calloc(1, ss); + out = (mem_string_t *)calloc(1, sizeof(mem_string_t)); if (out == NULL) return NULL; out->hash = hash; out->refcount = 1; + out->str = malloc(len + 1); + if (out->str == NULL) + { + free(out); + return NULL; + } + memcpy(out->str, str, len); + out->str[len] = 0; return out; } /* * Find the first hash greater than or equal to a given hash in the string cache. - * Return s->string_count if hash is greater that or equal to last hash in the string cache. + * Return s->string_count if hash is greater than last hash in the string cache. * Caller must check if the hashes match or not. * * This routine is used both to find strings in the cache and to determine where to insert @@ -194,7 +263,7 @@ asl_memory_string_cache_search_hash(asl_memory_t *s, uint32_t hash) if (s->string_count == 0) return 0; if (s->string_count == 1) { - ms = (mem_string_t *)s->string_cache[0]; + ms = s->string_cache[0]; if (hash < ms->hash) return 0; return 1; } @@ -205,13 +274,13 @@ asl_memory_string_cache_search_hash(asl_memory_t *s, uint32_t hash) while (range > 1) { - ms = (mem_string_t *)s->string_cache[mid]; + ms = s->string_cache[mid]; if (hash == ms->hash) { while (mid > 0) { - ms = (mem_string_t *)s->string_cache[mid - 1]; + ms = s->string_cache[mid - 1]; if (hash != ms->hash) break; mid--; } @@ -220,7 +289,7 @@ asl_memory_string_cache_search_hash(asl_memory_t *s, uint32_t hash) } else { - ms = (mem_string_t *)s->string_cache[mid]; + ms = s->string_cache[mid]; if (hash < ms->hash) top = mid; else bot = mid; } @@ -229,10 +298,10 @@ asl_memory_string_cache_search_hash(asl_memory_t *s, uint32_t hash) mid = bot + (range / 2); } - ms = (mem_string_t *)s->string_cache[bot]; + ms = s->string_cache[bot]; if (hash <= ms->hash) return bot; - ms = (mem_string_t *)s->string_cache[top]; + ms = s->string_cache[top]; if (hash <= ms->hash) return top; return s->string_count; @@ -261,11 +330,11 @@ asl_memory_string_retain(asl_memory_t *s, const char *str, int create) /* asl_memory_string_cache_search_hash just tells us where to look */ if (where < s->string_count) { - while (((mem_string_t *)(s->string_cache[where]))->hash == hash) + while (s->string_cache[where]->hash == hash) { - if (!strcmp(str, ((mem_string_t *)(s->string_cache[where]))->str)) + if (!strcmp(str, s->string_cache[where]->str)) { - ((mem_string_t *)(s->string_cache[where]))->refcount++; + s->string_cache[where]->refcount++; return s->string_cache[where]; } @@ -277,25 +346,20 @@ asl_memory_string_retain(asl_memory_t *s, const char *str, int create) if (create == 0) return NULL; /* create a new mem_string_t and insert into the cache at index 'where' */ - if (s->string_count == 0) - { - s->string_cache = (void **)calloc(1, sizeof(void *)); - } - else - { - s->string_cache = (void **)reallocf(s->string_cache, (s->string_count + 1) * sizeof(void *)); - for (i = s->string_count; i > where; i--) s->string_cache[i] = s->string_cache[i - 1]; - } - + new = asl_memory_string_new(str, len, hash); + if (new == NULL) return NULL; + + s->string_cache = (mem_string_t **)reallocf(s->string_cache, (s->string_count + 1) * sizeof(void *)); if (s->string_cache == NULL) { s->string_count = 0; + free(new); return NULL; } - new = mem_string_new(str, len, hash); - if (new == NULL) return NULL; + for (i = s->string_count; i > where; i--) s->string_cache[i] = s->string_cache[i - 1]; + s->curr_string_mem += (sizeof(mem_string_t) + len + 1); s->string_cache[where] = new; s->string_count++; @@ -314,11 +378,11 @@ asl_memory_string_release(asl_memory_t *s, mem_string_t *m) if (m->refcount > 0) return ASL_STATUS_OK; where = asl_memory_string_cache_search_hash(s, m->hash); - if (((mem_string_t *)(s->string_cache[where]))->hash != m->hash) return ASL_STATUS_OK; + if (s->string_cache[where]->hash != m->hash) return ASL_STATUS_OK; while (s->string_cache[where] != m) { - if (((mem_string_t *)(s->string_cache[where]))->hash != m->hash) return ASL_STATUS_OK; + if (s->string_cache[where]->hash != m->hash) return ASL_STATUS_OK; where++; if (where >= s->string_count) return ASL_STATUS_OK; @@ -326,7 +390,12 @@ asl_memory_string_release(asl_memory_t *s, mem_string_t *m) for (i = where + 1; i < s->string_count; i++) s->string_cache[i - 1] = s->string_cache[i]; + if (m->str == NULL) s->curr_string_mem -= sizeof(mem_string_t); + else s->curr_string_mem -= (sizeof(mem_string_t) + strlen(m->str) + 1); + + free(m->str); free(m); + s->string_count--; if (s->string_count == 0) @@ -336,7 +405,7 @@ asl_memory_string_release(asl_memory_t *s, mem_string_t *m) return ASL_STATUS_OK; } - s->string_cache = (void **)reallocf(s->string_cache, s->string_count * sizeof(void *)); + s->string_cache = (mem_string_t **)reallocf(s->string_cache, s->string_count * sizeof(void *)); if (s->string_cache == NULL) { s->string_count = 0; @@ -379,11 +448,11 @@ asl_memory_record_free(asl_memory_t *s, mem_record_t *r) } /* - * Encode an aslmsg as a record structure. + * Encode an asl_msg_t as a record structure. * Creates and caches strings. */ static uint32_t -asl_memory_message_encode(asl_memory_t *s, aslmsg msg) +asl_memory_message_encode(asl_memory_t *s, asl_msg_t *msg) { uint32_t x; mem_string_t *k, *v; @@ -417,7 +486,7 @@ asl_memory_message_encode(asl_memory_t *s, aslmsg msg) else if (!strcmp(key, ASL_KEY_TIME)) { - if (val != NULL) r->time = asl_parse_time(val); + if (val != NULL) r->time = asl_core_parse_time(val, NULL); } else if (!strcmp(key, ASL_KEY_TIME_NSEC)) { @@ -487,6 +556,10 @@ asl_memory_message_encode(asl_memory_t *s, aslmsg msg) r->flags |= ASL_MSG_FLAG_READ_GID_SET; } } + else if (!strcmp(key, ASL_KEY_OS_ACTIVITY_ID)) + { + if (val != NULL) r->os_activity_id = atoll(val); + } else if (!strcmp(key, ASL_KEY_MSG_ID)) { /* Ignore */ @@ -500,15 +573,7 @@ asl_memory_message_encode(asl_memory_t *s, aslmsg msg) v = NULL; if (val != NULL) v = asl_memory_string_retain(s, val, 1); - if (r->kvcount == 0) - { - r->kvlist = (mem_string_t **)calloc(2, sizeof(mem_string_t *)); - } - else - { - r->kvlist = (mem_string_t **)reallocf(r->kvlist, (r->kvcount + 2) * sizeof(mem_string_t *)); - } - + r->kvlist = (mem_string_t **)reallocf(r->kvlist, (r->kvcount + 2) * sizeof(mem_string_t *)); if (r->kvlist == NULL) { asl_memory_record_clear(s, r); @@ -524,39 +589,60 @@ asl_memory_message_encode(asl_memory_t *s, aslmsg msg) } uint32_t -asl_memory_save(asl_memory_t *s, aslmsg msg, uint64_t *mid) +asl_memory_save(asl_memory_t *s, asl_msg_t *msg, uint64_t *mid) { - uint32_t status; - mem_record_t *t; + __block uint32_t status; if (s == NULL) return ASL_STATUS_INVALID_STORE; if (s->buffer_record == NULL) return ASL_STATUS_INVALID_STORE; - /* asl_memory_message_encode creates and caches strings */ - status = asl_memory_message_encode(s, msg); - if (status != ASL_STATUS_OK) return status; - - if (*mid != 0) - { - s->buffer_record->mid = *mid; - } - else - { - s->buffer_record->mid = asl_core_new_msg_id(0); - *mid = s->buffer_record->mid; - } - - /* clear the first record */ - t = s->record[s->record_first]; - asl_memory_record_clear(s, t); - - /* add the new record to the record list (swap in the buffer record) */ - s->record[s->record_first] = s->buffer_record; - s->buffer_record = t; + dispatch_sync(s->queue, ^{ + mem_record_t *t; - /* record list is a circular queue */ - s->record_first++; - if (s->record_first >= s->record_count) s->record_first = 0; + /* asl_memory_message_encode creates and caches strings */ + status = asl_memory_message_encode(s, msg); + if (status == ASL_STATUS_OK) + { + uint32_t loop_start_index = s->record_first; + + if (*mid != 0) + { + s->buffer_record->mid = *mid; + } + else + { + s->buffer_record->mid = asl_core_new_msg_id(0); + *mid = s->buffer_record->mid; + } + + /* clear the first record */ + t = s->record[s->record_first]; + asl_memory_record_clear(s, t); + + /* add the new record to the record list (swap in the buffer record) */ + s->record[s->record_first] = s->buffer_record; + s->buffer_record = t; + + /* record list is a circular queue */ + s->record_first++; + if (s->record_first >= s->record_count) s->record_first = 0; + + /* delete records if too much memory is in use */ + while (s->curr_string_mem > s->max_string_mem) + { + asl_memory_record_clear(s, s->record[s->record_first]); + s->record_first++; + if (s->record_first >= s->record_count) s->record_first = 0; + if (s->record_first == loop_start_index) + { + /* The entire ring has been cleared. This should never happen. */ + asl_memory_reset(s); + status = ASL_STATUS_FAILED; + break; + } + } + } + }); return status; } @@ -565,10 +651,10 @@ asl_memory_save(asl_memory_t *s, aslmsg msg, uint64_t *mid) * Decodes a record structure. */ static uint32_t -asl_memory_message_decode(asl_memory_t *s, mem_record_t *r, aslmsg *out) +asl_memory_message_decode(asl_memory_t *s, mem_record_t *r, asl_msg_t **out) { uint32_t i; - aslmsg msg; + asl_msg_t *msg; char tmp[64]; const char *key, *val; @@ -578,113 +664,120 @@ asl_memory_message_decode(asl_memory_t *s, mem_record_t *r, aslmsg *out) *out = NULL; - msg = asl_new(ASL_TYPE_MSG); + msg = asl_msg_new(ASL_TYPE_MSG); if (msg == NULL) return ASL_STATUS_NO_MEMORY; /* Message ID */ snprintf(tmp, sizeof(tmp), "%llu", r->mid); - asl_set(msg, ASL_KEY_MSG_ID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_MSG_ID, tmp); /* Level */ snprintf(tmp, sizeof(tmp), "%u", r->level); - asl_set(msg, ASL_KEY_LEVEL, tmp); + asl_msg_set_key_val(msg, ASL_KEY_LEVEL, tmp); /* Time */ if (r->time != (uint64_t)-1) { snprintf(tmp, sizeof(tmp), "%llu", r->time); - asl_set(msg, ASL_KEY_TIME, tmp); + asl_msg_set_key_val(msg, ASL_KEY_TIME, tmp); } /* Nanoseconds */ if (r->nano != (uint32_t)-1) { snprintf(tmp, sizeof(tmp), "%u", r->nano); - asl_set(msg, ASL_KEY_TIME_NSEC, tmp); + asl_msg_set_key_val(msg, ASL_KEY_TIME_NSEC, tmp); } /* Host */ if (r->host != NULL) { - asl_set(msg, ASL_KEY_HOST, r->host->str); + asl_msg_set_key_val(msg, ASL_KEY_HOST, r->host->str); } /* Sender */ if (r->sender != NULL) { - asl_set(msg, ASL_KEY_SENDER, r->sender->str); + asl_msg_set_key_val(msg, ASL_KEY_SENDER, r->sender->str); } /* Sender mach UUID */ if (r->sender_mach_uuid != NULL) { - asl_set(msg, ASL_KEY_SENDER_MACH_UUID, r->sender_mach_uuid->str); + asl_msg_set_key_val(msg, ASL_KEY_SENDER_MACH_UUID, r->sender_mach_uuid->str); } /* Facility */ if (r->facility != NULL) { - asl_set(msg, ASL_KEY_FACILITY, r->facility->str); + asl_msg_set_key_val(msg, ASL_KEY_FACILITY, r->facility->str); } /* Ref Proc */ if (r->refproc != NULL) { - asl_set(msg, ASL_KEY_REF_PROC, r->refproc->str); + asl_msg_set_key_val(msg, ASL_KEY_REF_PROC, r->refproc->str); } /* Session */ if (r->session != NULL) { - asl_set(msg, ASL_KEY_SESSION, r->session->str); + asl_msg_set_key_val(msg, ASL_KEY_SESSION, r->session->str); } /* PID */ if (r->pid != -1) { snprintf(tmp, sizeof(tmp), "%d", r->pid); - asl_set(msg, ASL_KEY_PID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_PID, tmp); } /* REF PID */ if (r->refpid != 0) { snprintf(tmp, sizeof(tmp), "%d", r->refpid); - asl_set(msg, ASL_KEY_REF_PID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_REF_PID, tmp); } /* UID */ if (r->uid != -2) { snprintf(tmp, sizeof(tmp), "%d", r->uid); - asl_set(msg, ASL_KEY_UID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_UID, tmp); } /* GID */ if (r->gid != -2) { snprintf(tmp, sizeof(tmp), "%d", r->gid); - asl_set(msg, ASL_KEY_GID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_GID, tmp); } /* Message */ if (r->message != NULL) { - asl_set(msg, ASL_KEY_MSG, r->message->str); + asl_msg_set_key_val(msg, ASL_KEY_MSG, r->message->str); } /* ReadUID */ if (r->flags & ASL_MSG_FLAG_READ_UID_SET) { snprintf(tmp, sizeof(tmp), "%d", r->ruid); - asl_set(msg, ASL_KEY_READ_UID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_READ_UID, tmp); } /* ReadGID */ if (r->flags & ASL_MSG_FLAG_READ_GID_SET) { snprintf(tmp, sizeof(tmp), "%d", r->rgid); - asl_set(msg, ASL_KEY_READ_GID, tmp); + asl_msg_set_key_val(msg, ASL_KEY_READ_GID, tmp); + } + + /* OSActivityID */ + if (r->os_activity_id != 0) + { + snprintf(tmp, sizeof(tmp), "%llu", r->os_activity_id); + asl_msg_set_key_val(msg, ASL_KEY_OS_ACTIVITY_ID, tmp); } /* Key - Value List */ @@ -693,11 +786,11 @@ asl_memory_message_decode(asl_memory_t *s, mem_record_t *r, aslmsg *out) key = NULL; val = NULL; - if ((r->kvlist[i] != NULL) && (r->kvlist[i]->str != NULL)) key = r->kvlist[i]->str; + if (r->kvlist[i] != NULL) key = r->kvlist[i]->str; i++; - if ((r->kvlist[i] != NULL) && (r->kvlist[i]->str != NULL)) val = r->kvlist[i]->str; + if (r->kvlist[i] != NULL) val = r->kvlist[i]->str; - if (key != NULL) asl_set(msg, key, val); + if (key != NULL) asl_msg_set_key_val(msg, key, val); } *out = msg; @@ -705,33 +798,42 @@ asl_memory_message_decode(asl_memory_t *s, mem_record_t *r, aslmsg *out) } uint32_t -asl_memory_fetch(asl_memory_t *s, uint64_t mid, aslmsg *msg, int32_t ruid, int32_t rgid) +asl_memory_fetch(asl_memory_t *s, uint64_t mid, asl_msg_t **msg, int32_t ruid, int32_t rgid) { - uint32_t i, status; + __block uint32_t status; if (s == NULL) return ASL_STATUS_INVALID_STORE; if (msg == NULL) return ASL_STATUS_INVALID_ARG; - for (i = 0; i < s->record_count; i++) - { - if (s->record[i]->mid == 0) break; + status = ASL_STATUS_INVALID_ID; + + dispatch_sync(s->queue, ^{ + uint32_t i; - if (s->record[i]->mid == mid) + for (i = 0; i < s->record_count; i++) { - status = asl_core_check_access(s->record[i]->ruid, s->record[i]->rgid, ruid, rgid, s->record[i]->flags); - if (status != ASL_STATUS_OK) return status; - return asl_memory_message_decode(s, s->record[i], msg); + if (s->record[i]->mid == 0) break; + + if (s->record[i]->mid == mid) + { + status = asl_core_check_access(s->record[i]->ruid, s->record[i]->rgid, ruid, rgid, s->record[i]->flags); + if (status != ASL_STATUS_OK) break; + + status = asl_memory_message_decode(s, s->record[i], msg); + break; + } } - } + }); - return ASL_STATUS_INVALID_ID; + return status; } static mem_record_t * -asl_memory_query_to_record(asl_memory_t *s, aslmsg q, uint32_t *type) +asl_memory_query_to_record(asl_memory_t *s, asl_msg_t *q, uint32_t *type) { mem_record_t *out; - uint32_t i, x, op; + uint32_t i, x; + uint16_t op; mem_string_t *mkey, *mval; const char *key, *val; @@ -794,7 +896,7 @@ asl_memory_query_to_record(asl_memory_t *s, aslmsg q, uint32_t *type) } *type |= ASL_QUERY_MATCH_TIME; - out->time = asl_parse_time(val); + out->time = asl_core_parse_time(val, NULL); } else if (!strcmp(key, ASL_KEY_TIME_NSEC)) { @@ -951,7 +1053,7 @@ asl_memory_query_to_record(asl_memory_t *s, aslmsg q, uint32_t *type) else if (!strcmp(key, ASL_KEY_SENDER_MACH_UUID)) { if (val == NULL) continue; - + if (*type & ASL_QUERY_MATCH_SMUUID) { asl_memory_record_free(s, out); @@ -1139,9 +1241,9 @@ asl_memory_fast_match(asl_memory_t *s, mem_record_t *r, uint32_t qtype, mem_reco } static uint32_t -asl_memory_slow_match(asl_memory_t *s, mem_record_t *r, aslmsg rawq) +asl_memory_slow_match(asl_memory_t *s, mem_record_t *r, asl_msg_t *rawq) { - aslmsg rawm; + asl_msg_t *rawm; uint32_t status; rawm = NULL; @@ -1150,34 +1252,34 @@ asl_memory_slow_match(asl_memory_t *s, mem_record_t *r, aslmsg rawq) status = 0; if (asl_msg_cmp((asl_msg_t *)rawq, (asl_msg_t *)rawm) != 0) status = 1; - asl_free(rawm); + asl_msg_release(rawm); return status; } -uint32_t -asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse *res, uint64_t *last_id, uint64_t start_id, uint32_t count, int32_t direction, int32_t ruid, int32_t rgid, const char *uuid_str) +static uint32_t +asl_memory_match_restricted_uuid_internal(asl_memory_t *s, asl_msg_list_t *query, asl_msg_list_t **res, uint64_t *last_id, uint64_t start_id, uint32_t count, uint32_t duration, int32_t direction, int32_t ruid, int32_t rgid, const char *uuid_str) { uint32_t status, i, where, start, j, do_match, did_match, rescount, *qtype; mem_record_t **qp; - aslmsg m; - - if (s == NULL) return ASL_STATUS_INVALID_STORE; - if (res == NULL) return ASL_STATUS_INVALID_ARG; + asl_msg_t *m; + size_t qcount; + struct timeval now, finish; qp = NULL; qtype = NULL; rescount = 0; + qcount = asl_msg_list_count(query); - if ((query == NULL) || ((query != NULL) && (query->count == 0))) + if (qcount == 0) { do_match = 0; } else { - qp = (mem_record_t **)calloc(query->count, sizeof(mem_record_t *)); + qp = (mem_record_t **)calloc(qcount, sizeof(mem_record_t *)); if (qp == NULL) return ASL_STATUS_NO_MEMORY; - qtype = (uint32_t *)calloc(query->count, sizeof(uint32_t)); + qtype = (uint32_t *)calloc(qcount, sizeof(uint32_t)); if (qtype == NULL) { free(qp); @@ -1185,9 +1287,9 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse } do_match = 0; - for (i = 0; i < query->count; i++) + for (i = 0; i < qcount; i++) { - qp[i] = asl_memory_query_to_record(s, (aslmsg)query->msg[i], &(qtype[i])); + qp[i] = asl_memory_query_to_record(s, asl_msg_list_get_index(query, i), &(qtype[i])); if (qtype[i] == ASL_QUERY_MATCH_ERROR) { for (j = 0; j < i; j++) asl_memory_record_free(s, qp[j]); @@ -1220,7 +1322,7 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse { if (qp != NULL) { - for (i = 0; i < query->count; i++) asl_memory_record_free(s, qp[i]); + for (i = 0; i < qcount; i++) asl_memory_record_free(s, qp[i]); free(qp); free(qtype); } @@ -1228,6 +1330,27 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse return ASL_STATUS_OK; } + /* start the timer if a duration was specified */ + memset(&finish, 0, sizeof(struct timeval)); + if (duration != 0) + { + if (gettimeofday(&finish, NULL) == 0) + { + finish.tv_sec += (duration / USEC_PER_SEC); + finish.tv_usec += (duration % USEC_PER_SEC); + if (finish.tv_usec > USEC_PER_SEC) + { + finish.tv_usec -= USEC_PER_SEC; + finish.tv_sec += 1; + } + } + else + { + /* shouldn't happen, but if gettimeofday failed we just run without a timeout */ + memset(&finish, 0, sizeof(struct timeval)); + } + } + start = where; /* @@ -1269,7 +1392,7 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse { did_match = 0; - for (j = 0; (j < query->count) && (did_match == 0); j++) + for (j = 0; (j < qcount) && (did_match == 0); j++) { if (qtype[j] == ASL_QUERY_MATCH_TRUE) { @@ -1281,7 +1404,7 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse } else if (qtype[j] == ASL_QUERY_MATCH_SLOW) { - did_match = asl_memory_slow_match(s, s->record[where], (aslmsg)query->msg[j]); + did_match = asl_memory_slow_match(s, s->record[where], asl_msg_list_get_index(query, j)); } else { @@ -1297,6 +1420,12 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse if ((count != 0) && (rescount >= count)) break; } + /* check the timer */ + if ((finish.tv_sec != 0) && (gettimeofday(&now, NULL) == 0)) + { + if ((now.tv_sec > finish.tv_sec) || ((now.tv_sec == finish.tv_sec) && (now.tv_usec > finish.tv_usec))) break; + } + if (direction >= 0) { where++; @@ -1311,9 +1440,9 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse if (where == s->record_first) break; } - if (query != NULL) + if (qp != NULL) { - for (i = 0; i < query->count; i++) asl_memory_record_free(s, qp[i]); + for (i = 0; i < qcount; i++) asl_memory_record_free(s, qp[i]); free(qp); free(qtype); } @@ -1321,22 +1450,14 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse *res = NULL; if (rescount == 0) return ASL_STATUS_OK; - *res = (asl_msg_list_t *)calloc(1, sizeof(asl_msg_list_t)); + *res = asl_msg_list_new(); if (*res == NULL) return ASL_STATUS_NO_MEMORY; - (*res)->count = rescount; - - (*res)->msg = (asl_msg_t **)calloc(rescount, sizeof(asl_msg_t *)); - if ((*res)->msg == NULL) - { - free(*res); - *res = NULL; - return ASL_STATUS_NO_MEMORY; - } - where = start; forever { + int n = 0; + if (s->record[where]->flags & ASL_MSG_FLAG_SEARCH_MATCH) { s->record[where]->flags &= ASL_MSG_FLAG_SEARCH_CLEAR; @@ -1344,13 +1465,15 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse status = asl_memory_message_decode(s, s->record[where], &m); if (status != ASL_STATUS_OK) { - aslresponse_free(*res); + asl_msg_list_release(*res); *res = NULL; return status; } - (*res)->msg[(*res)->curr++] = (asl_msg_t *)m; - if ((*res)->curr == rescount) break; + asl_msg_list_append(*res, m); + asl_msg_release(m); + n++; + if (n == rescount) break; } if (direction >= 0) @@ -1367,12 +1490,35 @@ asl_memory_match_restricted_uuid(asl_memory_t *s, aslresponse query, aslresponse if (where == s->record_first) break; } - (*res)->curr = 0; return ASL_STATUS_OK; } uint32_t -asl_memory_match(asl_memory_t *s, aslresponse query, aslresponse *res, uint64_t *last_id, uint64_t start_id, uint32_t count, int32_t direction, int32_t ruid, int32_t rgid) +asl_memory_match_restricted_uuid(asl_memory_t *s, asl_msg_list_t *query, asl_msg_list_t **res, uint64_t *last_id, uint64_t start_id, uint32_t count, uint32_t duration, int32_t direction, int32_t ruid, int32_t rgid, const char *uuid_str) { - return asl_memory_match_restricted_uuid(s, query, res, last_id, start_id, count, direction, ruid, rgid, NULL); + __block uint32_t status; + + if (s == NULL) return ASL_STATUS_INVALID_STORE; + if (res == NULL) return ASL_STATUS_INVALID_ARG; + + dispatch_sync(s->queue, ^{ + status = asl_memory_match_restricted_uuid_internal(s, query, res, last_id, start_id, count, duration, direction, ruid, rgid, uuid_str); + }); + + return status; +} + +uint32_t +asl_memory_match(asl_memory_t *s, asl_msg_list_t *query, asl_msg_list_t **res, uint64_t *last_id, uint64_t start_id, uint32_t count, int32_t direction, int32_t ruid, int32_t rgid) +{ + __block uint32_t status; + + if (s == NULL) return ASL_STATUS_INVALID_STORE; + if (res == NULL) return ASL_STATUS_INVALID_ARG; + + dispatch_sync(s->queue, ^{ + status = asl_memory_match_restricted_uuid_internal(s, query, res, last_id, start_id, count, 0, direction, ruid, rgid, NULL); + }); + + return status; }