summaryrefslogtreecommitdiff
path: root/src/analysis/db/core.c
blob: 81ea1171990ead9cd6b29b502fa00f566c8682e7 (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207

/* Chrysalide - Outil d'analyse de fichiers binaires
 * core.c - prototypes pour les informations de base pour tout élément ajouté
 *
 * Copyright (C) 2014 Cyrille Bagard
 *
 *  This file is part of Chrysalide.
 *
 *  OpenIDA 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.
 *
 *  OpenIDA 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 Foobar.  If not, see <http://www.gnu.org/licenses/>.
 */


#include "core.h"


#include <endian.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>


#include "../../common/io.h"



/******************************************************************************
*                                                                             *
*  Paramètres  : -                                                            *
*                                                                             *
*  Description : Détermine une fois pour toute la désignation de l'usager.    *
*                                                                             *
*  Retour      : Nom statique déterminé.                                      *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

const char *get_local_author_name(void)
{
    static char result[MAX_DB_AUTHOR_LEN];  /* Désignation à retourner     */
    char *chrysalide_user;                  /* Eventuel nom spécifique     */
    char *logname;                          /* Nom depuis l'environnement  */
    char hostname[HOST_NAME_MAX];           /* Nom de la machine courante  */
    int ret;                                /* Bilan d'un appel            */

    if (result[0] == '\0')
    {
        chrysalide_user = getenv("CHRYSALIDE_USER");

        if (chrysalide_user != NULL)
        {
            strncpy(result, chrysalide_user, MAX_DB_AUTHOR_LEN - 1);
            result[MAX_DB_AUTHOR_LEN - 1] = '\0';
        }
        else
        {
            logname = getenv("LOGNAME");
            if (logname == NULL)
                logname = "";

            ret = gethostname(hostname, HOST_NAME_MAX);
            if (ret != 0)
                hostname[0] = '\0';

            if (logname != NULL && hostname[0] != '\0')
                snprintf(result, MAX_DB_AUTHOR_LEN, "%s@%s", logname, hostname);

            else if (logname != NULL && hostname[0] == '\0')
                snprintf(result, MAX_DB_AUTHOR_LEN, "%s", logname);

            else if (logname == NULL && hostname[0] != '\0')
                snprintf(result, MAX_DB_AUTHOR_LEN, "@%s", hostname);

            else
                snprintf(result, MAX_DB_AUTHOR_LEN, "anonymous");

        }

    }

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : info = informations à constituer. [OUT]                      *
*                type = type de l'élément à mettre en place.                  *
*                user = provenance des informations ou NULL si machine.       *
*                                                                             *
*  Description : Initialise le coeur des informations d'un élément ajouté.    *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void init_core_db_info(core_db_info *info, uint64_t type, const char *user)
{
    info->type = type;

    strncpy(info->user, user, MAX_DB_AUTHOR_LEN - 1);
    info->user[MAX_DB_AUTHOR_LEN - 1] = '\0';

    info->created = time(NULL);
    info->modified = info->created;

    info->saved = 0;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : info = informations à constituer. [OUT]                      *
*                type = type de l'élément, lu en avance de phase.             *
*                fd   = flux ouvert en lecture pour l'importation.            *
*                                                                             *
*  Description : Importe le coeur des informations d'un élément ajouté.       *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool load_core_db_info(core_db_info *info, uint64_t type, int fd)
{
#if 0
    ssize_t got;                            /* Quantité de données reçues  */
    uint64_t val64;                         /* Valeur sur 64 bits          */

    info->type = type;

    got = safe_recv(fd, info->user, MAX_DB_AUTHOR_LEN, MSG_WAITALL);
    if (got != MAX_DB_AUTHOR_LEN) return false;

    info->user[MAX_DB_AUTHOR_LEN - 1] = '\0';

    got = safe_recv(fd, &val64, sizeof(uint64_t), MSG_WAITALL);
    if (got != sizeof(uint64_t)) return false;

    info->created = be64toh(val64);

    got = safe_recv(fd, &val64, sizeof(uint64_t), MSG_WAITALL);
    if (got != sizeof(uint64_t)) return false;

    info->modified = be64toh(val64);

    info->saved = info->modified;
#endif
    return true;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : info = informations à sauvegarer.                            *
*                fd   = flux ouvert en écriture pour l'exportation.           *
*                                                                             *
*  Description : Exporte le coeur des informations d'un élément ajouté.       *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool store_core_db_info(core_db_info *info, int fd)
{
#if 0
    ssize_t got;                            /* Quantité de données reçues  */

    got = safe_send(fd, (uint64_t []) { htobe64(info->type) }, sizeof(uint64_t), MSG_WAITALL);
    if (got != sizeof(uint64_t)) return false;

    got = safe_send(fd, info->user, MAX_DB_AUTHOR_LEN, MSG_WAITALL);
    if (got != MAX_DB_AUTHOR_LEN) return false;

    got = safe_send(fd, (uint64_t []) { htobe64(info->created) }, sizeof(uint64_t), MSG_WAITALL);
    if (got != sizeof(uint64_t)) return false;

    got = safe_send(fd, (uint64_t []) { htobe64(info->modified) }, sizeof(uint64_t), MSG_WAITALL);
    if (got != sizeof(uint64_t)) return false;

    info->saved = time(NULL);
#endif
    return true;

}