cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/boot/compressed/string.c

// SPDX-License-Identifier: GPL-2.0
/*
 * This provides an optimized implementation of memcpy, and a simplified
 * implementation of memset and memmove. These are used here because the
 * standard kernel runtime versions are not yet available and we don't
 * trust the gcc built-in implementations as they may do unexpected things
 * (e.g. FPU ops) in the minimal decompression stub execution environment.
 */
#include "error.h"

#include "../string.c"

#ifdef CONFIG_X86_32

static void *__memcpy(void *dest, const void *src, size_t n) { int d0, d1, d2; asm volatile( "rep ; movsl\n\t" "movl %4,%%ecx\n\t" "rep ; movsb\n\t" : "=&c" (d0), "=&D" (d1), "=&S" (d2) : "0" (n >> 2), "g" (n & 3), "1" (dest), "2" (src) : "memory"); return dest; }

Contributors

PersonTokensPropCommitsCommitProp
Vivek Goyal3093.75%150.00%
Kees Cook26.25%150.00%
Total32100.00%2100.00%

#else
static void *__memcpy(void *dest, const void *src, size_t n) { long d0, d1, d2; asm volatile( "rep ; movsq\n\t" "movq %4,%%rcx\n\t" "rep ; movsb\n\t" : "=&c" (d0), "=&D" (d1), "=&S" (d2) : "0" (n >> 3), "g" (n & 7), "1" (dest), "2" (src) : "memory"); return dest; }

Contributors

PersonTokensPropCommitsCommitProp
Vivek Goyal3093.75%150.00%
Kees Cook26.25%150.00%
Total32100.00%2100.00%

#endif
void *memset(void *s, int c, size_t n) { int i; char *ss = s; for (i = 0; i < n; i++) ss[i] = c; return s; }

Contributors

PersonTokensPropCommitsCommitProp
Vivek Goyal48100.00%1100.00%
Total48100.00%1100.00%


void *memmove(void *dest, const void *src, size_t n) { unsigned char *d = dest; const unsigned char *s = src; if (d <= s || d - s >= n) return __memcpy(dest, src, n); while (n-- > 0) d[n] = s[n]; return dest; }

Contributors

PersonTokensPropCommitsCommitProp
Kees Cook75100.00%3100.00%
Total75100.00%3100.00%

/* Detect and warn about potential overlaps, but handle them with memmove. */
void *memcpy(void *dest, const void *src, size_t n) { if (dest > src && dest - src < n) { warn("Avoiding potentially unsafe overlapping memcpy()!"); return memmove(dest, src, n); } return __memcpy(dest, src, n); }

Contributors

PersonTokensPropCommitsCommitProp
Kees Cook57100.00%1100.00%
Total57100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Kees Cook14154.23%450.00%
Vivek Goyal11544.23%225.00%
Yinghai Lu31.15%112.50%
Greg Kroah-Hartman10.38%112.50%
Total260100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.