File: dhcp.c

package info (click to toggle)
netcfg 1.08
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,316 kB
  • ctags: 131
  • sloc: ansic: 2,122; sh: 89; makefile: 73
file content (588 lines) | stat: -rw-r--r-- 15,499 bytes parent folder | download
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
/*
 * DHCP module for netcfg/netcfg-dhcp.
 *
 * Licensed under the terms of the GNU General Public License
 */

#include "netcfg.h"
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <debian-installer.h>
#include <stdio.h>
#include <assert.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/utsname.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <time.h>
#include <netdb.h>


#define DHCP_SECONDS 15


static int dhcp_exit_status = 1;
static pid_t dhcp_pid = -1;


/*
 * Add DHCP-related lines to /etc/network/interfaces
 */
static void netcfg_write_dhcp (char *iface, char *dhostname)
{
    FILE *fp;

    if ((fp = file_open(INTERFACES_FILE, "a"))) {
        fprintf(fp, "\n# The primary network interface\n");
        if (!iface_is_hotpluggable(iface) && !find_in_stab(iface))
            fprintf(fp, "auto %s\n", iface);
        fprintf(fp, "iface %s inet dhcp\n", iface);
        if (dhostname)
        {
          fprintf(fp, "\thostname %s\n", dhostname);
        }
        if (is_wireless_iface(iface))
        {
          fprintf(fp, "\t# wireless-* options are implemented by the wireless-tools package\n");
          fprintf(fp, "\twireless-mode %s\n",
              (mode == MANAGED) ? "managed" : "ad-hoc");
          fprintf(fp, "\twireless-essid %s\n", essid ? essid : "any");
          if (wepkey != NULL)
            fprintf(fp, "\twireless-key1 %s\n", wepkey);
        }
        fclose(fp);
    }

#if 0
    if ((fp = file_open(RESOLV_FILE, "a"))) {
      fclose(fp);
    }
#endif
}

/* Returns 1 if no default route is available */
static short no_default_route (void)
{
  FILE* iproute = NULL;
  char buf[256] = { 0 };
  
  if ((iproute = popen("ip route", "r")) != NULL)
  {
    while (fgets (buf, 256, iproute) != NULL)
    {
      if (buf[0] == 'd' && strstr (buf, "default via "))
      {
        pclose(iproute);
        return 0;
      }
    }
    pclose(iproute);
  }
  
  return 1;
}

/*
 * Signal handler for DHCP client child
 *
 * When the child exits (either because it failed to obtain a
 * lease or because it succeeded and daemonized itself), this
 * gets the child's exit status and sets dhcp_pid to -1
 */
static void dhcp_client_sigchld(int sig __attribute__ ((unused))) 
{
  if (dhcp_pid <= 0)
    return;
  /*
   * I hope it's OK to call waitpid() from the SIGCHLD signal handler
   */
  waitpid(dhcp_pid,&dhcp_exit_status,0);
  dhcp_pid = -1;
}


/* 
 * This function will start whichever DHCP client is available
 * using the provided DHCP hostname, if supplied
 *
 * The client's PID is stored in dhcp_pid.
 */
