mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-11-03 14:33:37 +03:00 
			
		
		
		
	Wire everything that relies on stack smashing detection to call `__stack_chk_fail()` (aka what libssp / ssp / stack-protector uses) Expose it in our debugging header Rename overflow -> smashing, as these are different things we are trying to detect (meaning, that we check for things writing there, not some kind of `alloca` issue or the way `-fstack-check` would have worked) ref. #8666 `-fstack-protector` continues to work as it always did CONT replaces `abort()`, also moves its check to the loop wrapper to avoid dumping otherwise useless SYS context memory StackThunk replaces a similar `abort()` call
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 cont.h - continuations support for Xtensa call0 ABI
 | 
						|
 Copyright (c) 2014 Ivan Grokhotkov. All rights reserved.
 | 
						|
 This file is part of the esp8266 core for Arduino environment.
 | 
						|
 | 
						|
 This library is free software; you can redistribute it and/or
 | 
						|
 modify it under the terms of the GNU Lesser General Public
 | 
						|
 License as published by the Free Software Foundation; either
 | 
						|
 version 2.1 of the License, or (at your option) any later version.
 | 
						|
 | 
						|
 This library is distributed in the hope that it will be useful,
 | 
						|
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
						|
 Lesser General Public License for more details.
 | 
						|
 | 
						|
 You should have received a copy of the GNU Lesser General Public
 | 
						|
 License along with this library; if not, write to the Free Software
 | 
						|
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef CONT_H_
 | 
						|
#define CONT_H_
 | 
						|
 | 
						|
#include <stdbool.h>
 | 
						|
 | 
						|
#ifndef CONT_STACKSIZE
 | 
						|
#define CONT_STACKSIZE 4096
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct cont_ {
 | 
						|
        void (*pc_ret)(void);
 | 
						|
        unsigned* sp_ret;
 | 
						|
 | 
						|
        void (*pc_suspend)(void);
 | 
						|
        unsigned* sp_suspend;
 | 
						|
 | 
						|
        unsigned* stack_end;
 | 
						|
        unsigned unused1;
 | 
						|
        unsigned unused2;
 | 
						|
        unsigned stack_guard1;
 | 
						|
 | 
						|
        unsigned stack[CONT_STACKSIZE / 4];
 | 
						|
 | 
						|
        unsigned stack_guard2;
 | 
						|
        unsigned* struct_start;
 | 
						|
} cont_t;
 | 
						|
 | 
						|
extern cont_t* g_pcont;
 | 
						|
 | 
						|
// Initialize the cont_t structure before calling cont_run
 | 
						|
void cont_init(cont_t*);
 | 
						|
 | 
						|
// Run function pfn in a separate stack, or continue execution
 | 
						|
// at the point where cont_suspend was called
 | 
						|
void cont_run(cont_t*, void (*pfn)(void));
 | 
						|
 | 
						|
// Return to the point where cont_run was called, saving the
 | 
						|
// execution state (registers and stack)
 | 
						|
void cont_suspend(cont_t*);
 | 
						|
 | 
						|
// Check guard bytes around the stack. Immediately panics on failure.
 | 
						|
void cont_check(cont_t*);
 | 
						|
 | 
						|
// Go through stack and check how many bytes are most probably still unchanged
 | 
						|
// and thus weren't used by the user code. i.e. that stack space is free. (high water mark)
 | 
						|
int cont_get_free_stack(cont_t* cont);
 | 
						|
 | 
						|
// Check if cont_suspend() may be called. Returns true if we are running inside
 | 
						|
// continuation stack
 | 
						|
bool cont_can_suspend(cont_t* cont);
 | 
						|
 | 
						|
// Repaint the stack from the current SP to the end, to allow individual
 | 
						|
// routines' stack usages to be calculated by re-painting, checking current
 | 
						|
// free, running the routine, then checking the max free
 | 
						|
void cont_repaint_stack(cont_t *cont);
 | 
						|
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* CONT_H_ */
 |