- Timestamp:
- 05/05/11 00:00:24 (14 years ago)
- Location:
- trunk/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/lru_cache.c
r184 r250 151 151 { 152 152 ht->secret = 0; 153 talloc_ free(ht);153 talloc_unlink(NULL, ht); 154 154 } 155 155 … … 257 257 e->index_len = index_len; 258 258 259 /* Insert at beginning of chain, in a vaguely LRU style */260 259 e->next = ht->table[hash]; 261 260 ht->table[hash] = e; -
trunk/lib/regfi.c
r249 r250 1343 1343 int32_t max_size; 1344 1344 1345 if(file->nk_cache != NULL) 1346 { 1347 /* First, check to see if we have this key in our cache */ 1348 if(!regfi_lock(file, &file->mem_lock, "regfi_load_nk")) 1349 return NULL; 1350 regfi_lock(file, &file->nk_lock, "regfi_load_nk"); 1351 1352 nk = (REGFI_NK*)lru_cache_find(file->nk_cache, &offset, 4); 1353 if(nk != NULL) 1354 nk = talloc_reference(NULL, nk); 1355 1356 regfi_unlock(file, &file->nk_lock, "regfi_load_nk"); 1357 regfi_unlock(file, &file->mem_lock, "regfi_load_nk"); 1358 if(nk != NULL) 1359 return nk; 1360 } 1361 1362 /* Not cached currently, proceed with loading it */ 1345 1363 max_size = regfi_calc_maxsize(file, offset); 1346 1364 if (max_size < 0) … … 1371 1389 else 1372 1390 nk->values = NULL; 1373 1374 1391 } 1375 1392 else … … 1421 1438 } 1422 1439 1440 if(file->nk_cache != NULL) 1441 { 1442 /* All is well, so let us cache this key for later */ 1443 if(!regfi_lock(file, &file->mem_lock, "regfi_load_nk")) 1444 return NULL; 1445 regfi_lock(file, &file->nk_lock, "regfi_load_nk"); 1446 1447 lru_cache_update(file->nk_cache, &offset, 4, nk); 1448 1449 regfi_unlock(file, &file->nk_lock, "regfi_load_nk"); 1450 regfi_unlock(file, &file->mem_lock, "regfi_load_nk"); 1451 } 1452 1423 1453 return nk; 1424 1454 } … … 1440 1470 return regfi_parse_sk(file, offset, max_size, strict); 1441 1471 1442 if(!regfi_lock(file, &file->sk_lock, "regfi_load_sk")) 1443 return NULL; 1472 if(!regfi_lock(file, &file->mem_lock, "regfi_load_sk")) 1473 return NULL; 1474 regfi_lock(file, &file->sk_lock, "regfi_load_sk"); 1444 1475 1445 1476 /* First look if we have already parsed it */ … … 1448 1479 /* Bail out if we have previously cached a parse failure at this offset. */ 1449 1480 if(ret_val == (void*)REGFI_OFFSET_NONE) 1450 return NULL; 1481 { 1482 ret_val = NULL; 1483 goto unlock; 1484 } 1451 1485 1452 1486 if(ret_val == NULL) … … 1457 1491 failure_ptr = talloc(NULL, uint32_t); 1458 1492 if(failure_ptr == NULL) 1459 return NULL; 1493 goto unlock; 1494 1460 1495 *(uint32_t*)failure_ptr = REGFI_OFFSET_NONE; 1461 1496 lru_cache_update(file->sk_cache, &offset, 4, failure_ptr); … … 1463 1498 /* Let the cache be the only owner of this */ 1464 1499 talloc_unlink(NULL, failure_ptr); 1465 return NULL; 1466 } 1467 } 1468 1469 if(!regfi_unlock(file, &file->sk_lock, "regfi_load_sk")) 1470 { 1471 talloc_unlink(NULL, ret_val); 1472 return NULL; 1473 } 1500 } 1501 } 1502 1503 unlock: 1504 regfi_unlock(file, &file->sk_lock, "regfi_load_sk"); 1505 regfi_unlock(file, &file->mem_lock, "regfi_load_sk"); 1474 1506 1475 1507 return ret_val; … … 1565 1597 pthread_rwlock_destroy(&file->hbins_lock); 1566 1598 pthread_mutex_destroy(&file->sk_lock); 1599 pthread_mutex_destroy(&file->nk_lock); 1600 pthread_mutex_destroy(&file->mem_lock); 1567 1601 1568 1602 return 0; … … 1629 1663 } 1630 1664 1665 if(pthread_mutex_init(&rb->nk_lock, NULL) != 0) 1666 { 1667 regfi_log_add(REGFI_LOG_ERROR, "Failed to create nk_lock mutex."); 1668 goto fail; 1669 } 1670 1631 1671 if(pthread_mutex_init(&rb->mem_lock, NULL) != 0) 1632 1672 { … … 1662 1702 cache_secret = 0x15DEAD05^time(NULL)^(getpid()<<16); 1663 1703 1664 if(REGFI_CACHE_SK) 1665 rb->sk_cache = lru_cache_create_ctx(rb, 64, cache_secret, true); 1666 else 1667 rb->sk_cache = NULL; 1704 rb->sk_cache = NULL; 1705 if(REGFI_CACHE_SK_MAX > 0) 1706 rb->sk_cache = lru_cache_create_ctx(rb, REGFI_CACHE_SK_MAX, 1707 cache_secret, true); 1708 1709 rb->nk_cache = NULL; 1710 if(REGFI_CACHE_NK_MAX > 0) 1711 rb->nk_cache = lru_cache_create_ctx(rb, REGFI_CACHE_NK_MAX, 1712 cache_secret, true); 1668 1713 1669 1714 /* success */ … … 1675 1720 pthread_rwlock_destroy(&rb->hbins_lock); 1676 1721 pthread_mutex_destroy(&rb->sk_lock); 1722 pthread_mutex_destroy(&rb->nk_lock); 1677 1723 pthread_mutex_destroy(&rb->mem_lock); 1678 1724 … … 2010 2056 { 2011 2057 const REGFI_NK* ret_val = NULL; 2012 if(!regfi_lock(i->f, &i->f->mem_lock, "regfi_iterator_cur_key"))2013 return ret_val;2014 2058 2015 2059 ret_val = regfi_load_key(i->f, i->cur->offset, i->f->string_encoding, true); 2016 2017 regfi_unlock(i->f, &i->f->mem_lock, "regfi_iterator_cur_key");2018 2060 return ret_val; 2019 2061 } … … 2138 2180 void_stack_iterator* iter; 2139 2181 const REGFI_ITER_POSITION* cur; 2140 uint16_t k; 2141 2142 ret_val = talloc_array(NULL, REGFI_NK*, void_stack_size(i->key_positions)+2); 2182 uint16_t k, num_keys; 2183 2184 num_keys = void_stack_size(i->key_positions)+1; 2185 ret_val = talloc_array(NULL, REGFI_NK*, num_keys+1); 2143 2186 if(ret_val == NULL) 2144 2187 return NULL; … … 2150 2193 return NULL; 2151 2194 } 2152 2195 2196 k=0; 2197 for(cur=void_stack_iterator_next(iter); 2198 cur != NULL; cur=void_stack_iterator_next(iter)) 2199 { 2200 ret_val[k++] = regfi_load_key(i->f, cur->offset, i->f->string_encoding, true); 2201 } 2202 ret_val[k] = regfi_load_key(i->f, i->cur->offset, i->f->string_encoding, true); 2203 void_stack_iterator_free(iter); 2204 2153 2205 if(!regfi_lock(i->f, &i->f->mem_lock, "regfi_cur_path")) 2154 2206 { … … 2157 2209 } 2158 2210 2159 for(cur=void_stack_iterator_next(iter), k=0; 2160 cur != NULL; cur=void_stack_iterator_next(iter), k++) 2161 { 2162 ret_val[k] = regfi_load_key(i->f, cur->offset, i->f->string_encoding, true); 2211 for(k=0; k<num_keys; k++) 2163 2212 talloc_reparent(NULL, ret_val, ret_val[k]); 2164 }2165 ret_val[k] = regfi_load_key(i->f, i->cur->offset, i->f->string_encoding, true);2166 talloc_reparent(NULL, ret_val, ret_val[k]);2167 2213 2168 2214 regfi_unlock(i->f, &i->f->mem_lock, "regfi_cur_path"); 2169 void_stack_iterator_free(iter); 2170 2171 ret_val[++k] = NULL; 2215 2216 ret_val[k] = NULL; 2172 2217 return (const REGFI_NK**)ret_val; 2173 2218 }
Note: See TracChangeset
for help on using the changeset viewer.