summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/rtems/rtems-bsd-rc-conf-net.c
blob: b145779d9cd8715f6d3c583dfb2d1d1371c02eea (plain) (blame)
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
/*
 * Copyright (c) 2016 Chris Johns <chrisj@rtems.org>.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

/*
 * Handle the networking directives found in rc.conf.
 *  - ifconfig_*
 *  - cloned_interfaces
 *  - autobridge_interfaces
 *  - autobridge_bridge*
 *  - defaultrouter
 */

#include <rtems/bsd/sys/param.h>
#include <rtems/bsd/sys/types.h>

#include <sys/queue.h>
#include <sys/kernel.h>
#include <sysexits.h>

#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include <rtems.h>
#include <rtems/chain.h>

#include <machine/rtems-bsd-commands.h>
#include <machine/rtems-bsd-rc-conf.h>

/*
 * cloned_interfaces
 *
 * eg cloned_interfaces="vlan0 bridge0 tap1 tap2"
 *
 * See 'man rc.conf(5)' on FreeBSD.
 */
static int
cloned_interfaces(rtems_bsd_rc_conf* rc_conf,
                  int                argc,
                  const char**       argv)
{
  int arg;
  for (arg = 1; arg < argc; ++arg) {
    const char* ifconfg_args[] = {
      "ifconfig", argv[arg], "create", NULL
    };
    int r;
    rtems_bsd_rc_conf_print_cmd(rc_conf, "cloning_interfaces", 3, ifconfg_args);
    r = rtems_bsd_command_ifconfig(3, (char**) ifconfg_args);
    if (r != EX_OK) {
      errno = ECANCELED;
      return -1;
    }
  }
  return 0;
}

/*
 * create_args_'interface'
 *
 * eg create_args_myvlan="vlan 102"
 *
 * See 'man rc.conf(5)' on FreeBSD.
 */
typedef struct {
  rtems_chain_node node;
  const char*      label;
  int              argc;
  const char**     argv;
} create_args_item;

static RTEMS_CHAIN_DEFINE_EMPTY(create_args_items);

static int
create_args_(rtems_bsd_rc_conf* rc_conf,
             int                argc,
             const char**       argv)
{
  rtems_chain_node*       node = rtems_chain_first(&create_args_items);
  const rtems_chain_node* tail = rtems_chain_tail(&create_args_items);
  const char*             label = argv[0] + strlen("create_args_");
  create_args_item*       item;
  int                     arg;

  while (node != tail) {
    item = (create_args_item*) node;
    if (strcasecmp(item->label, label) == 0) {
      fprintf(stderr, "error: %s:%d: duplicate create args entry: %s\n",
              rtems_bsd_rc_conf_name(rc_conf),
              rtems_bsd_rc_conf_line(rc_conf),
              argv[0]);
      errno = EEXIST;
      return -1;
    }
    node = rtems_chain_next(node);
  }

  item = calloc(1, sizeof(*item));
  if (item == NULL) {
    errno = ENOMEM;
    fprintf(stderr, "error: %s:%d: %s\n",
            rtems_bsd_rc_conf_name(rc_conf),
            rtems_bsd_rc_conf_line(rc_conf),
            strerror(errno));
    return -1;
  }

  item->argc = argc;

  item->label = strdup(label);
  if (item->label == NULL) {
    free(item);
    errno = ENOMEM;
    fprintf(stderr, "error: %s:%d: %s\n",
            rtems_bsd_rc_conf_name(rc_conf),
            rtems_bsd_rc_conf_line(rc_conf),
            strerror(errno));
    return -1;
  }

  item->argv = calloc(argc + 1, sizeof(char*));
  if (item->argv == NULL) {
    free((void*) item->label);
    free(item);
    errno = ENOMEM;
    fprintf(stderr, "error: %s:%d: %s\n",
            rtems_bsd_rc_conf_name(rc_conf),
            rtems_bsd_rc_conf_line(rc_conf),
            strerror(errno));
    return -1;
  }

  for (arg = 0; arg < argc; ++arg) {
    item->argv[arg] = strdup(argv[0]);
    if (item->argv[arg] == NULL) {
      int a;
      for (a = 0; a < arg; ++a)
        free((void*) item->argv[a]);
      free(item->argv);
      free((void*) item->label);
      free(item);
      errno = ENOMEM;
      fprintf(stderr, "error: %s:%d: %s\n",
              rtems_bsd_rc_conf_name(rc_conf),
              rtems_bsd_rc_conf_line(rc_conf),
              strerror(errno));
      return -1;
    }
  }

  rtems_chain_append(&create_args_items, &item->node);

  return 0;
}

/*
 * ifconfig_'interface'
 *
 * eg ifconfig_em0="inet 10.10.5.33 netmask 255.255.255.0"
 *
 * See 'man rc.conf(5)' on FreeBSD.
 */
static int
ifconfig_(rtems_bsd_rc_conf* rc_conf,
          int                argc,
          const char**       argv)
{
  const char** args;
  int          arg;
  int          r;

  for (arg = 1; arg < argc; ++arg) {
    if (strcasecmp(argv[arg], "NOAUTO") == 0)
      return 0;
  }

  args = calloc(argc + 3, sizeof(char*));
  if (args == NULL) {
    errno = ENOMEM;
    return -1;
  }

  args[0] = "ifconfig";
  args[1] = argv[0] + strlen("ifconfig_");

  for (arg = 1; arg < argc; ++arg)
    args[arg + 1] = argv[arg];

  args[argc + 1] = "up";

  rtems_bsd_rc_conf_print_cmd(rc_conf, "ifconfig", argc + 2, args);

  r = rtems_bsd_command_ifconfig(argc + 2, (char**) args);

  free(args);

  if (r != EX_OK) {
    errno = ECANCELED;
    return -1;
  }

  return 0;
}

/*
 * hostname
 *
 * eg hostname="myhost"
 *
 * See 'man rc.conf(5)' on FreeBSD.
 */
static int
hostname(rtems_bsd_rc_conf* rc_conf,
         int                argc,
         const char**       argv)
{
  if (argc > 2) {
    errno = EINVAL;
    return -1;
  }

  rtems_bsd_rc_conf_print_cmd(rc_conf, "hostname", argc, argv);

  return sethostname(argv[1], strlen(argv[1]));
}

/*
 * defaultrouter
 *
 * eg defaultrouter="1.2.3.4"
 *
 * See 'man rc.conf(5)' on FreeBSD.
 */
static int
defaultrouter(rtems_bsd_rc_conf* rc_conf,
              int                argc,
              const char**       argv)
{
  if (argc > 2) {
    errno = EINVAL;
    return -1;
  }

  if (strcasecmp(argv[1], "NO") != 0) {
    const char* args[] = {
      "route", "add", "default", argv[1], NULL
    };
    int r;

    rtems_bsd_rc_conf_print_cmd(rc_conf, "defaultrouter", 4, args);

    r = rtems_bsd_command_route(4, (char**) args);
    if (r != EX_OK) {
      errno = ECANCELED;
      return -1;
    }
  }

  return 0;
}

static void
add_directive(const char* name, rtems_bsd_rc_conf_directive handler)
{
  int r;
  r = rtems_bsd_rc_conf_directive_add(name, handler);
  if (r < 0)
    fprintf(stderr, "error: cannot register rc.conf handler: %s\n", name);
}

void
rc_conf_net_init(void* arg)
{
  add_directive("cloned_interfaces", cloned_interfaces);
  add_directive("create_args_.*", create_args_);
  add_directive("ifconfig_.*", ifconfig_);
  add_directive("hostname", hostname);
  add_directive("defaultrouter", defaultrouter);
}