int start_dhcp_client (struct debconfclient *client, char* dhostname)
{
  FILE *dc = NULL;
  enum { DHCLIENT, DHCLIENT3, PUMP } dhcp_client;

  if (access("/var/lib/dhcp3", F_OK) == 0)
    dhcp_client = DHCLIENT3;
  else if (access("/sbin/dhclient", F_OK) == 0)
    dhcp_client = DHCLIENT;
  else if (access("/sbin/pump", F_OK) == 0)
    dhcp_client = PUMP;
  else {
    debconf_input(client, "critical", "netcfg/no_dhcp_client");
    debconf_go(client);
    exit(1);
  }

  if ((dhcp_pid = fork()) == 0) /* child */
  {
    /* get dhcp lease */
    switch (dhcp_client)
    {
      case PUMP:
        if (dhostname)
          execlp("pump", "pump", "-i", interface, "-h", dhostname, NULL);
        else
          execlp("pump", "pump", "-i", interface, NULL);

        break;

      case DHCLIENT:
        /* First, set up dhclient.conf if necessary */

        if (dhostname)
        {
          if ((dc = file_open(DHCLIENT_CONF, "w")))
          {
            fprintf(dc, "send host-name \"%s\";\n", dhostname);
            fclose(dc);
          }
        }

        execlp("dhclient", "dhclient", "-e", interface, NULL);
        break;

      case DHCLIENT3:
        /* Different place.. */

        if (dhostname)
        {
          if ((dc = file_open(DHCLIENT3_CONF, "w")))
          {
            fprintf(dc, "send host-name \"%s\";\n", dhostname);
            fclose(dc);
          }
        }

        execlp("dhclient", "dhclient", "-1", interface, NULL);
        break;
    }
    if (errno != 0)
      di_error("Could not exec dhcp client: %s", strerror(errno));

    return 1; /* should NEVER EVER get here */
  }
  else if (dhcp_pid == -1)
    return 1;
  else
  {
    /* dhcp_pid contains the child's PID */
    signal(SIGCHLD, &dhcp_client_sigchld);
    return 0;
  }
}


static int kill_dhcp_client(void)
{
  system("killall.sh"); 
  return 0;
}


/*
 * Poll the started DHCP client for DHCP_SECONDS seconds
 * and return 0 if a lease is known to have been acquired,
 * 1 otherwise.
 *
 * The client should be run such that it exits once a lease is acquired
 * (although its child continues to run as a daemon)
 *
 * This function will NOT kill the child if time runs out.  This allows
 * the user to choose to wait longer for the lease to be acquired.
 */
int poll_dhcp_client (struct debconfclient *client)
{
  int seconds_slept = 0;
  int ret = 1;

  /* show progress bar */
  debconf_progress_start(client, 0, DHCP_SECONDS, "netcfg/dhcp_progress");
  debconf_progress_info(client, "netcfg/dhcp_progress_note");
  netcfg_progress_displayed = 1;

  /* wait between 2 and DHCP_SECONDS seconds for a DHCP lease */
  while (
      ((dhcp_pid > 0) || (seconds_slept < 2))
      && (seconds_slept < DHCP_SECONDS)
  ) {
    sleep(1);
    seconds_slept++; /* Not exact but close enough */
    debconf_progress_step(client, 1);
  }
  /* Either the client exited or time ran out */

  /* got a lease? display a success message */
  if (!(dhcp_pid > 0) && (dhcp_exit_status == 0))
  {
    ret = 0;

    debconf_progress_set(client, DHCP_SECONDS);
    debconf_progress_info(client, "netcfg/dhcp_success_note");
    sleep(2);
  }
  
  /* stop progress bar */
  debconf_progress_stop(client);
  netcfg_progress_displayed = 0;
  
  return ret;
}


#define REPLY_RETRY_AUTOCONFIG       0
#define REPLY_RETRY_WITH_HOSTNAME    1
#define REPLY_CONFIGURE_MANUALLY     2
#define REPLY_DONT_CONFIGURE         3
#define REPLY_RECONFIGURE_WIFI       4
#define REPLY_LOOP_BACK              5

int ask_dhcp_options (struct debconfclient *client)
{
  int ret;
  
  if (is_wireless_iface(interface))
  {
    debconf_metaget(client, "netcfg/internal-wifireconf", "description");
    debconf_subst(client, "netcfg/dhcp_options", "wifireconf", client->value);
  }
  else /* blank from last time */
    debconf_subst(client, "netcfg/dhcp_options", "wifireconf", "");

  /* critical, we don't want to enter a loop */
  debconf_input(client, "critical", "netcfg/dhcp_options");
  ret = debconf_go(client);

  if (ret == 30)
    return GO_BACK;
  
  debconf_get(client, "netcfg/dhcp_options");

  /* strcmp sucks */
  if (client->value[0] == 'R') /* _R_etry ... or _R_econfigure ... */
  {
    size_t len = strlen(client->value);
    if (client->value[len - 1] == 'e') /* ... with DHCP hostnam_e_ */
      return REPLY_RETRY_WITH_HOSTNAME;
    else if (client->value[len - 1] == 'k') /* ... wireless networ_k_ */
      return REPLY_RECONFIGURE_WIFI;
    else
      return REPLY_RETRY_AUTOCONFIG;
  }
  else if (client->value[0] == 'C') /* _C_onfigure ... */
    return REPLY_CONFIGURE_MANUALLY;
  else if (empty_str(client->value))
    return REPLY_LOOP_BACK;
  else
    return REPLY_DONT_CONFIGURE;
}


