/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandos-client.c

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
                                   argp_parse(), ARGP_KEY_ARG,
81
81
                                   ARGP_KEY_END, ARGP_ERR_UNKNOWN */
82
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
 
                                   sigaction(), SIGTERM, sigaction,
84
 
                                   sig_atomic_t */
 
83
                                   sigaction(), SIGTERM, sig_atomic_t,
 
84
                                   raise() */
85
85
 
86
86
#ifdef __linux__
87
87
#include <sys/klog.h>           /* klogctl() */
249
249
    return false;
250
250
  }
251
251
  
252
 
  return true; 
 
252
  return true;
253
253
}
254
254
 
255
255
/* 
514
514
static void empty_log(__attribute__((unused)) AvahiLogLevel level,
515
515
                      __attribute__((unused)) const char *txt){}
516
516
 
 
517
sig_atomic_t quit_now = 0;
 
518
int signal_received = 0;
 
519
 
517
520
/* Called when a Mandos server is found */
518
521
static int start_mandos_communication(const char *ip, uint16_t port,
519
522
                                      AvahiIfIndex if_index,
520
523
                                      int af){
521
 
  int ret, tcp_sd;
 
524
  int ret, tcp_sd = -1;
522
525
  ssize_t sret;
523
526
  union {
524
527
    struct sockaddr_in in;
534
537
  gnutls_session_t session;
535
538
  int pf;                       /* Protocol family */
536
539
  
 
540
  if(quit_now){
 
541
    return -1;
 
542
  }
 
543
  
537
544
  switch(af){
538
545
  case AF_INET6:
539
546
    pf = PF_INET6;
559
566
  tcp_sd = socket(pf, SOCK_STREAM, 0);
560
567
  if(tcp_sd < 0){
561
568
    perror("socket");
562
 
    return -1;
 
569
    retval = -1;
 
570
    goto mandos_end;
 
571
  }
 
572
  
 
573
  if(quit_now){
 
574
    goto mandos_end;
563
575
  }
564
576
  
565
577
  memset(&to, 0, sizeof(to));
572
584
  }
573
585
  if(ret < 0 ){
574
586
    perror("inet_pton");
575
 
    return -1;
 
587
    retval = -1;
 
588
    goto mandos_end;
576
589
  }
577
590
  if(ret == 0){
578
591
    fprintf(stderr, "Bad address: %s\n", ip);
579
 
    return -1;
 
592
    retval = -1;
 
593
    goto mandos_end;
580
594
  }
581
595
  if(af == AF_INET6){
582
596
    to.in6.sin6_port = htons(port); /* Spurious warnings from
589
603
      if(if_index == AVAHI_IF_UNSPEC){
590
604
        fprintf(stderr, "An IPv6 link-local address is incomplete"
591
605
                " without a network interface\n");
592
 
        return -1;
 
606
        retval = -1;
 
607
        goto mandos_end;
593
608
      }
594
609
      /* Set the network interface number as scope */
595
610
      to.in6.sin6_scope_id = (uint32_t)if_index;
600
615
                                     -Wunreachable-code */
601
616
  }
602
617
  
 
618
  if(quit_now){
 
619
    goto mandos_end;
 
620
  }
 
621
  
603
622
  if(debug){
604
623
    if(af == AF_INET6 and if_index != AVAHI_IF_UNSPEC){
605
624
      char interface[IF_NAMESIZE];
632
651
    }
633
652
  }
634
653
  
 
654
  if(quit_now){
 
655
    goto mandos_end;
 
656
  }
 
657
  
635
658
  if(af == AF_INET6){
636
659
    ret = connect(tcp_sd, &to.in6, sizeof(to));
637
660
  } else {
639
662
  }
640
663
  if(ret < 0){
641
664
    perror("connect");
642
 
    return -1;
 
665
    retval = -1;
 
666
    goto mandos_end;
 
667
  }
 
668
  
 
669
  if(quit_now){
 
670
    goto mandos_end;
643
671
  }
644
672
  
645
673
  const char *out = mandos_protocol_version;
664
692
        break;
665
693
      }
666
694
    }
 
695
  
 
696
    if(quit_now){
 
697
      goto mandos_end;
 
698
    }
667
699
  }
668
700
  
669
701
  if(debug){
670
702
    fprintf(stderr, "Establishing TLS session with %s\n", ip);
671
703
  }
