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
|
/*
* netifd - network interface daemon
* Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation
*
* This program 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.
*/
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include "netifd.h"
#include "interface.h"
#include "interface-ip.h"
#include "proto.h"
#include "system.h"
struct static_proto_state {
struct interface_proto_state proto;
struct blob_attr *config;
};
static bool
static_proto_setup(struct static_proto_state *state)
{
return proto_apply_static_ip_settings(state->proto.iface, state->config) == 0;
}
static int
static_handler(struct interface_proto_state *proto,
enum interface_proto_cmd cmd, bool force)
{
struct static_proto_state *state;
int ret = 0;
state = container_of(proto, struct static_proto_state, proto);
switch (cmd) {
case PROTO_CMD_SETUP:
if (!static_proto_setup(state))
return -1;
break;
case PROTO_CMD_TEARDOWN:
break;
}
return ret;
}
static void
static_free(struct interface_proto_state *proto)
{
struct static_proto_state *state;
state = container_of(proto, struct static_proto_state, proto);
free(state->config);
free(state);
}
static struct interface_proto_state *
static_attach(const struct proto_handler *h, struct interface *iface,
struct blob_attr *attr)
{
struct static_proto_state *state;
state = calloc(1, sizeof(*state));
if (!state)
return NULL;
state->config = malloc(blob_pad_len(attr));
if (!state->config)
goto error;
memcpy(state->config, attr, blob_pad_len(attr));
state->proto.free = static_free;
state->proto.cb = static_handler;
return &state->proto;
error:
free(state);
return NULL;
}
static struct proto_handler static_proto = {
.name = "static",
.flags = PROTO_FLAG_IMMEDIATE,
.config_params = &proto_ip_attr,
.attach = static_attach,
};
static void __init
static_proto_init(void)
{
add_proto_handler(&static_proto);
}
|