cairo_native_runtime/lib.rs
1 2 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
#![allow(non_snake_case)]
use cairo_lang_sierra_gas::core_libfunc_cost::{
DICT_SQUASH_REPEATED_ACCESS_COST, DICT_SQUASH_UNIQUE_KEY_COST,
};
use lazy_static::lazy_static;
use rand::Rng;
use starknet_curve::curve_params::BETA;
use starknet_types_core::{
curve::{AffinePoint, ProjectivePoint},
felt::Felt,
hash::StarkHash,
};
use std::ops::Mul;
use std::{collections::HashMap, fs::File, io::Write, os::fd::FromRawFd, ptr::NonNull, slice};
lazy_static! {
pub static ref HALF_PRIME: Felt = Felt::from_dec_str(
"1809251394333065606848661391547535052811553607665798349986546028067936010240"
)
.unwrap();
pub static ref DICT_GAS_REFUND_PER_ACCESS: u64 =
(DICT_SQUASH_UNIQUE_KEY_COST.cost() - DICT_SQUASH_REPEATED_ACCESS_COST.cost()) as u64;
}
/// Based on `cairo-lang-runner`'s implementation.
///
/// Source: <https://github.com/starkware-libs/cairo/blob/main/crates/cairo-lang-runner/src/casm_run/mod.rs#L1946-L1948>
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__debug__print(
target_fd: i32,
data: *const [u8; 32],
len: u32,
) -> i32 {
let mut target = File::from_raw_fd(target_fd);
for i in 0..len as usize {
let data = *data.add(i);
let value = Felt::from_bytes_le(&data);
if write!(target, "[DEBUG]\t{value:x}",).is_err() {
return 1;
};
if data[..32]
.iter()
.copied()
.all(|ch| ch == 0 || ch.is_ascii_graphic() || ch.is_ascii_whitespace())
{
let mut buf = [0; 31];
let mut len = 31;
for &ch in data.iter().take(31) {
if ch != 0 {
len -= 1;
buf[len] = ch;
}
}
if write!(
target,
" ('{}')",
std::str::from_utf8_unchecked(&buf[len..])
)
.is_err()
{
return 1;
}
}
if writeln!(target).is_err() {
return 1;
};
}
// Avoid closing `stdout`.
std::mem::forget(target);
0
}
/// Compute `pedersen(lhs, rhs)` and store it into `dst`.
///
/// All its operands need the values in big endian.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__pedersen(
dst: *mut u8,
lhs: *const u8,
rhs: *const u8,
) {
// Extract arrays from the pointers.
let dst = slice::from_raw_parts_mut(dst, 32);
let lhs = slice::from_raw_parts(lhs, 32);
let rhs = slice::from_raw_parts(rhs, 32);
// Convert to FieldElement.
let lhs = Felt::from_bytes_le_slice(lhs);
let rhs = Felt::from_bytes_le_slice(rhs);
// Compute pedersen hash and copy the result into `dst`.
let res = starknet_types_core::hash::Pedersen::hash(&lhs, &rhs);
dst.copy_from_slice(&res.to_bytes_le());
}
/// Compute `hades_permutation(op0, op1, op2)` and replace the operands with the results.
///
/// All operands need the values in big endian.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__hades_permutation(
op0: *mut u8,
op1: *mut u8,
op2: *mut u8,
) {
// Extract arrays from the pointers.
let op0 = slice::from_raw_parts_mut(op0, 32);
let op1 = slice::from_raw_parts_mut(op1, 32);
let op2 = slice::from_raw_parts_mut(op2, 32);
// Convert to FieldElement.
let mut state = [
Felt::from_bytes_le_slice(op0),
Felt::from_bytes_le_slice(op1),
Felt::from_bytes_le_slice(op2),
];
// Compute Poseidon permutation.
starknet_types_core::hash::Poseidon::hades_permutation(&mut state);
// Write back the results.
op0.copy_from_slice(&state[0].to_bytes_le());
op1.copy_from_slice(&state[1].to_bytes_le());
op2.copy_from_slice(&state[2].to_bytes_le());
}
/// Felt252 type used in cairo native runtime
pub type FeltDict = (HashMap<[u8; 32], NonNull<std::ffi::c_void>>, u64);
/// Allocates a new dictionary. Internally a rust hashmap: `HashMap<[u8; 32], NonNull<()>`
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__alloc_dict() -> *mut std::ffi::c_void {
Box::into_raw(Box::<FeltDict>::default()) as _
}
/// Frees the dictionary.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__dict_free(ptr: *mut FeltDict) {
let mut map = Box::from_raw(ptr);
// Free the entries manually.
for (_, entry) in map.as_mut().0.drain() {
libc::free(entry.as_ptr().cast());
}
}
/// Needed for the correct alignment,
/// since the key [u8; 32] in rust has 8 byte alignment but its a felt,
/// so in reality it has 16.
#[repr(C, align(16))]
pub struct DictValuesArrayAbi {
pub key: [u8; 32],
pub value: std::ptr::NonNull<libc::c_void>,
}
/// Returns a array over the values of the dict, used for deep cloning.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__dict_values(
ptr: *mut FeltDict,
len: *mut u64,
) -> *mut DictValuesArrayAbi {
let dict: &mut FeltDict = &mut *ptr;
let values: Vec<_> = dict
.0
.clone()
.into_iter()
// make it ffi safe for use within MLIR.
.map(|x| DictValuesArrayAbi {
key: x.0,
value: x.1,
})
.collect();
*len = values.len() as u64;
values.leak::<'static>().as_mut_ptr()
}
/// Gets the value for a given key, the returned pointer is null if not found.
/// Increments the access count.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__dict_get(
ptr: *mut FeltDict,
key: &[u8; 32],
) -> *mut std::ffi::c_void {
let dict: &mut FeltDict = &mut *ptr;
let map = &dict.0;
dict.1 += 1;
if let Some(v) = map.get(key) {
v.as_ptr()
} else {
std::ptr::null_mut()
}
}
/// Inserts the provided key value. Returning the old one or nullptr if there was none.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__dict_insert(
ptr: *mut FeltDict,
key: &[u8; 32],
value: NonNull<std::ffi::c_void>,
) -> *mut std::ffi::c_void {
let dict = &mut *ptr;
let old_ptr = dict.0.insert(*key, value);
if let Some(v) = old_ptr {
v.as_ptr()
} else {
std::ptr::null_mut()
}
}
/// Compute the total gas refund for the dictionary at squash time.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__dict_gas_refund(ptr: *const FeltDict) -> u64 {
let dict = &*ptr;
(dict.1 - dict.0.len() as u64) * *DICT_GAS_REFUND_PER_ACCESS
}
/// Compute `ec_point_from_x_nz(x)` and store it.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__ec__ec_point_from_x_nz(
mut point_ptr: NonNull<[[u8; 32]; 2]>,
) -> bool {
let x = Felt::from_bytes_le(&point_ptr.as_ref()[0]);
// https://github.com/starkware-libs/cairo/blob/aaad921bba52e729dc24ece07fab2edf09ccfa15/crates/cairo-lang-sierra-to-casm/src/invocations/ec.rs#L63
let x2 = x * x;
let x3 = x2 * x;
let alpha_x_plus_beta = x + BETA;
let rhs = x3 + alpha_x_plus_beta;
// https://github.com/starkware-libs/cairo/blob/9b603b88c2e5a98eec1bb8f323260b7765e94911/crates/cairo-lang-runner/src/casm_run/mod.rs#L1825
let y = rhs
.sqrt()
.unwrap_or_else(|| (Felt::THREE * rhs).sqrt().unwrap());
let y = y.min(-y);
match AffinePoint::new(x, y) {
Ok(point) => {
point_ptr.as_mut()[1].copy_from_slice(&point.y().to_bytes_le());
true
}
Err(_) => false,
}
}
/// Compute `ec_point_try_new_nz(x)`.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__ec__ec_point_try_new_nz(
mut point_ptr: NonNull<[[u8; 32]; 2]>,
) -> bool {
let x = Felt::from_bytes_le(&point_ptr.as_ref()[0]);
let y = Felt::from_bytes_le(&point_ptr.as_ref()[1]);
match AffinePoint::new(x, y) {
Ok(point) => {
point_ptr.as_mut()[0].copy_from_slice(&point.x().to_bytes_le());
point_ptr.as_mut()[1].copy_from_slice(&point.y().to_bytes_le());
true
}
Err(_) => false,
}
}
/// Compute `ec_state_init()` and store the state back.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__ec__ec_state_init(
mut state_ptr: NonNull<[[u8; 32]; 4]>,
) {
// https://github.com/starkware-libs/cairo/blob/aaad921bba52e729dc24ece07fab2edf09ccfa15/crates/cairo-lang-runner/src/casm_run/mod.rs#L1802
let mut rng = rand::thread_rng();
let (random_x, random_y) = loop {
// Randominzing 31 bytes to make sure is in range.
let x_bytes: [u8; 31] = rng.gen();
let random_x = Felt::from_bytes_be_slice(&x_bytes);
let random_y_squared = random_x * random_x * random_x + random_x + BETA;
if let Some(random_y) = random_y_squared.sqrt() {
break (random_x, random_y);
}
};
// We already made sure its a valid point.
let state = AffinePoint::new_unchecked(random_x, random_y);
state_ptr.as_mut()[0].copy_from_slice(&state.x().to_bytes_le());
state_ptr.as_mut()[1].copy_from_slice(&state.y().to_bytes_le());
state_ptr.as_mut()[2].copy_from_slice(&state.x().to_bytes_le());
state_ptr.as_mut()[3].copy_from_slice(&state.y().to_bytes_le());
}
/// Compute `ec_state_add(state, point)` and store the state back.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__ec__ec_state_add(
mut state_ptr: NonNull<[[u8; 32]; 4]>,
point_ptr: NonNull<[[u8; 32]; 2]>,
) {
// We use unchecked methods because the inputs must already be valid points.
let mut state = ProjectivePoint::from_affine_unchecked(
Felt::from_bytes_le(&state_ptr.as_ref()[0]),
Felt::from_bytes_le(&state_ptr.as_ref()[1]),
);
let point = AffinePoint::new_unchecked(
Felt::from_bytes_le(&point_ptr.as_ref()[0]),
Felt::from_bytes_le(&point_ptr.as_ref()[1]),
);
state += &point;
let state = state.to_affine().unwrap();
state_ptr.as_mut()[0].copy_from_slice(&state.x().to_bytes_le());
state_ptr.as_mut()[1].copy_from_slice(&state.y().to_bytes_le());
}
/// Compute `ec_state_add_mul(state, scalar, point)` and store the state back.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__ec__ec_state_add_mul(
mut state_ptr: NonNull<[[u8; 32]; 4]>,
scalar_ptr: NonNull<[u8; 32]>,
point_ptr: NonNull<[[u8; 32]; 2]>,
) {
// Here the points should already be checked as valid, so we can use unchecked.
let mut state = ProjectivePoint::from_affine_unchecked(
Felt::from_bytes_le(&state_ptr.as_ref()[0]),
Felt::from_bytes_le(&state_ptr.as_ref()[1]),
);
let point = ProjectivePoint::from_affine_unchecked(
Felt::from_bytes_le(&point_ptr.as_ref()[0]),
Felt::from_bytes_le(&point_ptr.as_ref()[1]),
);
let scalar = Felt::from_bytes_le(scalar_ptr.as_ref());
state += &point.mul(scalar);
let state = state.to_affine().unwrap();
state_ptr.as_mut()[0].copy_from_slice(&state.x().to_bytes_le());
state_ptr.as_mut()[1].copy_from_slice(&state.y().to_bytes_le());
}
/// Compute `ec_state_try_finalize_nz(state)` and store the result.
///
/// # Panics
///
/// This function will panic if either operand is out of range for a felt.
///
/// # Safety
///
/// This function is intended to be called from MLIR, deals with pointers, and is therefore
/// definitely unsafe to use manually.
#[no_mangle]
pub unsafe extern "C" fn cairo_native__libfunc__ec__ec_state_try_finalize_nz(
mut point_ptr: NonNull<[[u8; 32]; 2]>,
state_ptr: NonNull<[[u8; 32]; 4]>,
) -> bool {
// We use unchecked methods because the inputs must already be valid points.
let state = ProjectivePoint::from_affine_unchecked(
Felt::from_bytes_le(&state_ptr.as_ref()[0]),
Felt::from_bytes_le(&state_ptr.as_ref()[1]),
);
let random = ProjectivePoint::from_affine_unchecked(
Felt::from_bytes_le(&state_ptr.as_ref()[2]),
Felt::from_bytes_le(&state_ptr.as_ref()[3]),
);
if state.x() == random.x() && state.y() == random.y() {
false
} else {
let point = &state - &random;
let point = point.to_affine().unwrap();
point_ptr.as_mut()[0].copy_from_slice(&point.x().to_bytes_le());
point_ptr.as_mut()[1].copy_from_slice(&point.y().to_bytes_le());
true
}
}