~ubuntu-branches/ubuntu/saucy/ifupdown/saucy-proposed

« back to all changes in this revision

Viewing changes to archhurd.c

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2013-08-26 16:56:45 UTC
  • mfrom: (107.1.3 saucy)
  • Revision ID: package-import@ubuntu.com-20130826165645-0ewzt2yfckue8phe
Tags: 0.7.44ubuntu1
* Merge from Debian. Remaining changes:
  - If the /etc/NetworkManager/NetworkManager.conf file is present
    but doesn't have the "ifupdown:managed" the previous upload instructed
    the iniparser to return -1, which evaluates to TRUE. We instead instruct
    it to return 0, as we shouldn't prevent ifupdown from managing the
    interfaces in that case, as NM won't either. (LP: #281984)
  - Remove /etc/default/networking as the upstart job doesn't use it and
    can't really use it without some significant changes (support exclusion
    lists in all the upstart jobs).
  - Add transition code for moving /etc/init.d/networking from netbase
    to ifupdown.
  - Make /etc/init.d/networking exit 1 immediately on Upstart system
    with an error message telling the user to use 'service'.
  - Always call dhclient with -1, Ubuntu carries a patch so that renewal
    won't time out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
#include <stdlib.h>
 
3
#include <string.h>
 
4
#include <unistd.h>
 
5
#include <sys/utsname.h>
 
6
#include <sys/stat.h>
 
7
 
 
8
#include "archhurd.h"
 
9
 
 
10
#ifdef __GNUC__
 
11
#define UNUSED __attribute__((unused))
 
12
#else
 
13
#define UNUSED
 
14
#endif
 
15
 
 
16
int _iface_has(char *iface, char *delims)
 
17
{
 
18
    char _iface[80];
 
19
    strncpy(_iface, iface, sizeof(_iface));
 
20
    _iface[sizeof(_iface) - 1] = 0;
 
21
    strtok(_iface, delims);
 
22
    void *token = strtok(NULL, delims);
 
23
    return (token != NULL);
 
24
}
 
25
 
 
26
int execable(char *program)
 
27
{
 
28
    struct stat buf;
 
29
 
 
30
    if (0 == stat(program, &buf)) {
 
31
        if (S_ISREG(buf.st_mode) && (S_IXUSR & buf.st_mode))
 
32
            return 1;
 
33
    }
 
34
    return 0;
 
35
}
 
36
 
 
37
void cleanup_hwaddress(interface_defn * ifd UNUSED, char **pparam, int argc UNUSED, char **argv UNUSED)
 
38
{
 
39
    char *rest = *pparam;
 
40
    /* we're shrinking the text, so no realloc needed */
 
41
    char *space = strchr(rest, ' ');
 
42
 
 
43
    if (space == NULL)
 
44
        return;
 
45
 
 
46
    *space = '\0';
 
47
    if (strcasecmp(rest, "ether") == 0 || strcasecmp(rest, "ax25") == 0 || strcasecmp(rest, "ARCnet") == 0 || strcasecmp(rest, "netrom") == 0) {
 
48
        /* found deprecated <class> attribute */
 
49
        memmove(rest, space + 1, strlen(space + 1) + 1);
 
50
    } else {
 
51
        *space = ' ';
 
52
    }
 
53
}
 
54
 
 
55
void make_hex_address(interface_defn * ifd UNUSED, char **pparam, int argc UNUSED, char **argv UNUSED)
 
56
{
 
57
    char addrcomp[4];
 
58
    int maxlen = strlen("0000:0000");
 
59
 
 
60
    int ret = sscanf(*pparam, "%3hhu.%3hhu.%3hhu.%3hhu",
 
61
                     &addrcomp[0], &addrcomp[1], &addrcomp[2], &addrcomp[3]);
 
62
 
 
63
    if (ret != 4)
 
64
        return;
 
65
 
 
66
    *pparam = realloc(*pparam, maxlen + 1);
 
67
    if (*pparam == NULL)
 
68
        return;
 
69
    snprintf(*pparam, maxlen + 1, "%.2hhx%.2hhx:%.2hhx%.2hhx",
 
70
        addrcomp[0], addrcomp[1], addrcomp[2], addrcomp[3]);
 
71
}
 