/* Here comes another Satan machine. */
int netcfg_activate_dhcp (struct debconfclient *client)
{
  char* dhostname = NULL;
  enum { START, POLL, ASK_OPTIONS, DHCP_HOSTNAME, HOSTNAME, DOMAIN, HOSTNAME_SANS_NETWORK } state = START;

  kill_dhcp_client();
  loop_setup();

  for (;;)
  {
    switch (state)
    {
      case START:
        if (start_dhcp_client(client, dhostname))
          netcfg_die(client); /* change later */
        else
          state = POLL;
        break;

      case POLL:
        if (poll_dhcp_client(client))
        {
          /* could not get a lease, show the error, present options */
          debconf_capb(client, "");
          debconf_input(client, "critical", "netcfg/dhcp_failed");
          debconf_go(client);
          debconf_capb(client, "backup");
          state = ASK_OPTIONS;
        }
        else
        {
          /* got a lease */
          /*
           * That means that the DHCP client has exited, although its
           * child is still running as a daemon
           */

          /* Before doing anything else, check for a default route */

          if (no_default_route())
          {
            debconf_input(client, "critical", "netcfg/no_default_route");
            debconf_go(client);
            debconf_get(client, "netcfg/no_default_route");

            if (!strcmp(client->value, "false"))
            {
              state = ASK_OPTIONS;
              break;
            }
          }

          /*
           * Set defaults for domain name and hostname
           */

          char buf[MAXHOSTNAMELEN + 1] = { 0 };
          char *ptr = NULL;
          FILE *d = NULL;

          have_domain = 0;
          
          /*
           * Default to the domain name returned via DHCP, if any
           */
          if ((d = fopen(DOMAIN_FILE, "r")) != NULL)
          {
            char domain[_UTSNAME_LENGTH + 1] = { 0 };
            fgets(domain, _UTSNAME_LENGTH, d);
            fclose(d);
            unlink(DOMAIN_FILE);

            if (!empty_str(domain) && verify_hostname(domain) == 0)
            {
              debconf_set(client, "netcfg/get_domain", domain);
              have_domain = 1;
            }
          }

          /*
           * Default to the hostname returned via DHCP, if any,
           * otherwise to the requested DHCP hostname
           * otherwise to the hostname found in DNS for the IP address
           * of the interface
           */
          if (
               gethostname(buf, sizeof(buf)) == 0
               && !empty_str(buf)
               && strcmp(buf, "(none)")
               && verify_hostname(buf) == 0
          ) {
            di_info("DHCP hostname: \"%s\"", buf);
            debconf_set(client, "netcfg/get_hostname", buf);
          }
          else if (dhostname)
          {
            debconf_set(client, "netcfg/get_hostname", dhostname);
          }
          else
          {
            struct ifreq ifr;
            struct in_addr d_ipaddr = { 0 };

            ifr.ifr_addr.sa_family = AF_INET;
            strncpy(ifr.ifr_name, interface, IFNAMSIZ);
            if (ioctl(skfd, SIOCGIFADDR, &ifr) == 0)
            {
              d_ipaddr = ((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr;
              seed_hostname_from_dns(client, &d_ipaddr);
            }
            else
              di_warning("ioctl failed (%s)", strerror(errno));
          }

          /*
           * Default to the domain name that is the domain part
           * of the hostname, if any
           */
          if (have_domain == 0 && (ptr = strchr(buf, '.')) != NULL)
          {
            debconf_set(client, "netcfg/get_domain", ptr + 1);
            have_domain = 1;
          }

          /* Make sure we have NS going if the DHCP server didn't serve it up */
          if (resolv_conf_entries() <= 0)
          {
            char *nameservers = NULL;
            
            if (netcfg_get_nameservers (client, &nameservers) == GO_BACK)
            {
              state = ASK_OPTIONS;
              break;
            }

            netcfg_nameservers_to_array (nameservers, nameserver_array);
          }
          
          state = HOSTNAME;
        }
        break;

      case ASK_OPTIONS:
        /* DHCP client may still be running */
        switch (ask_dhcp_options (client))
        {
          case GO_BACK:
            kill_dhcp_client();
            return 10;
          case REPLY_RETRY_WITH_HOSTNAME:
            state = DHCP_HOSTNAME;
            break;
          case REPLY_CONFIGURE_MANUALLY:
            kill_dhcp_client();
            return 15;
            break;
          case REPLY_DONT_CONFIGURE:
            kill_dhcp_client();
            netcfg_write_loopback();
            state = HOSTNAME_SANS_NETWORK;
            break;
          case REPLY_RETRY_AUTOCONFIG:
            if (dhcp_pid > 0)
              state = POLL;
            else
            {
              kill_dhcp_client();
              state = START;
            }
            break;
          case REPLY_RECONFIGURE_WIFI:
            {
              /* oh god - a NESTED satan machine */
              enum { ABORT, DONE, ESSID, WEP } wifistate = ESSID;
              for (;;)
              {
                switch (wifistate)
                {
                  case ESSID:
                    wifistate = ( netcfg_wireless_set_essid(client, interface, "high") == GO_BACK ) ?
                      ABORT : WEP;
                    break;
                  case WEP:
                    wifistate = ( netcfg_wireless_set_wep (client, interface) == GO_BACK ) ?
                      ESSID : DONE;
                    break;
                  case ABORT:
                    state = ASK_OPTIONS;
                    break;
                  case DONE:
                    if (dhcp_pid > 0)
                      state = POLL;
                    else
                    {
                      kill_dhcp_client();
                      state = START;
                    }
                    break;
                }
                if (wifistate == DONE || wifistate == ABORT)
                  break;
              }
            }
            break;
        }
        break;

      case DHCP_HOSTNAME:
        /* DHCP client may still be running */
        if (netcfg_get_hostname(client, "netcfg/dhcp_hostname", &dhostname, 0))
          state = ASK_OPTIONS;
        else
        {
          if (empty_str(dhostname))
          {
            free(dhostname);
            dhostname = NULL;
          }
          kill_dhcp_client();
          state = START;
        }
        break;

      case HOSTNAME:
        if (netcfg_get_hostname (client, "netcfg/get_hostname", &hostname, 1))
        {
          /*
           * Going back to POLL wouldn't make much sense.
           * However, it does make sense to go to the retry
           * screen where the user can elect to retry DHCP with
           * a requested DHCP hostname, etc.
           */
          state = ASK_OPTIONS;
        }
        else
          state = DOMAIN;
        break;

      case DOMAIN:
        if (!have_domain && netcfg_get_domain (client, &domain))
          state = HOSTNAME;
        else
        {
          netcfg_write_common(ipaddress, hostname, domain);
          netcfg_write_dhcp(interface, dhostname);
          return 0;
        }
        break;

      case HOSTNAME_SANS_NETWORK:
        if (netcfg_get_hostname (client, "netcfg/get_hostname", &hostname, 0))
          state = ASK_OPTIONS;
        else
        {
          struct in_addr null_ipaddress;
          null_ipaddress.s_addr = 0;
          netcfg_write_common(null_ipaddress, hostname, NULL);
          return 0;
        }
        break;
    }
  }
} 

/* returns number of 'nameserver' entries in resolv.conf */
int resolv_conf_entries (void)
{
	FILE *f;
	int count = 0;

	if ((f = fopen("/etc/resolv.conf", "r")) != NULL)
	{
		char buf[256];

		while (fgets(buf, 256, f) != NULL)
		{
			char *ptr;
			
			if ((ptr = strchr(buf, ' ')) != NULL)
			{
				*ptr = '\0';
				if (strcmp(buf, "nameserver") == 0)
					count++;
			}
		}

		fclose(f);
	}
	else
		count = -1;

	return count;
}