summaryrefslogtreecommitdiff
path: root/src/csrvmng.c
blob: e0b01e182d5b7fcdc7a2b38283d0699d5a7bd418 (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

#include <fcntl.h>
#include <getopt.h>
#include <malloc.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/mman.h>


#include <common/xml.h>



/* Affiche des indications sur l'utilisation du programme. */
static void show_usage(const char *);

/* Inscrit les paramètres d'accès au serveur configuré. */
static bool init_server_config(xmlDoc *, xmlXPathContextPtr, const char *, short int);

/* Lie un nouvel utilisateur à un serveur configuré. */
static bool add_new_user_into_server_config(xmlDoc *, xmlXPathContextPtr, const char *, const char *);

/* Retire un utilisateur des connaissances d'un serveur. */
static bool remove_user_from_server_config(xmlDoc *, xmlXPathContextPtr, const char *);



/******************************************************************************
*                                                                             *
*  Paramètres  : binary = désignation du programme binaire courant.           *
*                                                                             *
*  Description : Affiche des indications sur l'utilisation du programme.      *
*                                                                             *
*  Retour      : -                                                            *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static void show_usage(const char *binary)
{
    printf("\n");

    printf("%s --help | --file <conf> [options...]\n", binary);

    printf("\n");

    printf("\n");

}


/******************************************************************************
*                                                                             *
*  Paramètres  : argc = nombre d'arguments dans la ligne de commande.         *
*                argv = arguments de la ligne de commande.                    *
*                                                                             *
*  Description : Point d'entrée du programme.                                 *
*                                                                             *
*  Retour      : EXIT_SUCCESS si le prgm s'est déroulé sans encombres.        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

int main(int argc, char **argv)
{
    int result;                             /* Bilan de l'exécution        */
    bool need_help;                         /* Affichage de l'usage ?      */
    char *filename;                         /* Fichier de configuration    */
    char *address;                          /* Adresse d'un serveur        */
    short int port;                         /* Port d'écoute associé       */
    char *username;                         /* Utilisateur à manipuler     */
    char *pubkey;                           /* Fichier de clef publique    */
    bool need_removal;                      /* Suppression d'utilisateur   */
    int opt_index;                          /* Indice de parcours          */
    int ret;                                /* Bilan d'un appel            */
    bool pair_ok;                           /* Associations correctes ?    */
    xmlDoc *xdoc;                           /* Document XML à traiter      */
    xmlXPathContextPtr ctx;                 /* Contexte XPath associé      */
    bool has_conf;                          /* Fichier XML ouvert ?        */
    bool status;                            /* Bilan d'un appel            */

    static struct option long_options[] = {

        { "help",   no_argument,        NULL,   'h' },

        { "file",   required_argument,  NULL,   'f' },
        { "addr",   required_argument,  NULL,   'a' },
        { "port",   required_argument,  NULL,   'p' },
        { "user",   required_argument,  NULL,   'u' },
        { "key",    required_argument,  NULL,   'k' },
        { "remove", no_argument,        NULL,   'r' },

        { NULL,     0,                  NULL,   0   }

    };

    result = EXIT_FAILURE;

    need_help = false;
    filename = NULL;
    address = NULL;
    port = 0;
    username = NULL;
    pubkey = NULL;
    need_removal = false;

    for (opt_index = 0; ;)
    {
        ret = getopt_long(argc, argv, "hf:a:p:u:k:r", long_options, &opt_index);
        if (ret == -1) break;

        switch (ret)
        {
            case 'h':
                need_help = true;
                break;

            case 'f':
                filename = optarg;
                break;

            case 'a':
                address = optarg;
                break;

            case 'p':
                port = atoi(optarg);
                break;

            case 'u':
                username = optarg;
                break;

            case 'k':
                pubkey = optarg;
                break;

            case 'r':
                need_removal = true;
                break;

            default:
                need_help = true;
                result = EXIT_FAILURE;
                break;

        }

    }

    /* Vérification des entrées */

    pair_ok = true;

    if (address != NULL)
        pair_ok &= (port > 0);

    if (port > 0)
        pair_ok &= (address != NULL);

    if (need_removal)
        pair_ok &= (username != NULL);

    else
    {
        if (username != NULL)
            pair_ok &= (pubkey != NULL);

        if (pubkey != NULL)
            pair_ok &= (username != NULL);

    }

    if (need_help || filename == NULL || !pair_ok)
    {
        show_usage(argv[0]);

        if (need_help)
            result = EXIT_SUCCESS;

        goto exit;

    }

    /* Traitement demandés */

    has_conf = open_xml_file(filename, &xdoc, &ctx);

    if (!has_conf)
        has_conf = create_new_xml_file(&xdoc, &ctx);

    if (address != NULL && port > 0)
    {
        status = init_server_config(xdoc, ctx, address, port);

        result = (status ? EXIT_SUCCESS : EXIT_FAILURE);

    }

    if (username != NULL && pubkey != NULL)
    {
        status = add_new_user_into_server_config(xdoc, ctx, username, pubkey);

        result = (status ? EXIT_SUCCESS : EXIT_FAILURE);

    }

    if (username != NULL && need_removal)
    {
        status = remove_user_from_server_config(xdoc, ctx, username);

        if (status)
            result = EXIT_SUCCESS;

    }

    save_xml_file(xdoc, filename);

    close_xml_file(xdoc, ctx);

 exit:

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : xdoc    = document XML à compléter.                          *
*                ctx     = contete XPath à utiliser pour les parcours.        *
*                address = adresse IP ou nom de domaine à contacter.          *
*                port    = port désigné pour les communications.              *
*                                                                             *
*  Description : Inscrit les paramètres d'accès au serveur configuré.         *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static bool init_server_config(xmlDoc *xdoc, xmlXPathContextPtr ctx, const char *address, short int port)
{
    bool result;                            /* Bilan à faire remonter      */
    const char *path;                       /* Chemin d'accès XML          */

    path = "/ChrysalideServerConfig/Server";

    result = add_content_to_node(xdoc, ctx, path, "");

    result &= add_string_attribute_to_node(xdoc, ctx, path, "address", address);

    result &= add_long_attribute_to_node(xdoc, ctx, path, "port", port);

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : xdoc     = document XML à compléter.                         *
*                ctx      = contete XPath à utiliser pour les parcours.       *
*                username = nom de l'utilisateur à ajouter.                   *
*                pubkey   = fichier contenant une clef publique.              *
*                                                                             *
*  Description : Lie un nouvel utilisateur à un serveur configuré.            *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static bool add_new_user_into_server_config(xmlDoc *xdoc, xmlXPathContextPtr ctx, const char *username, const char *pubkey)
{
    bool result;                            /* Bilan à faire remonter      */
    int fd;                                 /* Descripteur du fichier      */
    struct stat info;                       /* Informations sur le fichier */
    int ret;                                /* Bilan d'un appel            */
    void *content;                          /* Contenu brut du fichier     */
    char *data;                             /* Données brutes à placer     */
    const char *path;                       /* Chemin d'accès XML          */

    result = false;

    /* Récupération des données */

    fd = open(pubkey, O_RDONLY);
    if (fd == -1)
    {
        perror("open");
        goto anuisc_exit;
    }

    ret = fstat(fd, &info);
    if (ret == -1)
    {
        close(fd);
        perror("fstat");
        goto anuisc_exit;
    }

    content = mmap(NULL, info.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
    if (content == MAP_FAILED)
    {
        close(fd);
        perror("mmap");
        goto anuisc_exit;
    }

    data = (char *)calloc(info.st_size, sizeof(char));
    memcpy(data, content, info.st_size);

    munmap(content, info.st_size);
    close(fd);

    /* Création de l'entrée XML */

    path = "/ChrysalideServerConfig/Access/User";

    result = add_content_to_node(xdoc, ctx, path, data);

    result &= add_string_attribute_to_node(xdoc, ctx, path, "name", username);

    free(data);

 anuisc_exit:

    return result;

}


/******************************************************************************
*                                                                             *
*  Paramètres  : xdoc     = document XML à compléter.                         *
*                ctx      = contete XPath à utiliser pour les parcours.       *
*                username = nom de l'utilisateur à ajouter.                   *
*                                                                             *
*  Description : Retire un utilisateur des connaissances d'un serveur.        *
*                                                                             *
*  Retour      : Bilan de l'opération.                                        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

static bool remove_user_from_server_config(xmlDoc *xdoc, xmlXPathContextPtr ctx, const char *username)
{
    bool result;                            /* Bilan à faire remonter      */
    char *path;                             /* Chemin d'accès XML          */

    asprintf(&path, "/ChrysalideServerConfig/Access/User[@name=\"%s\"]", username);

    result = remove_node_from_doc(xdoc, ctx, path);

    free(path);

    return result;

}