secStoreAdmin_interface.h File Reference

#include "legato.h"
#include "le_secStore_interface.h"

Go to the source code of this file.

Macros

#define SECSTOREADMIN_MAX_PATH_SIZE   511
 
#define SECSTOREADMIN_MAX_PATH_BYTES   512
 

Typedefs

typedef struct secStoreAdmin_Iter * secStoreAdmin_IterRef_t
 

Functions

void secStoreAdmin_ConnectService (void)
 
le_result_t secStoreAdmin_TryConnectService (void)
 
void secStoreAdmin_DisconnectService (void)
 
secStoreAdmin_IterRef_t secStoreAdmin_CreateIter (const char *path)
 
void secStoreAdmin_DeleteIter (secStoreAdmin_IterRef_t iterRef)
 
le_result_t secStoreAdmin_Next (secStoreAdmin_IterRef_t iterRef)
 
le_result_t secStoreAdmin_GetEntry (secStoreAdmin_IterRef_t iterRef, char *name, size_t nameNumElements, bool *isDirPtr)
 
le_result_t secStoreAdmin_Write (const char *path, const uint8_t *bufPtr, size_t bufNumElements)
 
le_result_t secStoreAdmin_Read (const char *path, uint8_t *bufPtr, size_t *bufNumElementsPtr)
 
le_result_t secStoreAdmin_CopyMetaTo (const char *path)
 
le_result_t secStoreAdmin_Delete (const char *path)
 
le_result_t secStoreAdmin_GetSize (const char *path, uint64_t *sizePtr)
 
le_result_t secStoreAdmin_GetTotalSpace (uint64_t *totalSizePtr, uint64_t *freeSizePtr)
 

Detailed Description

Legato Secure Storage Admin API

Macro Definition Documentation

#define SECSTOREADMIN_MAX_PATH_SIZE   511

Maximum number of characters and byte storage size permitted for a path.

Typedef Documentation

typedef struct secStoreAdmin_Iter* secStoreAdmin_IterRef_t

Iterator to list entries in secure storage.

Function Documentation

void secStoreAdmin_ConnectService ( void  )

Connect the current client thread to the service providing this API. Block until the service is available.

For each thread that wants to use this API, either ConnectService or TryConnectService must be called before any other functions in this API. Normally, ConnectService is automatically called for the main thread, but not for any other thread. For details, see Client-specific Functions.

This function is created automatically.

le_result_t secStoreAdmin_CopyMetaTo ( const char *  path)

Copy the meta file to the specified path.

Returns
LE_OK if successful. LE_NOT_FOUND if the meta file does not exist. LE_UNAVAILABLE if the sfs is currently unavailable. LE_FAULT if there was some other error.
Parameters
[in]pathDestination path of meta file copy.
secStoreAdmin_IterRef_t secStoreAdmin_CreateIter ( const char *  path)

Create an iterator for listing entries in secure storage under the specified path.

Returns
An iterator reference if successful. NULL if the secure storage is currently unavailable.
Parameters
[in]pathPath to iterate over.
le_result_t secStoreAdmin_Delete ( const char *  path)

Recursively deletes all items under the specified path and the specified path from secure storage.

Note
The specified path must be an absolute path.
Returns
LE_OK if successful. LE_NOT_FOUND if the path doesn't exist. LE_UNAVAILABLE if the secure storage is currently unavailable. LE_FAULT if there was some other error.
Parameters
[in]pathPath of the secure storage item.
void secStoreAdmin_DeleteIter ( secStoreAdmin_IterRef_t  iterRef)

Deletes an iterator.

Parameters
[in]iterRefIterator reference.
void secStoreAdmin_DisconnectService ( void  )

Disconnect the current client thread from the service providing this API.

Normally, this function doesn't need to be called. After this function is called, there's no longer a connection to the service, and the functions in this API can't be used. For details, see Client-specific Functions.

This function is created automatically.