72
 
 
73
#include <arpa/inet.h>
 
74
 
 
75
void compute_v4_addr(interface_defn * ifd UNUSED, char **pparam, int argc UNUSED, char **argv UNUSED)
 
76
{
 
77
    char s[INET_ADDRSTRLEN * 2 + 2];    /* 2 is for slash and \0 */
 
78
    strncpy(s, *pparam, sizeof(s));
 
79
    s[sizeof(s) - 1] = 0;
 
80
 
 
81
    char *token = strtok(s, "/");
 
82
    if (!token)
 
83
        return;
 
84
 
 
85
    *pparam = realloc(*pparam, strlen(token) + 1);
 
86
    if (*pparam == NULL)
 
87
        return;
 
88
    strcpy(*pparam, token);
 
89
}
 
90
 
 
91
void compute_v4_mask(interface_defn * ifd UNUSED, char **pparam, int argc UNUSED, char **argv UNUSED)
 
92
{
 
93
    char s[INET_ADDRSTRLEN * 2 + 2];    /* 2 is for slash and \0 */
 
94
    strncpy(s, *pparam, sizeof(s));
 
95
    s[sizeof(s) - 1] = 0;
 
96
 
 
97
    char *token = strtok(s, "/");
 
98
    if (!token)
 
99
        return;
 
100
 
 
101
    uint8_t addr[sizeof(struct in_addr)];
 
102
    struct in_addr mask;
 
103
    if (inet_pton(AF_INET, token, &addr) != 1)
 
104
        return;
 
105
    token = strtok(NULL, "/");
 
106
    int maskwidth = -1;
 
107
    if (!token) {
 
108
        if (addr[0] <= 127) {
 
109
            maskwidth = 8;
 
110
        } else if ((addr[0] >= 128) && (addr[0] <= 191)) {
 
111
            maskwidth = 16;
 
112
        } else if ((addr[0] >= 192) && (addr[0] <= 223)) {
 
113
            maskwidth = 24;
 
114
        } else {
 
115
            maskwidth = 32;
 
116
        }
 
117
    } else {
 
118
        switch (inet_pton(AF_INET, token, &mask)) {
 
119
            case -1:
 
120
                return;
 
121
 
 
122
            case 0:
 
123
                if (sscanf(token, "%d", &maskwidth) != 1)
 
124
                    return;
 
125
        }
 
126
    }
 
127
    if (maskwidth != -1) {
 
128
        mask.s_addr = htonl(~((1L << (32 - maskwidth)) - 1));
 
129
    }
 
130
 
 
131
    if (inet_ntop(AF_INET, &mask, s, sizeof(s)) == NULL)
 
132
        return;
 
133
    *pparam = realloc(*pparam, strlen(s) + 1);
 
134
    if (*pparam == NULL)
 
135
        return;
 
136
    strcpy(*pparam, s);
 
137
}
 
138
 
 
139
void compute_v4_broadcast(interface_defn * ifd, char **pparam, int argc UNUSED, char **argv UNUSED)
 
