main.c 13.2 KB
Newer Older
Sebastian Renner committed
1 2
/* USER CODE BEGIN Header */
/**
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 ******************************************************************************
 * @file           : main.c
 * @brief          : Main program body
 ******************************************************************************
 ** This notice applies to any and all portions of this file
 * that are not between comment pairs USER CODE BEGIN and
 * USER CODE END. Other portions of this file, whether 
 * inserted by the user or by software development tools
 * are owned by their respective copyright owners.
 *
 * COPYRIGHT(c) 2019 STMicroelectronics
 *
 * 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 STMicroelectronics nor the names of its contributors
 *      may be used to endorse or promote products derived from this software
 *      without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT HOLDER 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.
 *
 ******************************************************************************
 */
Sebastian Renner committed
39 40 41 42
/* USER CODE END Header */

/* Includes ------------------------------------------------------------------*/
#include "main.h"
43 44 45 46
#include <stdint.h>
#include "crypto_aead.h"
#include "api.h"

47
#define DEBUG 
48
#define MAX_LEN 1400
49 50 51 52 53 54

#ifdef DEBUG
  #include "SEGGER_RTT.h"
  #include "SEGGER_RTT_Conf.h"
  #define dbg_printf(...) SEGGER_RTT_printf(0, __VA_ARGS__)
#endif
55

56
unsigned char c[MAX_LEN];
57
unsigned long long clen = 0;
58
unsigned char m[MAX_LEN];
59
unsigned long long mlen = 0;
60
unsigned char ad[MAX_LEN];
61
unsigned long long adlen = 0;
Sebastian Renner committed
62
unsigned char text[2] = "OK";
63

64 65 66 67 68 69
unsigned char nsec[CRYPTO_NSECBYTES];
const unsigned long long nslen = CRYPTO_NSECBYTES;
unsigned char npub[CRYPTO_NPUBBYTES];
const unsigned long long nplen = CRYPTO_NPUBBYTES;
unsigned char k[CRYPTO_KEYBYTES];
const unsigned long long klen = CRYPTO_KEYBYTES;
Sebastian Renner committed
70 71 72 73 74

/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
static void MX_GPIO_Init(void);
static void MX_USART1_UART_Init(void);
75
static void read_variable_serial(unsigned char action);
76
static void write_variable_serial(unsigned char target[], uint32_t len);
Sebastian Renner committed
77

78 79
static void read_serial(void *dst, unsigned int len) {
	unsigned char *buf = dst;
80
  #ifdef DEBUG
81
  dbg_printf("Reading %d serial bytes\n", len);
82
  #endif
83
	for (int i = 0; i < len; i++) {
84
		while (!LL_USART_IsActiveFlag_RXNE(USART1));
85 86
		buf[i] = LL_USART_ReceiveData8(USART1);
	}
87
  #ifdef DEBUG
88
  dbg_printf("done.\n", len);
89
  #endif
90 91 92 93 94
}

static void write_serial(const void *src, unsigned int len) {
	const unsigned char *buf = src;
	for (int i = 0; i < len; i++) {
95
    #ifdef DEBUG
96
    dbg_printf("Write to serial: %02x\n", buf[i]);
97
    #endif
Sebastian Renner committed
98
    while (!(LL_USART_IsActiveFlag_TXE(USART1)));
99
		LL_USART_TransmitData8(USART1, buf[i]);
100
    #ifdef DEBUG
101
    dbg_printf("Done writing!\n");
102
    #endif
103 104 105 106 107
	}
}