le_result_t secStoreAdmin_GetEntry ( secStoreAdmin_IterRef_t  iterRef,
char *  name,
size_t  nameNumElements,
bool *  isDirPtr 
)

Get the current entry's name.

Returns
LE_OK if successful. LE_OVERFLOW if the buffer is too small to hold the entry name. LE_UNAVAILABLE if the secure storage is currently unavailable.
Parameters
[in]iterRefIterator reference.
[out]nameBuffer to store the entry name.
[in]nameNumElements
[out]isDirPtrTrue if the entry is a directory, false otherwise.
le_result_t secStoreAdmin_GetSize ( const char *  path,
uint64_t *  sizePtr 
)

Gets the size, in bytes, of all items under the specified path.

Note
The specified path must be an absolute path.
Returns
LE_OK if successful. LE_NOT_FOUND if the path doesn't exist. LE_UNAVAILABLE if the secure storage is currently unavailable. LE_FAULT if there was some other error.
Parameters
[in]pathPath of the secure storage item.
[out]sizePtrSize in bytes of all items in the path.
le_result_t secStoreAdmin_GetTotalSpace ( uint64_t *  totalSizePtr,
uint64_t *  freeSizePtr 
)

Gets the total space and the available free space in secure storage.

Returns
LE_OK if successful. LE_UNAVAILABLE if the secure storage is currently unavailable. LE_FAULT if there was some other error.
Parameters
[out]totalSizePtrTotal size, in bytes, of secure storage.
[out]freeSizePtrFree space, in bytes, in secure storage.
le_result_t secStoreAdmin_Next ( secStoreAdmin_IterRef_t  iterRef)

Go to the next entry in the iterator. This should be called at least once before accessing the entry. After the first time this function is called successfully on an iterator the first entry will be available.

Returns
LE_OK if successful. LE_NOT_FOUND if there are no more entries available.
Parameters
[in]iterRefIterator reference.
le_result_t secStoreAdmin_Read ( const char *  path,
uint8_t *  bufPtr,
size_t *  bufNumElementsPtr 
)

Reads an item from secure storage.

Note
The specified path must be an absolute path.
Returns
LE_OK if successful. LE_OVERFLOW if the buffer is too small to hold the entire item. No data will be written to the buffer in this case. LE_NOT_FOUND if the item doesn't exist. LE_UNAVAILABLE if the secure storage is currently unavailable. LE_FAULT if there was some other error.
Parameters
[in]pathPath of the secure storage item.
[out]bufPtrBuffer to store the data in.
[in,out]bufNumElementsPtr
le_result_t secStoreAdmin_TryConnectService ( void  )

Try to connect the current client thread to the service providing this API. Return with an error if the service is not available.

For each thread that wants to use this API, either ConnectService or TryConnectService must be called before any other functions in this API. Normally, ConnectService is automatically called for the main thread, but not for any other thread. For details, see Client-specific Functions.

This function is created automatically.

Returns
  • LE_OK if the client connected successfully to the service.
  • LE_UNAVAILABLE if the server is not currently offering the service to which the client is bound.
  • LE_NOT_PERMITTED if the client interface is not bound to any service (doesn't have a binding).
  • LE_COMM_ERROR if the Service Directory cannot be reached.
le_result_t secStoreAdmin_Write ( const char *  path,
const uint8_t *  bufPtr,
size_t  bufNumElements 
)

Writes a buffer of data into the specified path in secure storage. If the item already exists, it'll be overwritten with the new value. If the item doesn't already exist, it'll be created.

Note
The specified path must be an absolute path.
Returns
LE_OK if successful. LE_NO_MEMORY if there isn't enough memory to store the item. LE_UNAVAILABLE if the secure storage is currently unavailable. LE_FAULT if there was some other error.
Parameters
[in]pathPath of the secure storage item.
[in]bufPtrBuffer containing the data to store.
[in]bufNumElements