summaryrefslogtreecommitdiff
path: root/plugins/bhash/rich.c
blob: b5bed4e514901d1a458c164b1cbbe43fe786b631 (plain)
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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * rich.c - calculs d'empreintes relatifs aux en-têtes PE enrichis
 *
 * Copyright (C) 2020 Cyrille Bagard
 *
 *  This file is part of Chrysalide.
 *
 *  Chrysalide is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  Chrysalide 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Chrysalide.  If not, see <http://www.gnu.org/licenses/>.
 */


#include "rich.h"


#include <format/known.h>
#include <plugins/pe/rich.h>



/******************************************************************************
*                                                                             *
*  Paramètres  : format = format en place à consulter.                        *
*                csum   = empreinte à déterminer. [OUT]                       *
*                                                                             *
*  Description : Calcule la valeur pour empreinte d'en-tête PE enrichi.       *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool compute_pe_rich_header_checksum(const GPeFormat *format, uint32_t *csum)
{
    bool result;                            /* Bilan à retourner           */
    mrange_t area;                          /* Zone couverte par l'en-tête */
    GBinContent *content;                   /* Contenu à parcourir         */
    vmpa2t start;                           /* Position de départ          */
    phys_t offset;                          /* Position du début d'en-tête */
    const bin_t *data;                      /* Données brutes à analyser   */
    phys_t i;                               /* Boucle de parcours #0       */
    comp_id_t *ids;                         /* Identifiants à traiter      */
    size_t count;                           /* Quantité de ces identifiants*/
    size_t k;                               /* Boucle de parcours #1       */

    result = g_pe_format_get_rich_header_area(format, &area);

    if (!result)
        *csum = 0;

    else
    {

#define rol32(word, shift) \
        ((uint32_t)word) << (shift & 31) | ((uint32_t)word) >> (32 - (shift & 31))

        /* Première source de calculs */

        content = g_known_format_get_content(G_KNOWN_FORMAT(format));

        g_binary_content_compute_start_pos(content, &start);

        offset = get_phy_addr(get_mrange_addr(&area)) - get_phy_addr(&start);

        *csum = offset;

        data = g_binary_content_get_raw_access(content, &start, offset);
        if (data == NULL)
        {
            g_object_unref(G_OBJECT(content));
            result = false;
            goto exit;
        }

        for (i = 0; i < offset; i++)
        {
            /* Saut du champ e_lfanew, non initialisé lors de la construction */
            if (0x3c <= i && i < 0x40)
                continue;

            *csum += rol32(data[i], i);

        }

        g_object_unref(G_OBJECT(content));

        /* Seconde source de calculs */

        ids = g_pe_format_get_comp_ids(format, &count);

        for (k = 0; k < count; k++)
            *csum += rol32((ids[k].prod_id << 16) | ids[k].minor_cv, ids[k].count);

        if (ids != NULL)
            free(ids);

    }

 exit:

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : format = format en place à consulter.                        *
*                pv     = forme d'empreinte à construire.                     *
*                                                                             *
*  Description : Calcule l'empreinte des informations d'en-tête PE enrichi.   *
*                                                                             *
*  Retour      : Empreinte MD5 calculée ou NULL en cas d'échec.               *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

char *compute_pe_rich_header_hash(const GPeFormat *format, bool pv)
{
    char *result;                           /* Empreinte à retourner       */
    comp_id_t *ids;                         /* Identifiants à traiter      */
    size_t count;                           /* Quantité de ces identifiants*/
    GChecksum *checksum;                    /* Preneur d'empreinte         */
    size_t i;                               /* Boucle de parcours          */
    uint32_t value;                         /* Valeur à prendre en compte  */

    ids = g_pe_format_get_comp_ids(format, &count);

    if (ids == NULL)
        result = NULL;

    else
    {
        checksum = g_checksum_new(G_CHECKSUM_MD5);

        if (!pv)
        {
            g_checksum_update(checksum, "DanS", 4);
            g_checksum_update(checksum, "\x00\x00\x00\x00", 4);
        }

        for (i = 0; i < count; i++)
        {
            if (pv && i == 0)
                continue;

            value = (ids[i].prod_id << 16) | ids[i].minor_cv;
            g_checksum_update(checksum, (char *)&value, sizeof(value));

            if (!pv)
            {
                value = ids[i].count;
                g_checksum_update(checksum, (char *)&value, sizeof(value));
            }

        }

        result = strdup(g_checksum_get_string(checksum));

        g_checksum_free(checksum);

        free(ids);

    }

    return result;

}