static void read_variable_serial(unsigned char action) {
	uint32_t len;
108
  #ifdef DEBUG
109
  dbg_printf("Let's read our variable: %c\n", action);
110 111 112
  #endif
  read_serial(&len, sizeof(len));
  #ifdef DEBUG
113
  dbg_printf("with length %lu \n", len);
114 115
  #endif 
  switch(action) {
116 117 118 119 120
		case 'k':
			while (len != CRYPTO_KEYBYTES);
			read_serial(k, len);
			break;
		case 'p':
121 122 123 124 125 126
			if (len != CRYPTO_NPUBBYTES) { 
        #ifdef DEBUG 
        dbg_printf("Assert failed %d != %d\n", len, CRYPTO_NPUBBYTES);
        #endif
        for(;;); 
      }
127
			read_serial(npub, len);
128 129 130
			break;
		case 's':
			while (len != CRYPTO_NSECBYTES);
131
			read_serial(nsec, len);
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
			break;
		case 'a':
			while (len > MAX_LEN);
			adlen = len;
			read_serial(ad, len);
			break;
		case 'm':
			while (len > MAX_LEN);
			mlen = len;
			read_serial(m, len);
			break;
		case 'c':
			while (len > MAX_LEN);
			clen = len;
			read_serial(c, len);
			break;
		default: 
			for (;;);
	}
}

153
static void write_variable_serial(unsigned char target[], uint32_t len) {
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
	write_serial(&len, sizeof(len));
	write_serial(target, len);
}


int main(void)
{
	/* USER CODE BEGIN 1 */

	/* USER CODE END 1 */

	/* MCU Configuration--------------------------------------------------------*/

	/* Reset of all peripherals, Initializes the Flash interface and the Systick. */


	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_AFIO);
	LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR);

	NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);

	/* System interrupt init*/

	/**NOJTAG: JTAG-DP Disabled and SW-DP Enabled 
	*/
	LL_GPIO_AF_Remap_SWJ_NOJTAG();

	/* USER CODE BEGIN Init */

	/* USER CODE END Init */

	/* Configure the system clock */
	SystemClock_Config();

	/* USER CODE BEGIN SysInit */
Sebastian Renner committed
189
  SEGGER_RTT_Init();
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
	/* USER CODE END SysInit */

	/* Initialize all configured peripherals */
	MX_GPIO_Init();
	MX_USART1_UART_Init();
	/* USER CODE BEGIN 2 */

	/* USER CODE END 2 */

	/* Infinite loop */
	/* USER CODE BEGIN WHILE */
	unsigned char rcv;
	int res;

	while (1) {
205
		read_serial(&rcv, 1);
206
    #ifdef DEBUG
207
    dbg_printf("Received action: %c\n", rcv);
208
    #endif
Sebastian Renner committed
209
    switch (rcv) {
210 211 212 213 214 215 216 217 218
			case 'c': 
			case 'm': 
			case 'a': 
			case 'k': 
			case 's': 
			case 'p':
				read_variable_serial(rcv);
				break;

Sebastian Renner committed
219
			case 'C': write_variable_serial(c, clen); break;
220 221 222 223 224 225 226
			case 'M': write_variable_serial(m, mlen); break;
			case 'A': write_variable_serial(ad, adlen); break;
			case 'K': write_variable_serial(k, klen); break;
			case 'S': write_variable_serial(nsec, nslen); break;
			case 'P': write_variable_serial(npub, nplen); break;

			case 'e':
227
        #ifdef DEBUG
228 229 230 231
        dbg_printf("m: "); for (int i = 0; i < mlen; i++) dbg_printf("%02x", m[i]); dbg_printf("\n");
        dbg_printf("a: "); for (int i = 0; i < adlen; i++) dbg_printf("%02x", ad[i]); dbg_printf("\n");
        dbg_printf("p: "); for (int i = 0; i < nplen; i++) dbg_printf("%02x", npub[i]); dbg_printf("\n");
        dbg_printf("k: "); for (int i = 0; i < klen; i++) dbg_printf("%02x", k[i]); dbg_printf("\n");
232 233
        #endif
        LL_GPIO_TogglePin(GPIOB, LL_GPIO_PIN_12);
Sebastian Renner committed
234
        res = crypto_aead_encrypt(c, &clen, m, mlen, ad, adlen, nsec, npub, k);
235
        LL_GPIO_TogglePin(GPIOB, LL_GPIO_PIN_12);
236
				break;
237 238 239 240 241 242 243 244 245 246 247 248 249
      
      case 'd':
        #ifdef DEBUG
        dbg_printf("m: "); for (int i = 0; i < mlen; i++) dbg_printf("%02x", m[i]); dbg_printf("\n");
        dbg_printf("a: "); for (int i = 0; i < adlen; i++) dbg_printf("%02x", ad[i]); dbg_printf("\n");
        dbg_printf("p: "); for (int i = 0; i < nplen; i++) dbg_printf("%02x", npub[i]); dbg_printf("\n");
        dbg_printf("k: "); for (int i = 0; i < klen; i++) dbg_printf("%02x", k[i]); dbg_printf("\n");
        #endif

        LL_GPIO_TogglePin(GPIOB, LL_GPIO_PIN_12);
        res = crypto_aead_decrypt(m, &mlen, nsec, c, clen, ad, adlen, npub, k);
        LL_GPIO_TogglePin(GPIOB, LL_GPIO_PIN_12);
        break;
250

Sebastian Renner committed
251
      default:
252
        continue;
253

254 255 256 257
		}
		/* USER CODE END WHILE */
	}
}
Sebastian Renner committed
258

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
/**
 * @brief System Clock Configuration
 * @retval None
 */
void SystemClock_Config(void)
{
	LL_FLASH_SetLatency(LL_FLASH_LATENCY_1);

	if(LL_FLASH_GetLatency() != LL_FLASH_LATENCY_1)
	{
		Error_Handler();  
	}
	LL_RCC_HSI_SetCalibTrimming(16);
	LL_RCC_HSI_Enable();

	/* Wait till HSI is ready */
	while(LL_RCC_HSI_IsReady() != 1)
	{

	}
	LL_RCC_PLL_ConfigDomain_SYS(LL_RCC_PLLSOURCE_HSI_DIV_2, LL_RCC_PLL_MUL_12);
	LL_RCC_PLL_Enable();

	/* Wait till PLL is ready */
	while(LL_RCC_PLL_IsReady() != 1)
	{

	}
	LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_1);
	LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_2);
	LL_RCC_SetAPB2Prescaler(LL_RCC_APB2_DIV_1);
	LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_PLL);

	/* Wait till System clock is ready */
	while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_PLL)
	{

	}
	LL_Init1msTick(48000000);
	LL_SYSTICK_SetClkSource(LL_SYSTICK_CLKSOURCE_HCLK);
	LL_SetSystemCoreClock(48000000);
}
Sebastian Renner committed
301

302 303 304 305 306 307 308
/**
 * @brief USART1 Initialization Function
 * @param None
 * @retval None
 */
static void MX_USART1_UART_Init(void)
{
Sebastian Renner committed
309

310
	/* USER CODE BEGIN USART1_Init 0 */
Sebastian Renner committed
311

312
	/* USER CODE END USART1_Init 0 */
Sebastian Renner committed
313

314
	LL_USART_InitTypeDef USART_InitStruct = {0};
Sebastian Renner committed
315

316
	LL_GPIO_InitTypeDef GPIO_InitStruct = {0};
Sebastian Renner committed
317

318 319
	/* Peripheral clock enable */
	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_USART1);
Sebastian Renner committed
320

321 322 323 324 325 326 327 328 329 330
	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_GPIOA);
	/**USART1 GPIO Configuration  
	  PA9   ------> USART1_TX
	  PA10   ------> USART1_RX 
	  */
	GPIO_InitStruct.Pin = LL_GPIO_PIN_9;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE;
	GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
	GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
	LL_GPIO_Init(GPIOA, &GPIO_InitStruct);
Sebastian Renner committed
331

332 333 334
	GPIO_InitStruct.Pin = LL_GPIO_PIN_10;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_FLOATING;
	LL_GPIO_Init(GPIOA, &GPIO_InitStruct);
Sebastian Renner committed
335

336
	/* USER CODE BEGIN USART1_Init 1 */
Sebastian Renner committed
337

338 339 340 341 342 343 344 345 346 347 348
	/* USER CODE END USART1_Init 1 */
	USART_InitStruct.BaudRate = 115200;
	USART_InitStruct.DataWidth = LL_USART_DATAWIDTH_8B;
	USART_InitStruct.StopBits = LL_USART_STOPBITS_1;
	USART_InitStruct.Parity = LL_USART_PARITY_NONE;
	USART_InitStruct.TransferDirection = LL_USART_DIRECTION_TX_RX;
	USART_InitStruct.HardwareFlowControl = LL_USART_HWCONTROL_NONE;
	LL_USART_Init(USART1, &USART_InitStruct);
	LL_USART_ConfigAsyncMode(USART1);
	LL_USART_Enable(USART1);
	/* USER CODE BEGIN USART1_Init 2 */