140
{
 
141
    /* If we don't get special value don't do anything */
 
142
    if (strcmp(*pparam, "+") && strcmp(*pparam, "-"))
 
143
        return;
 
144
 
 
145
    struct in_addr addr;
 
146
    struct in_addr mask;
 
147
 
 
148
    char *s = get_var("address", strlen("address"), ifd);
 
149
    if (!s)
 
150
        return;
 
151
    int r = inet_pton(AF_INET, s, &addr);
 
152
    free(s);
 
153
    if (r != 1)
 
154
        return;
 
155
 
 
156
    s = get_var("netmask", strlen("netmask"), ifd);
 
157
    if (!s)
 
158
        return;
 
159
    r = inet_pton(AF_INET, s, &mask);
 
160
    free(s);
 
161
    if (r != 1)
 
162
        return;
 
163
 
 
164
    if (mask.s_addr != htonl(0xfffffffe)) {
 
165
        if (!strcmp(*pparam, "+")) {
 
166
            addr.s_addr |= ~mask.s_addr;
 
167
        }
 
168
 
 
169
        if (!strcmp(*pparam, "-")) {
 
170
            addr.s_addr &= mask.s_addr;
 
171
        }
 
172
    } else {
 
173
        if (!strcmp(*pparam, "+")) {
 
174
            addr.s_addr = 0xffffffff;
 
175
        }
 
176
 
 
177
        if (!strcmp(*pparam, "-")) {
 
178
            addr.s_addr = 0;
 
179
        }
 
180
    }
 
181
 
 
182
    char buffer[INET_ADDRSTRLEN + 1];
 
183
    if (inet_ntop(AF_INET, &addr, buffer, sizeof(buffer)) == NULL)
 
184
        return;
 
185
    *pparam = realloc(*pparam, strlen(buffer) + 1);
 
186
    if (*pparam == NULL)
 
187
        return;
 
188
    strcpy(*pparam, buffer);
 
189
}
 
190
 
 
191
void set_preferred_lft(interface_defn * ifd, char **pparam, int argc UNUSED, char **argv UNUSED)
 
192
{
 
193
    if (!ifd->real_iface)
 
194
        return;
 
195
    if (iface_has(":")) {
 
196
        char s[] = "0";
 
197
        *pparam = realloc(*pparam, sizeof(s));
 
198
        if (*pparam == NULL)
 
199
            return;
 
200
        strcpy(*pparam, s);
 
201
    }
 
202
}
 
203
 
 
204
void get_token(interface_defn * ifd UNUSED, char **pparam, int argc, char **argv)
 
205
{
 
206
    if (argc == 0)
 
207
        return;
 
208
 
 
209
    int token_no;
 
210
    if (argc == 1) {
 
211
        token_no = 0;
 
212
    } else {
 
213
        token_no = atoi(argv[1]);
 
214
    }
 
215
 
 
216
    char *s = strdup(*pparam);
 
217
    char *token = strtok(s, argv[0]);
 
218
    while (token_no > 0) {
 
219
        token = strtok(NULL, argv[0]);
 
220
        token_no--;
 
221
    }
 
222
    if (token) {
 
223
        strcpy(*pparam, token);
 
224
    } else {
 
225
        if (argc == 3) {
 
226
            *pparam = realloc(*pparam, strlen(argv[2]) + 1);
 
227
            if (*pparam == NULL)
 
228
                return;
 
229
            strcpy(*pparam, argv[2]);
 
230
        }
 
231
    }
 
232
    free(s);
 
233
}
 
234
 
 
235
void to_decimal(interface_defn * ifd UNUSED, char **pparam, int argc, char **argv)
 
236
{
 
237
    int base = 10;
 
238
 
 
239
    if (argc == 1) {
 
240
        base = atoi(argv[0]);
 
241
    }
 
242
 
 
243
    char *result;
 
244
    long value = strtol(*pparam, &result, base);
 
245
    if (result == *pparam)
 
246
        return;
 
247
 
 
248
    snprintf(*pparam, strlen(*pparam) + 1, "%ld", value);
 
249
}
 
250
 
 
251
void map_value(interface_defn * ifd UNUSED, char **pparam, int argc, char **argv)
 
252
{
 
253
    if (argc < 2)
 
254
        return;
 
255
 
 
256
    int value;
 
257
    if (argc == 2) {
 
258
        value = (atoi(*pparam) || strcasecmp(*pparam, "on") == 0 || strcasecmp(*pparam, "true") == 0 || strcasecmp(*pparam, "yes") == 0);
 
259
    }
 
260
    if ((value < argc) && (argv[value] != NULL)) {
 
261
        *pparam = realloc(*pparam, strlen(argv[value]) + 1);
 
262
        if (*pparam == NULL)
 
263
            return;
 
264
        strcpy(*pparam, argv[value]);
 
265
    } else {
 
266
        *pparam = realloc(*pparam, 1);
 
267
        if (*pparam == NULL)
 
268
            return;
 
269
        *pparam[0] = 0;
 
270
    }
 
271
}