Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  pgprot.c

  Sprache: C
 

// SPDX-License-Identifier: GPL-2.0

#include <linux/export.h>
#include <linux/mm.h>
#include <asm/pgtable.h>
#include <asm/mem_encrypt.h>

static pgprot_t protection_map[16] __ro_after_init = {
 [VM_NONE]     = PAGE_NONE,
 [VM_READ]     = PAGE_READONLY,
 [VM_WRITE]     = PAGE_COPY,
 [VM_WRITE | VM_READ]    = PAGE_COPY,
 [VM_EXEC]     = PAGE_READONLY_EXEC,
 [VM_EXEC | VM_READ]    = PAGE_READONLY_EXEC,
 [VM_EXEC | VM_WRITE]    = PAGE_COPY_EXEC,
 [VM_EXEC | VM_WRITE | VM_READ]   = PAGE_COPY_EXEC,
 [VM_SHARED]     = PAGE_NONE,
 [VM_SHARED | VM_READ]    = PAGE_READONLY,
 [VM_SHARED | VM_WRITE]    = PAGE_SHARED,
 [VM_SHARED | VM_WRITE | VM_READ]  = PAGE_SHARED,
 [VM_SHARED | VM_EXEC]    = PAGE_READONLY_EXEC,
 [VM_SHARED | VM_EXEC | VM_READ]   = PAGE_READONLY_EXEC,
 [VM_SHARED | VM_EXEC | VM_WRITE]  = PAGE_SHARED_EXEC,
 [VM_SHARED | VM_EXEC | VM_WRITE | VM_READ] = PAGE_SHARED_EXEC
};

void add_encrypt_protection_map(void)
{
 unsigned int i;

 for (i = 0; i < ARRAY_SIZE(protection_map); i++)
  protection_map[i] = pgprot_encrypted(protection_map[i]);
}

pgprot_t vm_get_page_prot(vm_flags_t vm_flags)
{
 unsigned long val = pgprot_val(protection_map[vm_flags &
          (VM_READ|VM_WRITE|VM_EXEC|VM_SHARED)]);

#ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS
 /*
 * Take the 4 protection key bits out of the vma->vm_flags value and
 * turn them in to the bits that we can put in to a pte.
 *
 * Only override these if Protection Keys are available (which is only
 * on 64-bit).
 */

 if (vm_flags & VM_PKEY_BIT0)
  val |= _PAGE_PKEY_BIT0;
 if (vm_flags & VM_PKEY_BIT1)
  val |= _PAGE_PKEY_BIT1;
 if (vm_flags & VM_PKEY_BIT2)
  val |= _PAGE_PKEY_BIT2;
 if (vm_flags & VM_PKEY_BIT3)
  val |= _PAGE_PKEY_BIT3;
#endif

 val = __sme_set(val);
 if (val & _PAGE_PRESENT)
  val &= __supported_pte_mask;
 return __pgprot(val);
}
EXPORT_SYMBOL(vm_get_page_prot);

Messung V0.5 in Prozent
C=90 H=93 G=91

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik