lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
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
/*
 * crypto_mode.c --- convert between encryption modes and strings
 *
 * Copyright (C) 1999  Theodore Ts'o <tytso@mit.edu>
 *
 * %Begin-Header%
 * This file may be redistributed under the terms of the GNU Library
 * General Public License, version 2.
 * %End-Header%
 */
 
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <errno.h>
 
#include "e2p.h"
 
struct mode {
   int        num;
   const char    *string;
};
 
static struct mode mode_list[] = {
   {    EXT4_ENCRYPTION_MODE_INVALID,        "Invalid"},
   {    EXT4_ENCRYPTION_MODE_AES_256_XTS,    "AES-256-XTS"},
   {    EXT4_ENCRYPTION_MODE_AES_256_GCM,    "AES-256-GCM"},
   {    EXT4_ENCRYPTION_MODE_AES_256_CBC,    "AES-256-CBC"},
   {    0, 0 },
};
 
const char *e2p_encmode2string(int num)
{
   struct mode  *p;
   static char buf[20];
 
   for (p = mode_list; p->string; p++) {
       if (num == p->num)
           return p->string;
   }
   sprintf(buf, "ENC_MODE_%d", num);
   return buf;
}
 
/*
 * Returns the hash algorithm, or -1 on error
 */
int e2p_string2encmode(char *string)
{
   struct mode    *p;
   char        *eptr;
   int        num;
 
   for (p = mode_list; p->string; p++) {
       if (!strcasecmp(string, p->string)) {
           return p->num;
       }
   }
   if (strncasecmp(string, "ENC_MODE_", 9))
       return -1;
 
   if (string[9] == 0)
       return -1;
   num = strtol(string+9, &eptr, 10);
   if (num > 255 || num < 0)
       return -1;
   if (*eptr)
       return -1;
   return num;
}