Sebastian Renner committed
349

350
	/* USER CODE END USART1_Init 2 */
Sebastian Renner committed
351

352
}
Sebastian Renner committed
353

354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
/**
 * @brief GPIO Initialization Function
 * @param None
 * @retval None
 */
static void MX_GPIO_Init(void)
{
	LL_GPIO_InitTypeDef GPIO_InitStruct = {0};

	/* GPIO Ports Clock Enable */
	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_GPIOC);
	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_GPIOD);
	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_GPIOA);
	LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_GPIOB);

	/**/
	LL_GPIO_ResetOutputPin(GPIOB, LL_GPIO_PIN_12);

	/**/
	GPIO_InitStruct.Pin = LL_GPIO_PIN_13|LL_GPIO_PIN_14|LL_GPIO_PIN_15;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_ANALOG;
	LL_GPIO_Init(GPIOC, &GPIO_InitStruct);

	/**/
	GPIO_InitStruct.Pin = LL_GPIO_PIN_0|LL_GPIO_PIN_1;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_ANALOG;
	LL_GPIO_Init(GPIOD, &GPIO_InitStruct);

	/**/
	GPIO_InitStruct.Pin = LL_GPIO_PIN_0|LL_GPIO_PIN_1|LL_GPIO_PIN_2|LL_GPIO_PIN_3 
		|LL_GPIO_PIN_4|LL_GPIO_PIN_5|LL_GPIO_PIN_6|LL_GPIO_PIN_7 
		|LL_GPIO_PIN_8|LL_GPIO_PIN_11|LL_GPIO_PIN_12|LL_GPIO_PIN_15;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_ANALOG;
	LL_GPIO_Init(GPIOA, &GPIO_InitStruct);

	/**/
	GPIO_InitStruct.Pin = LL_GPIO_PIN_0|LL_GPIO_PIN_1|LL_GPIO_PIN_2|LL_GPIO_PIN_10 
		|LL_GPIO_PIN_11|LL_GPIO_PIN_13|LL_GPIO_PIN_14|LL_GPIO_PIN_15 
		|LL_GPIO_PIN_3|LL_GPIO_PIN_4|LL_GPIO_PIN_5|LL_GPIO_PIN_6 
		|LL_GPIO_PIN_7|LL_GPIO_PIN_8|LL_GPIO_PIN_9;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_ANALOG;
	LL_GPIO_Init(GPIOB, &GPIO_InitStruct);

	/**/
	GPIO_InitStruct.Pin = LL_GPIO_PIN_12;
	GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
	GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW;
	GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
	LL_GPIO_Init(GPIOB, &GPIO_InitStruct);

	/**/
	LL_GPIO_AF_EnableRemap_PD01();

}

/* USER CODE BEGIN 4 */

/* USER CODE END 4 */
Sebastian Renner committed
412

413 414 415 416 417 418 419 420
/**
 * @brief  This function is executed in case of error occurrence.
 * @retval None
 */
void Error_Handler(void)
{
	/* USER CODE BEGIN Error_Handler_Debug */
	/* User can add his own implementation to report the HAL error return state */
Sebastian Renner committed
421

422 423
	/* USER CODE END Error_Handler_Debug */
}
Sebastian Renner committed
424 425

#ifdef  USE_FULL_ASSERT
426 427 428 429 430 431 432 433 434 435 436
/**
 * @brief  Reports the name of the source file and the source line number
 *         where the assert_param error has occurred.
 * @param  file: pointer to the source file name
 * @param  line: assert_param error line source number
 * @retval None
 */
void assert_failed(uint8_t *file, uint32_t line)
{ 
	/* USER CODE BEGIN 6 */
	/* User can add his own implementation to report the file name and line number,
437
tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
438 439
	/* USER CODE END 6 */
}
Sebastian Renner committed
440 441
#endif /* USE_FULL_ASSERT */

442
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/