672
704
  
 
705
  if(quit_now){
 
706
    goto mandos_end;
 
707
  }
 
708
  
673
709
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
674
710
  
 
711
  if(quit_now){
 
712
    goto mandos_end;
 
713
  }
 
714
  
675
715
  do{
676
716
    ret = gnutls_handshake(session);
 
717
    if(quit_now){
 
718
      goto mandos_end;
 
719
    }
677
720
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
678
721
  
679
722
  if(ret != GNUTLS_E_SUCCESS){
693
736
  }
694
737
  
695
738
  while(true){
 
739
    
 
740
    if(quit_now){
 
741
      goto mandos_end;
 
742
    }
 
743
    
696
744
    buffer_capacity = incbuffer(&buffer, buffer_length,
697
745
                                   buffer_capacity);
698
746
    if(buffer_capacity == 0){
701
749
      goto mandos_end;
702
750
    }
703
751
    
 
752
    if(quit_now){
 
753
      goto mandos_end;
 
754
    }
 
755
    
704
756
    sret = gnutls_record_recv(session, buffer+buffer_length,
705
757
                              BUFFER_SIZE);
706
758
    if(sret == 0){
714
766
      case GNUTLS_E_REHANDSHAKE:
715
767
        do{
716
768
          ret = gnutls_handshake(session);
 
769
          
 
770
          if(quit_now){
 
771
            goto mandos_end;
 
772
          }
717
773
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
718
774
        if(ret < 0){
719
775
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
738
794
    fprintf(stderr, "Closing TLS session\n");
739
795
  }
740
796
  
 
797
  if(quit_now){
 
798
    goto mandos_end;
 
799
  }
 
800
  
741
801
  gnutls_bye(session, GNUTLS_SHUT_RDWR);
742
802
  
 
803
  if(quit_now){
 
804
    goto mandos_end;
 
805
  }
 
806
  
743
807
  if(buffer_length > 0){
744
808
    decrypted_buffer_size = pgp_packet_decrypt(buffer,
745
809
                                               buffer_length,
747
811
    if(decrypted_buffer_size >= 0){
748
812
      written = 0;
749
813
      while(written < (size_t) decrypted_buffer_size){
 
814
        if(quit_now){
 
815
          goto mandos_end;
 
816
        }
 
817
        
750
818
        ret = (int)fwrite(decrypted_buffer + written, 1,
751
819
                          (size_t)decrypted_buffer_size - written,
752
820
                          stdout);
772
840
  
773
841
 mandos_end:
774
842
  free(buffer);
775
 
  ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
843
  if(tcp_sd >= 0){
 
844
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
845
  }
776
846
  if(ret == -1){
777
847
    perror("close");
778
848
  }
779
849
  gnutls_deinit(session);
 
850
  if(quit_now){
 
851
    retval = -1;
 
852
  }
780
853
  return retval;
781
854
}
782
855
 
799
872
  /* Called whenever a service has been resolved successfully or
800
873
     timed out */
801
874
  
 
875
  if(quit_now){
 
876
    return;
 
877
  }
 
878
  
802
879
  switch(event){
803
880
  default:
804
881
  case AVAHI_RESOLVER_FAILURE:
841
918
  /* Called whenever a new services becomes available on the LAN or
842
919
     is removed from the LAN */
843
920
  
 
921
  if(quit_now){
 
922
    return;
 
923
  }
 
924
  
844
925
  switch(event){
845
926
  default:
846
927
  case AVAHI_BROWSER_FAILURE:
875
956
  }
876
957
}
877
958
 
878
 
sig_atomic_t quit_now = 0;
879
 
 
880
959
/* stop main loop after sigterm has been called */
881
 
static void handle_sigterm(__attribute__((unused)) int sig){
 
960
static void handle_sigterm(int sig){
882
961
  if(quit_now){
883
962
    return;
884
963
  }
885
964
  quit_now = 1;
 
965
  signal_received = sig;
886
966
  int old_errno = errno;
887
967
  if(mc.simple_poll != NULL){
888
968
    avahi_simple_poll_quit(mc.simple_poll);
900
980
  const char *interface = "eth0";
901
981
  struct ifreq network;
902
982
  int sd = -1;
903
 
  bool interface_taken_up = false;
 
983
  bool take_down_interface = false;
904
984
  uid_t uid;
905
985
  gid_t gid;
906
986
  char *connect_to = NULL;
1049
1129
    exitcode = EXIT_FAILURE;
1050
1130
    goto end;
1051
1131
  }
1052
 
  ret = sigaction(SIGTERM, &sigterm_action, &old_sigterm_action);
1053
 
  if(ret == -1){
1054
 
    perror("sigaction");
1055
 
    exitcode = EXIT_FAILURE;
1056
 
    goto end;
1057
 
  }  
 
1132
  /* Need to check if the handler is SIG_IGN before handling:
 
1133
     | [[info:libc:Initial Signal Actions]] |
 
1134
     | [[info:libc:Basic Signal Handling]]  |
 
1135
  */
 
1136
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
 
1137
  if(ret == -1){
 
1138
    perror("sigaction");
 
1139
    return EXIT_FAILURE;
 
1140
  }
 
1141
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1142
    ret = sigaction(SIGINT, &sigterm_action, NULL);
 
1143
    if(ret == -1){
 
1144
      perror("sigaction");
 
1145
      exitcode = EXIT_FAILURE;
 
1146
      goto end;
 
1147
    }
 
1148
  }
 
1149
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
 
1150
  if(ret == -1){
 
1151
    perror("sigaction");
 
1152
    return EXIT_FAILURE;
 
1153
  }
 
1154
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1155
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
 
1156
    if(ret == -1){
 
1157
      perror("sigaction");
 
1158
      exitcode = EXIT_FAILURE;
 
1159
      goto end;
 
1160
    }
 
1161
  }
 
1162
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
 
1163
  if(ret == -1){
 
1164
    perror("sigaction");
 
1165
    return EXIT_FAILURE;
 
1166
  }
 
1167
  if(old_sigterm_action.sa_handler != SIG_IGN){
 
1168
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
 
1169
    if(ret == -1){
 
1170
      perror("sigaction");
 
1171
      exitcode = EXIT_FAILURE;
 
1172
      goto end;
 
1173
    }
 
1174
  }
1058
1175
  
1059
1176
  /* If the interface is down, bring it up */
1060
1177
  if(interface[0] != '\0'){
 
1178
    if_index = (AvahiIfIndex) if_nametoindex(interface);
 
1179
    if(if_index == 0){
 
1180
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
 
1181
      exitcode = EXIT_FAILURE;
 
1182
      goto end;
 
1183
    }
 
1184
    
 
1185
    if(quit_now){
 
1186
      goto end;
 
1187
    }
 
1188
    
1061
1189
#ifdef __linux__
1062
1190
    /* Lower kernel loglevel to KERN_NOTICE to avoid KERN_INFO
1063
1191
       messages to mess up the prompt */
1100
1228
    }
1101
1229
    if((network.ifr_flags & IFF_UP) == 0){
1102
1230
      network.ifr_flags |= IFF_UP;
 
1231
      take_down_interface = true;
1103
1232
      ret = ioctl(sd, SIOCSIFFLAGS, &network);
1104
1233
      if(ret == -1){
 
1234
        take_down_interface = false;
1105
1235
        perror("ioctl SIOCSIFFLAGS");
1106
1236
        exitcode = EXIT_FAILURE;
1107
1237
#ifdef __linux__
1114
1244
#endif  /* __linux__ */
1115
1245
        goto end;
1116
1246
      }
1117
 
      interface_taken_up = true;
1118
1247
    }
1119
1248
    /* sleep checking until interface is running */
1120
1249
    for(int i=0; i < delay * 4; i++){
1130
1259
        perror("nanosleep");
1131
1260
      }
1132
1261
    }
1133
 
    if(not interface_taken_up){
 
1262
    if(not take_down_interface){
 
1263
      /* We won't need the socket anymore */
1134
1264
      ret = (int)TEMP_FAILURE_RETRY(close(sd));
1135
1265
      if(ret == -1){
1136
1266
        perror("close");
1147
1277
#endif  /* __linux__ */
1148
1278
  }
1149
1279
  
 
1280
  if(quit_now){
 
1281
    goto end;
 
1282
  }
 
1283
  
1150
1284
  uid = getuid();
1151
1285
  gid = getgid();
1152
1286
  
1161
1295
    perror("setuid");
1162
1296
  }
1163
1297
  
 
1298
  if(quit_now){
 
1299
    goto end;
 
1300
  }
 
1301
  
1164
1302
  ret = init_gnutls_global(pubkey, seckey);
1165
1303
  if(ret == -1){
1166
1304
    fprintf(stderr, "init_gnutls_global failed\n");
1170
1308
    gnutls_initialized = true;
1171
1309
  }
1172
1310
  
 
1311
  if(quit_now){
 
1312
    goto end;
 
1313
  }
 
1314
  
 
1315
  tempdir_created = true;
1173
1316
  if(mkdtemp(tempdir) == NULL){
 
1317
    tempdir_created = false;
1174
1318
    perror("mkdtemp");
1175
1319
    goto end;
1176
1320
  }
1177
 
  tempdir_created = true;
 
1321
  
 
1322
  if(quit_now){
 
1323
    goto end;
 
1324
  }
1178
1325
  
1179
1326
  if(not init_gpgme(pubkey, seckey, tempdir)){
1180
1327
    fprintf(stderr, "init_gpgme failed\n");
1184
1331
    gpgme_initialized = true;
1185
1332
  }
1186
1333
  
1187
 
  if(interface[0] != '\0'){
1188
 
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1189
 
    if(if_index == 0){
1190
 
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1191
 
      exitcode = EXIT_FAILURE;
1192
 
      goto end;
1193
 
    }
 
1334
  if(quit_now){
 
1335
    goto end;
1194
1336
  }
1195
1337
  
1196
1338
  if(connect_to != NULL){
1202
1344
      exitcode = EXIT_FAILURE;
1203
1345
      goto end;
1204
1346
    }
 
1347
    
 
1348
    if(quit_now){
 
1349
      goto end;
 
1350
    }
 
1351
    
1205
1352
    uint16_t port;
1206
1353
    errno = 0;
1207
1354
    tmpmax = strtoimax(address+1, &tmp, 10);
1211
1358
      exitcode = EXIT_FAILURE;
1212
1359
      goto end;
1213
1360
    }
 
1361
  
 
1362
    if(quit_now){
 
1363
      goto end;
 
1364
    }
 
1365
    
1214
1366
    port = (uint16_t)tmpmax;
1215
1367
    *address = '\0';
1216
1368
    address = connect_to;
1221
1373
    } else {
1222
1374
      af = AF_INET;
1223
1375
    }
 
1376
    
 
1377
    if(quit_now){
 
1378
      goto end;
 
1379
    }
 
1380
    
1224
1381
    ret = start_mandos_communication(address, port, if_index, af);
1225
1382
    if(ret < 0){
1226
1383
      exitcode = EXIT_FAILURE;
1229
1386
    }
1230
1387
    goto end;
1231
1388
  }
1232
 
    
 
1389
  
 
1390
  if(quit_now){
 
1391
    goto end;
 
1392
  }
 
1393
  
1233
1394
  {
1234
1395
    AvahiServerConfig config;
1235
1396
    /* Do not publish any local Zeroconf records */
1256
1417
    goto end;
1257
1418
  }
1258
1419
  
 
1420
  if(quit_now){
 
1421
    goto end;
 
1422
  }
 
1423
  
1259
1424
  /* Create the Avahi service browser */
1260
1425
  sb = avahi_s_service_browser_new(mc.server, if_index,
1261
1426
                                   AVAHI_PROTO_UNSPEC, "_mandos._tcp",
1267
1432
    goto end;
1268
1433
  }
1269
1434
  
 
1435
  if(quit_now){
 
1436
    goto end;
 
1437
  }
 
1438
  
1270
1439
  /* Run the main loop */
1271
1440
  
1272
1441
  if(debug){
1302
1471
  }
1303
1472
  
1304
1473
  /* Take down the network interface */
1305
 
  if(interface_taken_up){
 
1474
  if(take_down_interface){
1306
1475
    ret = ioctl(sd, SIOCGIFFLAGS, &network);
1307
1476
    if(ret == -1){
1308
1477
      perror("ioctl SIOCGIFFLAGS");
1363
1532
    }
1364
1533
  }
1365
1534
  
 
1535
  if(quit_now){
 
1536
    sigemptyset(&old_sigterm_action.sa_mask);
 
1537
    old_sigterm_action.sa_handler = SIG_DFL;
 
1538
    ret = sigaction(signal_received, &old_sigterm_action, NULL);
 
1539
    if(ret == -1){
 
1540
      perror("sigaction");
 
1541
    }
 
1542
    raise(signal_received);
 
1543
  }
 
1544
  
1366
1545
  return exitcode;
1367
1546
}