blob: 29a4b51bb8205bbe9041f5fb52d1dc74a05e264a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#ifndef _IMGMGR_H_
#define _IMGMGR_H_
#include <inttypes.h>
#ifdef __cplusplus
extern "C" {
#endif
#define IMGMGR_NMGR_ID_STATE 0
#define IMGMGR_NMGR_ID_UPLOAD 1
#define IMGMGR_NMGR_ID_FILE 2
#define IMGMGR_NMGR_ID_CORELIST 3
#define IMGMGR_NMGR_ID_CORELOAD 4
#define IMGMGR_NMGR_ID_ERASE 5
#define IMGMGR_NMGR_ID_ERASE_STATE 6
#define IMGMGR_NMGR_MAX_NAME 64
#define IMGMGR_NMGR_MAX_VER 25 /* 255.255.65535.4294967295\0 */
#define IMGMGR_HASH_LEN 32
#define IMGMGR_STATE_F_PENDING 0x01
#define IMGMGR_STATE_F_CONFIRMED 0x02
#define IMGMGR_STATE_F_ACTIVE 0x04
#define IMGMGR_STATE_F_PERMANENT 0x08
/** @typedef imgr_upload_fn
* @brief Application callback that is executed when an image upload request is
* received.
*
* The callback's return code determines whether the upload request is accepted
* or rejected. If the callback returns 0, processing of the upload request
* proceeds. If the callback returns nonzero, the request is rejected with a
* response containing an `rc` value equal to the return code.
*
* @param offset The offset specified by the incoming request.
* @param size The total size of the image being uploaded.
* @param arg Optional argument specified when the callback
* was configured.
*
* @return 0 if the upload request should be accepted;
* nonzero to reject the request with the
* specified status.
*/
typedef int imgr_upload_fn(uint32_t offset, uint32_t size, void *arg);
extern int boot_current_slot;
void imgmgr_module_init(void);
struct image_version;
/*
* Parse version string in src, and fill in ver.
*/
int imgr_ver_parse(char *src, struct image_version *ver);
/*
* Take version and convert it to string in dst.
*/
int imgr_ver_str(struct image_version *ver, char *dst);
/*
* Given flash_map slot id, read in image_version and/or image hash.
*/
int imgr_read_info(int area_id, struct image_version *ver, uint8_t *hash, uint32_t *flags);
/*
* Returns version number of current image (if available).
*/
int imgr_my_version(struct image_version *ver);
/**
* @brief Configures a callback that gets called whenever a valid image upload
* request is received.
*
* The callback's return code determines whether the upload request is accepted
* or rejected. If the callback returns 0, processing of the upload request
* proceeds. If the callback returns nonzero, the request is rejected with a
* response containing an `rc` value equal to the return code.
*
* @param cb The callback to execute on rx of an upload
* request.
* @param arg Optional argument that gets passed to the
* callback.
*/
void imgr_set_upload_cb(imgr_upload_fn *cb, void *arg);
uint8_t imgmgr_state_flags(int query_slot);
int imgmgr_state_slot_in_use(int slot);
int imgmgr_state_set_pending(int slot, int permanent);
int imgmgr_state_confirm(void);
int imgmgr_find_best_area_id(void);
#ifdef __cplusplus
}
#endif
#endif /* _IMGMGR_H */