| 
									
										
										
										
											2018-10-29 20:10:40 -07:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Solana C-based BPF program utility functions and types | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-29 20:12:04 -07:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-11 09:54:27 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Pick up static_assert if C11 or greater | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Inlined here until <assert.h> is available | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #if (defined _ISOC11_SOURCE || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L)) && !defined (__cplusplus)
 | 
					
						
							|  |  |  | #undef static_assert
 | 
					
						
							|  |  |  | #define static_assert _Static_assert
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2018-10-29 20:10:40 -07:00
										 |  |  |  * Numeric types | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-10-31 20:28:24 -07:00
										 |  |  | #ifndef __LP64__
 | 
					
						
							|  |  |  | #error LP64 data model required
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | typedef signed char int8_t; | 
					
						
							|  |  |  | typedef unsigned char uint8_t; | 
					
						
							| 
									
										
										
										
											2018-10-31 20:28:24 -07:00
										 |  |  | typedef signed short int16_t; | 
					
						
							|  |  |  | typedef unsigned short uint16_t; | 
					
						
							|  |  |  | typedef signed int int32_t; | 
					
						
							|  |  |  | typedef unsigned int uint32_t; | 
					
						
							|  |  |  | typedef signed long int int64_t; | 
					
						
							|  |  |  | typedef unsigned long int uint64_t; | 
					
						
							| 
									
										
										
										
											2018-11-13 12:39:59 -08:00
										 |  |  | typedef int64_t ssize_t; | 
					
						
							|  |  |  | typedef uint64_t size_t; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-11 09:54:27 -08:00
										 |  |  | #if defined (__cplusplus) || defined(static_assert)
 | 
					
						
							|  |  |  | static_assert(sizeof(int8_t) == 1); | 
					
						
							|  |  |  | static_assert(sizeof(uint8_t) == 1); | 
					
						
							|  |  |  | static_assert(sizeof(int16_t) == 2); | 
					
						
							|  |  |  | static_assert(sizeof(uint16_t) == 2); | 
					
						
							|  |  |  | static_assert(sizeof(int32_t) == 4); | 
					
						
							|  |  |  | static_assert(sizeof(uint32_t) == 4); | 
					
						
							|  |  |  | static_assert(sizeof(int64_t) == 8); | 
					
						
							|  |  |  | static_assert(sizeof(uint64_t) == 8); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * NULL | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define NULL 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Boolean type | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-25 16:58:32 -08:00
										 |  |  | #ifndef __cplusplus
 | 
					
						
							|  |  |  | #include <stdbool.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-11 09:54:27 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |  * Helper function that prints a string to stdout | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-26 12:58:14 -08:00
										 |  |  | void sol_log(const char *); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |  * Helper function that prints a 64 bit values represented in hexadecimal | 
					
						
							|  |  |  |  * to stdout | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-26 12:58:14 -08:00
										 |  |  | void sol_log_64(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Prefix for all BPF functions | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This prefix should be used for functions in order to facilitate | 
					
						
							| 
									
										
										
										
											2018-10-29 20:10:40 -07:00
										 |  |  |  * interoperability with BPF representation | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | #define SOL_FN_PREFIX __attribute__((always_inline)) static
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Size of Public key in bytes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define SIZE_PUBKEY 32
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Public key | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |   uint8_t x[SIZE_PUBKEY]; | 
					
						
							|  |  |  | } SolPubkey; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Compares two public keys | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param one First public key | 
					
						
							|  |  |  |  * @param two Second public key | 
					
						
							| 
									
										
										
										
											2018-10-29 20:10:40 -07:00
										 |  |  |  * @return true if the same | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-10-29 19:56:24 -07:00
										 |  |  | SOL_FN_PREFIX bool SolPubkey_same(const SolPubkey *one, const SolPubkey *two) { | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |   for (int i = 0; i < sizeof(*one); i++) { | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |     if (one->x[i] != two->x[i]) { | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  |  * Keyed Account | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2018-11-29 12:32:16 -08:00
										 |  |  |   SolPubkey *key;        /** Public key of the account */ | 
					
						
							|  |  |  |   bool is_signer;        /** Transaction was signed by this account's key */ | 
					
						
							|  |  |  |   uint64_t *tokens;      /** Number of tokens owned by this account */ | 
					
						
							|  |  |  |   uint64_t userdata_len; /** Length of data in bytes */ | 
					
						
							|  |  |  |   uint8_t *userdata;     /** On-chain data within this account */ | 
					
						
							|  |  |  |   SolPubkey *owner;      /** Program that owns this account */ | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  | } SolKeyedAccount; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Copies memory | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-10-29 19:56:24 -07:00
										 |  |  | SOL_FN_PREFIX void sol_memcpy(void *dst, const void *src, int len) { | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   for (int i = 0; i < len; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-29 19:56:24 -07:00
										 |  |  |     *((uint8_t *)dst + i) = *((const uint8_t *)src + i); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Compares memory | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | SOL_FN_PREFIX int sol_memcmp(const void *s1, const void *s2, int n) { | 
					
						
							|  |  |  |   for (int i = 0; i < n; i++) { | 
					
						
							|  |  |  |     uint8_t diff = *((uint8_t *)s1 + i) - *((const uint8_t *)s2 + i); | 
					
						
							|  |  |  |     if (diff) { | 
					
						
							|  |  |  |       return diff; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 12:39:59 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Fill a byte string with a byte value | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | SOL_FN_PREFIX void *sol_memset(void *b, int c, size_t len) { | 
					
						
							|  |  |  |   uint8_t *a = (uint8_t *) b; | 
					
						
							|  |  |  |   while (len > 0) { | 
					
						
							|  |  |  |     *a = c; | 
					
						
							|  |  |  |     a++; | 
					
						
							|  |  |  |     len--; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Find length of string | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | SOL_FN_PREFIX size_t sol_strlen(const char *s) { | 
					
						
							|  |  |  |   size_t len = 0; | 
					
						
							|  |  |  |   while (*s) { | 
					
						
							|  |  |  |     len++; | 
					
						
							|  |  |  |     s++; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Computes the number of elements in an array | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define SOL_ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Panics | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Prints the line number where the panic occurred and then causes | 
					
						
							|  |  |  |  * the BPF VM to immediately halt execution. No accounts' userdata are updated | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define sol_panic() _sol_panic(__LINE__)
 | 
					
						
							|  |  |  | SOL_FN_PREFIX void _sol_panic(uint64_t line) { | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |   sol_log_64(0xFF, 0xFF, 0xFF, 0xFF, line); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   uint8_t *pv = (uint8_t *)1; | 
					
						
							|  |  |  |   *pv = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Asserts | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define sol_assert(expr)  \
 | 
					
						
							|  |  |  |   if (!(expr)) {          \ | 
					
						
							|  |  |  |     _sol_panic(__LINE__); \ | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 19:54:41 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Information about the state of the cluster immediately before the program | 
					
						
							|  |  |  |  * started executing the current instruction | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |   uint64_t tick_height; /** Current ledger tick */ | 
					
						
							| 
									
										
										
										
											2018-11-17 17:02:14 -08:00
										 |  |  |   const SolPubkey *program_id; /** program_id of the currently executing program */ | 
					
						
							| 
									
										
										
										
											2018-11-13 19:54:41 -08:00
										 |  |  | } SolClusterInfo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * De-serializes the input parameters into usable types | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use this function to deserialize the buffer passed to the program entrypoint | 
					
						
							|  |  |  |  * into usable types.  This function does not perform copy deserialization, | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  |  * instead it populates the pointers and lengths in SolKeyedAccount and data so | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  * that any modification to tokens or account data take place on the original | 
					
						
							|  |  |  |  * buffer.  Doing so also eliminates the need to serialize back into the buffer | 
					
						
							|  |  |  |  * at program end. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param input Source buffer containing serialized input parameters | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  |  * @param ka Pointer to an array of SolKeyedAccount to deserialize into | 
					
						
							|  |  |  |  * @param ka_len Number of SolKeyedAccount entries in `ka` | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |  * @param ka_len_out If NULL, fill exactly `ka_len` accounts or fail. | 
					
						
							|  |  |  |  *                   If not NULL, fill up to `ka_len` accounts and return the | 
					
						
							|  |  |  |  *                   number of filled accounts in `ka_len_out`. | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  * @param data On return, a pointer to the instruction data | 
					
						
							|  |  |  |  * @param data_len On return, the length in bytes of the instruction data | 
					
						
							| 
									
										
										
										
											2018-11-13 19:54:41 -08:00
										 |  |  |  * @param cluster_info If not NULL, fill cluster_info | 
					
						
							| 
									
										
										
										
											2018-10-29 20:10:40 -07:00
										 |  |  |  * @return Boolean true if successful | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-10-29 20:02:10 -07:00
										 |  |  | SOL_FN_PREFIX bool sol_deserialize( | 
					
						
							|  |  |  |   const uint8_t *input, | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  |   SolKeyedAccount *ka, | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |   uint64_t ka_len, | 
					
						
							|  |  |  |   uint64_t *ka_len_out, | 
					
						
							| 
									
										
										
										
											2018-10-30 22:52:59 -07:00
										 |  |  |   const uint8_t **data, | 
					
						
							| 
									
										
										
										
											2018-11-13 19:54:41 -08:00
										 |  |  |   uint64_t *data_len, | 
					
						
							|  |  |  |   SolClusterInfo *cluster_info | 
					
						
							| 
									
										
										
										
											2018-10-29 20:02:10 -07:00
										 |  |  | ) { | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |   if (ka_len_out == NULL) { | 
					
						
							|  |  |  |     if (ka_len != *(uint64_t *) input) { | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ka_len = *(uint64_t *) input; | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     if (ka_len > *(uint64_t *) input) { | 
					
						
							|  |  |  |       ka_len = *(uint64_t *) input; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     *ka_len_out = ka_len; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |   input += sizeof(uint64_t); | 
					
						
							|  |  |  |   for (int i = 0; i < ka_len; i++) { | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |     // key
 | 
					
						
							| 
									
										
										
										
											2018-11-29 12:32:16 -08:00
										 |  |  |     ka[i].is_signer = *(uint64_t *) input != 0; | 
					
						
							|  |  |  |     input += sizeof(uint64_t); | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |     ka[i].key = (SolPubkey *) input; | 
					
						
							|  |  |  |     input += sizeof(SolPubkey); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // tokens
 | 
					
						
							| 
									
										
										
										
											2018-11-27 09:55:19 -08:00
										 |  |  |     ka[i].tokens = (uint64_t *) input; | 
					
						
							|  |  |  |     input += sizeof(uint64_t); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // account userdata
 | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |     ka[i].userdata_len = *(uint64_t *) input; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |     input += sizeof(uint64_t); | 
					
						
							| 
									
										
										
										
											2018-11-11 09:54:27 -08:00
										 |  |  |     ka[i].userdata = (uint8_t *) input; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |     input += ka[i].userdata_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-18 16:01:45 -08:00
										 |  |  |     // owner
 | 
					
						
							|  |  |  |     ka[i].owner = (SolPubkey *) input; | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |     input += sizeof(SolPubkey); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // input data
 | 
					
						
							|  |  |  |   *data_len = *(uint64_t *) input; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   input += sizeof(uint64_t); | 
					
						
							|  |  |  |   *data = input; | 
					
						
							| 
									
										
										
										
											2018-11-17 10:30:21 -08:00
										 |  |  |   input += *data_len; | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 19:54:41 -08:00
										 |  |  |   if (cluster_info != NULL) { | 
					
						
							|  |  |  |     cluster_info->tick_height = *(uint64_t *) input; | 
					
						
							| 
									
										
										
										
											2018-11-17 17:02:14 -08:00
										 |  |  |     input += sizeof(uint64_t); | 
					
						
							|  |  |  |     cluster_info->program_id = (SolPubkey *) input; | 
					
						
							|  |  |  |     input += sizeof(SolPubkey); | 
					
						
							| 
									
										
										
										
											2018-11-13 19:54:41 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Debugging utilities | 
					
						
							|  |  |  |  * @{ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Prints the hexadecimal representation of a public key | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param key The public key to print | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  | SOL_FN_PREFIX void sol_log_key(const SolPubkey *key) { | 
					
						
							| 
									
										
										
										
											2018-10-31 23:11:22 -07:00
										 |  |  |   for (int j = 0; j < sizeof(*key); j++) { | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |     sol_log_64(0, 0, 0, j, key->x[j]); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Prints the hexadecimal representation of an array | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param array The array to print | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  | SOL_FN_PREFIX void sol_log_array(const uint8_t *array, int len) { | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   for (int j = 0; j < len; j++) { | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |     sol_log_64(0, 0, 0, j, array[j]); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Prints the hexadecimal representation of the program's input parameters | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  |  * @param ka A pointer to an array of SolKeyedAccount to print | 
					
						
							|  |  |  |  * @param ka_len Number of SolKeyedAccount to print | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  * @param data A pointer to the instruction data to print | 
					
						
							|  |  |  |  * @param data_len The length in bytes of the instruction data | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  | SOL_FN_PREFIX void sol_log_params( | 
					
						
							| 
									
										
										
										
											2018-11-27 15:15:56 -08:00
										 |  |  |   const SolKeyedAccount *ka, | 
					
						
							| 
									
										
										
										
											2018-11-11 09:54:27 -08:00
										 |  |  |   uint64_t ka_len, | 
					
						
							| 
									
										
										
										
											2018-10-29 20:02:10 -07:00
										 |  |  |   const uint8_t *data, | 
					
						
							|  |  |  |   uint64_t data_len | 
					
						
							|  |  |  | ) { | 
					
						
							| 
									
										
										
										
											2018-11-11 09:54:27 -08:00
										 |  |  |   sol_log_64(0, 0, 0, 0, ka_len); | 
					
						
							|  |  |  |   for (int i = 0; i < ka_len; i++) { | 
					
						
							| 
									
										
										
										
											2018-11-29 12:32:16 -08:00
										 |  |  |     sol_log_64(0, 0, 0, 0, ka[i].is_signer); | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |     sol_log_key(ka[i].key); | 
					
						
							|  |  |  |     sol_log_64(0, 0, 0, 0, *ka[i].tokens); | 
					
						
							|  |  |  |     sol_log_array(ka[i].userdata, ka[i].userdata_len); | 
					
						
							| 
									
										
										
										
											2018-11-18 16:01:45 -08:00
										 |  |  |     sol_log_key(ka[i].owner); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-11-06 14:28:46 -08:00
										 |  |  |   sol_log_array(data, data_len); | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**@}*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2018-11-14 10:39:22 -08:00
										 |  |  |  * Program instruction entrypoint | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-11-14 10:39:22 -08:00
										 |  |  |  * @param input Buffer of serialized input parameters.  Use sol_deserialize() to decode | 
					
						
							|  |  |  |  * @return true if the instruction executed successfully | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-11-26 12:58:14 -08:00
										 |  |  | bool entrypoint(const uint8_t *input); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef SOL_TEST
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Stub log functions when building tests | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | void sol_log(const char *s) { | 
					
						
							|  |  |  |   printf("sol_log: %s\n", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | void sol_log_64(uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4, uint64_t arg5) { | 
					
						
							|  |  |  |   printf("sol_log_64: %llu, %llu, %llu, %llu, %llu\n", arg1, arg2, arg3, arg4, arg5); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-29 20:12:04 -07:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 19:38:07 -07:00
										 |  |  | /**@}*/ |