/*
 * Copyright (C) 2017 BlueKitchen GmbH
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the copyright holders nor the names of
 *    contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 * 4. Any redistribution, use, or modification is done solely for
 *    personal benefit and not for any commercial purpose or for
 *    monetary gain.
 *
 * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
 * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * Please inquire about commercial licensing options at 
 * contact@bluekitchen-gmbh.com
 *
 */

/*
 *  provisioning.h
 */

#ifndef __PROVISIONING_H
#define __PROVISIONING_H

#include <stdint.h>
#include "btstack_defines.h"
#include "btstack_crypto.h"

#ifdef __cplusplus
extern "C"
{
#endif

#define PROVISIONING_PROTOCOL_TIMEOUT_MS  60000
#define MESH_PROV_MAX_PROXY_PDU              66 
#define MESH_PB_TRANSPORT_INVALID_CID    0xFFFF

// Provisioning Bearer Control

#define MESH_PROV_INVITE            0x00
#define MESH_PROV_CAPABILITIES      0x01
#define MESH_PROV_START             0x02
#define MESH_PROV_PUB_KEY           0x03
#define MESH_PROV_INPUT_COMPLETE    0x04
#define MESH_PROV_CONFIRM           0x05
#define MESH_PROV_RANDOM            0x06
#define MESH_PROV_DATA              0x07
#define MESH_PROV_COMPLETE          0x08
#define MESH_PROV_FAILED            0x09

// Provisioning Output OOB Actions
#define MESH_OUTPUT_OOB_BLINK       0x01
#define MESH_OUTPUT_OOB_BEEP        0x02
#define MESH_OUTPUT_OOB_VIBRATE     0x04
#define MESH_OUTPUT_OOB_NUMBER      0x08
#define MESH_OUTPUT_OOB_STRING      0x10

// Provisioning Input OOB Actions
#define MESH_INPUT_OOB_PUSH         0x01
#define MESH_INPUT_OOB_TWIST        0x02
#define MESH_INPUT_OOB_NUMBER       0x04
#define MESH_INPUT_OOB_STRING       0x08

typedef enum {
    PB_TYPE_ADV = 0,
    PB_TYPE_GATT
} pb_type_t;

typedef enum {
    MESH_OOB_INFORMATION_INDEX_OTHER = 0,
    MESH_OOB_INFORMATION_INDEX_ELECTRONIC_OR_URI,
    MESH_OOB_INFORMATION_INDEX_2D_MACHINE_READABLE_CODE,
    MESH_OOB_INFORMATION_INDEX_BAR_CODE,
    MESH_OOB_INFORMATION_INDEX_NEAR_FIELD_COMMUNICATION,
    MESH_OOB_INFORMATION_INDEX_NUMBER,
    MESH_OOB_INFORMATION_INDEX_STRING,
    MESH_OOB_INFORMATION_INDEX_RESERVED_7,
    MESH_OOB_INFORMATION_INDEX_RESERVED_8,
    MESH_OOB_INFORMATION_INDEX_RESERVED_9,
    MESH_OOB_INFORMATION_INDEX_RESERVED_10,
    MESH_OOB_INFORMATION_INDEX_ON_BOX,
    MESH_OOB_INFORMATION_INDEX_INSIDE_BOX,
    MESH_OOB_INFORMATION_INDEX_ON_PIECE_OF_PAPER,
    MESH_OOB_INFORMATION_INDEX_INSIDE_MANUAL,
    MESH_OOB_INFORMATION_INDEX_ON_DEVICE
} mesh_oob_information_index_t;

typedef enum {
    MESH_MSG_SAR_FIELD_COMPLETE_MSG = 0,
    MESH_MSG_SAR_FIELD_FIRST_SEGMENT,
    MESH_MSG_SAR_FIELD_CONTINUE,
    MESH_MSG_SAR_FIELD_LAST_SEGMENT
} mesh_msg_sar_field_t; // Message segmentation and reassembly information

typedef enum {
    MESH_MSG_TYPE_NETWORK_PDU = 0,
    MESH_MSG_TYPE_BEACON,
    MESH_MSG_TYPE_PROXY_CONFIGURATION,
    MESH_MSG_TYPE_PROVISIONING_PDU
} mesh_msg_type_t;

typedef enum {
    MESH_IDENTIFICATION_NETWORK_ID_TYPE = 0,
    MESH_IDENTIFICATION_NODE_IDENTIFY_TYPE 
} mesh_identification_type_t;

typedef struct {
    uint8_t  device_key[16];
    uint8_t  flags;
    uint32_t iv_index;
    uint16_t unicast_address;

    // net_key and derived data
    uint8_t  net_key[16];
    // k1
    uint8_t  identity_key[16];
    uint8_t  beacon_key[16];
    // k2
    uint8_t  nid;
    uint8_t  encryption_key[16];
    uint8_t  privacy_key[16];
    // k3
    uint8_t  network_id[8];
} mesh_provisioning_data_t;

#ifdef __cplusplus
} /* end of extern "C" */
#endif

#endif