summaryrefslogtreecommitdiff
path: root/src/analysis/db/items/bookmark.c
blob: c28a83781359b66cfd530014e093966e2bb609d7 (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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416

/* Chrysalide - Outil d'analyse de fichiers binaires
 * bookmark.h - prototypes pour la gestion des signets au sein d'un binaire
 *
 * 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 "bookmark.h"


#include <stdio.h>
#include <sys/socket.h>


#include "../item-int.h"
#include "../misc/rlestr.h"



/* Signet à l'intérieur d'une zone de texte (instance) */
struct _GDbBookmark
{
    GDbItem parent;                         /* A laisser en premier        */

    vmpa2t addr;                            /* Adresse du signet           */
    rle_string comment;                     /* Eventuel commentaire associé*/

};

/* Signet à l'intérieur d'une zone de texte (classe) */
struct _GDbBookmarkClass
{
    GDbItemClass parent;                    /* A laisser en premier        */

};



/* Initialise la classe des signets dans une zone de texte. */
static void g_db_bookmark_class_init(GDbBookmarkClass *);

/* Initialise un signet dans une zone de texte. */
static void g_db_bookmark_init(GDbBookmark *);

/* Supprime toutes les références externes. */
static void g_db_bookmark_dispose(GDbBookmark *);

/* Procède à la libération totale de la mémoire. */
static void g_db_bookmark_finalize(GDbBookmark *);



/* Effectue la comparaison entre deux signets de collection. */
static gint g_db_bookmark_cmp(GDbBookmark *, GDbBookmark *);

/* Importe la définition d'un signet dans un flux réseau. */
static bool g_db_bookmark_recv_from_fd(GDbBookmark *, int, int);

/* Exporte la définition d'un signet dans un flux réseau. */
static bool g_db_bookmark_send_to_fd(const GDbBookmark *, int, int);




/******************************************************************************
*                                                                             *
*  Paramètres  : db = accès à la base de données.                             *
*                                                                             *
*  Description : Crée la table des signets dans une base de données.          *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

bool create_bookmark_db_table(sqlite3 *db)
{
    char *sql;                              /* Requête à exécuter          */
    int ret;                                /* Bilan de la création        */
    char *msg;                              /* Message d'erreur            */

    sql = "CREATE TABLE Bookmarks ("            \
             "id INT PRIMARY KEY NOT NULL, "    \
             "user TEXT NOT NULL, "             \
             "created INT NOT NULL, "           \
             "address INT NOT NULL, "           \
             "comment TEXT"                     \
          ");";

    ret = sqlite3_exec(db, sql, NULL, NULL, &msg);
    if (ret != SQLITE_OK)
    {
        fprintf(stderr, "sqlite3_exec(): %s\n", msg);
        sqlite3_free(msg);
    }

    return (ret == SQLITE_OK);

}










/* Indique le type défini pour un signet à l'intérieur d'une zone de texte. */
G_DEFINE_TYPE(GDbBookmark, g_db_bookmark, G_TYPE_DB_ITEM);


/******************************************************************************
*                                                                             *
*  Paramètres  : klass = classe à initialiser.                                *
*                                                                             *
*  Description : Initialise la classe des signets dans une zone de texte.     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_db_bookmark_class_init(GDbBookmarkClass *klass)
{
    GObjectClass *object;                   /* Autre version de la classe  */
    GDbItemClass *item;                     /* Encore une autre vision...  */

    object = G_OBJECT_CLASS(klass);

    object->dispose = (GObjectFinalizeFunc/* ! */)g_db_bookmark_dispose;
    object->finalize = (GObjectFinalizeFunc)g_db_bookmark_finalize;

    item = G_DB_ITEM_CLASS(klass);

    item->cmp = (GCompareFunc)g_db_bookmark_cmp;

    item->recv = (recv_db_item_fc)g_db_bookmark_recv_from_fd;
    item->send = (send_db_item_fc)g_db_bookmark_send_to_fd;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = instance à initialiser.                           *
*                                                                             *
*  Description : Initialise un signet dans une zone de texte.                 *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_db_bookmark_init(GDbBookmark *bookmark)
{

}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = instance d'objet GLib à traiter.                  *
*                                                                             *
*  Description : Supprime toutes les références externes.                     *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_db_bookmark_dispose(GDbBookmark *bookmark)
{
    G_OBJECT_CLASS(g_db_bookmark_parent_class)->dispose(G_OBJECT(bookmark));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = instance d'objet GLib à traiter.                  *
*                                                                             *
*  Description : Procède à la libération totale de la mémoire.                *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void g_db_bookmark_finalize(GDbBookmark *bookmark)
{
    G_OBJECT_CLASS(g_db_bookmark_parent_class)->finalize(G_OBJECT(bookmark));

}


/******************************************************************************
*                                                                             *
*  Paramètres  : addr    = adresse inamovible localisant une position donnée. *
*                comment = commentaire construit ou NULL.                     *
*                                                                             *
*  Description : Crée une définition d'un signet dans une zone de texte.      *
*                                                                             *
*  Retour      : Signet mis en place ou NULL en cas d'erreur.                 *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

GDbBookmark *g_db_bookmark_new(const vmpa2t *addr, const char *comment)
{
    GDbBookmark *result;                    /* Instance à retourner        */

    result = g_object_new(G_TYPE_DB_BOOKMARK, NULL);




    /* TODO */

    //dup addr;


    g_db_bookmark_set_comment(result, comment);

    return result;

}







/******************************************************************************
*                                                                             *
*  Paramètres  : a = premier élément à analyser.                              *
*                b = second élément à analyser.                               *
*                                                                             *
*  Description : Effectue la comparaison entre deux signets de collection.    *
*                                                                             *
*  Retour      : Bilan de la comparaison : -1, 0 ou 1.                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static gint g_db_bookmark_cmp(GDbBookmark *a, GDbBookmark *b)
{
    gint result;                            /* Bilan de la comparaison     */

    result = cmp_vmpa_by_phy(&a->addr, &b->addr);

    if (result == 0)
        result = cmp_rle_string(&a->comment, &b->comment);

    return 0;


}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = signet dont les informations sont à charger. [OUT]*
*                fd       = flux ouvert en lecture pour l'importation.        *
*                flags    = éventuelles options d'envoi supplémentaires.      *
*                                                                             *
*  Description : Importe la définition d'un signet dans un flux réseau.       *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static bool g_db_bookmark_recv_from_fd(GDbBookmark *bookmark, int fd, int flags)
{
    bool status;                            /* Bilan d'opération initiale  */

    status = G_DB_ITEM_CLASS(g_db_bookmark_parent_class)->recv(G_DB_ITEM(bookmark), fd, flags);
    if (!status) return false;

    if (!recv_vmpa(&bookmark->addr, fd, 0))
        return false;

    if (!recv_rle_string(&bookmark->comment, fd, 0))
        return false;

    return true;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = informations à sauvegarder.                       *
*                fd       = flux ouvert en écriture pour l'exportation.       *
*                flags    = éventuelles options d'envoi supplémentaires.      *
*                                                                             *
*  Description : Exporte la définition d'un signet dans un flux réseau.       *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static bool g_db_bookmark_send_to_fd(const GDbBookmark *bookmark, int fd, int flags)
{
    bool status;                            /* Bilan d'opération initiale  */

    status = G_DB_ITEM_CLASS(g_db_bookmark_parent_class)->send(G_DB_ITEM(bookmark), fd, MSG_MORE | flags);
    if (!status) return false;


    printf("<sending> FROM %s...\n", __FUNCTION__);


    if (!send_vmpa(&bookmark->addr, fd, MSG_MORE | flags))
        return false;

    if (!send_rle_string(&bookmark->comment, fd, flags))
        return false;

    return true;

}









/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = informations à consulter.                         *
*                                                                             *
*  Description : Fournit l'adresse associée à un signet.                      *
*                                                                             *
*  Retour      : Adresse mémoire.                                             *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

vmpa2t *g_db_bookmark_get_address(GDbBookmark *bookmark)
{
    return &bookmark->addr;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = informations à consulter.                         *
*                                                                             *
*  Description : Fournit le commentaire associé à un signet.                  *
*                                                                             *
*  Retour      : Commentaire existant ou NULL.                                *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

const char *g_db_bookmark_get_comment(const GDbBookmark *bookmark)
{
    return get_rle_string(&bookmark->comment);

}


/******************************************************************************
*                                                                             *
*  Paramètres  : bookmark = informations à consulter.                         *
*                comment  = commentaire construit ou NULL.                    *
*                                                                             *
*  Description : Définit le commentaire associé à un signet.                  *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

void g_db_bookmark_set_comment(GDbBookmark *bookmark, const char *comment)
{
    set_rle_string(&bookmark->comment, comment);

}