/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

  • Committer: Teddy Hogeborn
  • Date: 2009-11-01 00:10:28 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091101001028-hf4mbnoz1yum7bkf
* Makefile (BROKEN_PIE): Add comment.
* debian/rules (BROKEN_PIE): - '' -
* plugin-runner.c: Really always use <sysexits.h> exit codes.
* plugins.d/mandos-client.c: Use <sysexits.h> exit codes.
  (start_mandos_communication): Make sure errno is always set when
                                returning -1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                                   stdout, ferror(), remove() */
44
44
#include <stdint.h>             /* uint16_t, uint32_t */
45
45
#include <stddef.h>             /* NULL, size_t, ssize_t */
46
 
#include <stdlib.h>             /* free(), EXIT_SUCCESS, EXIT_FAILURE,
47
 
                                   srand(), strtof(), abort() */
 
46
#include <stdlib.h>             /* free(), EXIT_SUCCESS, srand(),
 
47
                                   strtof(), abort() */
48
48
#include <stdbool.h>            /* bool, false, true */
49
49
#include <string.h>             /* memset(), strcmp(), strlen(),
50
50
                                   strerror(), asprintf(), strcpy() */
82
82
#include <signal.h>             /* sigemptyset(), sigaddset(),
83
83
                                   sigaction(), SIGTERM, sig_atomic_t,
84
84
                                   raise() */
85
 
#include <sysexits.h>           /* EX_OSERR, EX_USAGE */
 
85
#include <sysexits.h>           /* EX_OSERR, EX_USAGE, EX_UNAVAILABLE,
 
86
                                   EX_NOHOST, EX_IOERR, EX_PROTOCOL */
86
87
 
87
88
#ifdef __linux__
88
89
#include <sys/klog.h>           /* klogctl() */
553
554
  gnutls_session_t session;
554
555
  int pf;                       /* Protocol family */
555
556
  
 
557
  errno = 0;
 
558
  
556
559
  if(quit_now){
 
560
    errno = EINTR;
557
561
    return -1;
558
562
  }
559
563
  
566
570
    break;
567
571
  default:
568
572
    fprintf(stderr, "Bad address family: %d\n", af);
 
573
    errno = EINVAL;
569
574
    return -1;
570
575
  }
571
576
  
581
586
  
582
587
  tcp_sd = socket(pf, SOCK_STREAM, 0);
583
588
  if(tcp_sd < 0){
 
589
    int e = errno;
584
590
    perror("socket");
 
591
    errno = e;
585
592
    goto mandos_end;
586
593
  }
587
594
  
588
595
  if(quit_now){
 
596
    errno = EINTR;
589
597
    goto mandos_end;
590
598
  }
591
599
  
598
606
    ret = inet_pton(af, ip, &to.in.sin_addr);
599
607
  }
600
608
  if(ret < 0 ){
 
609
    int e = errno;
601
610
    perror("inet_pton");
 
611
    errno = e;
602
612
    goto mandos_end;
603
613
  }
604
614
  if(ret == 0){
 
615
    int e = errno;
605
616
    fprintf(stderr, "Bad address: %s\n", ip);
 
617
    errno = e;
606
618
    goto mandos_end;
607
619
  }
608
620
  if(af == AF_INET6){
616
628
      if(if_index == AVAHI_IF_UNSPEC){
617
629
        fprintf(stderr, "An IPv6 link-local address is incomplete"
618
630
                " without a network interface\n");
 
631
        errno = EINVAL;
619
632
        goto mandos_end;
620
633
      }
621
634
      /* Set the network interface number as scope */
628
641
  }
629
642
  
630
643
  if(quit_now){
 
644
    errno = EINTR;
631
645
    goto mandos_end;
632
646
  }
633
647
  
664
678
  }
665
679
  
666
680
  if(quit_now){
 
681
    errno = EINTR;
667
682
    goto mandos_end;
668
683
  }
669
684
  
673
688
    ret = connect(tcp_sd, &to.in, sizeof(to)); /* IPv4 */
674
689
  }
675
690
  if(ret < 0){
 
691
    int e = errno;
676
692
    perror("connect");
 
693
    errno = e;
677
694
    goto mandos_end;
678
695
  }
679
696
  
680
697
  if(quit_now){
 
698
    errno = EINTR;
681
699
    goto mandos_end;
682
700
  }
683
701
  
688
706
    ret = (int)TEMP_FAILURE_RETRY(write(tcp_sd, out + written,
689
707
                                   out_size - written));
690
708
    if(ret == -1){
 
709
      int e = errno;
691
710
      perror("write");
 
711
      errno = e;
692
712
      goto mandos_end;
693
713
    }
694
714
    written += (size_t)ret;
704
724
    }
705
725
  
706
726
    if(quit_now){
 
727
      errno = EINTR;
707
728
      goto mandos_end;
708
729
    }
709
730
  }
713
734
  }
714
735
  
715
736
  if(quit_now){
 
737
    errno = EINTR;
716
738
    goto mandos_end;
717
739
  }
718
740
  
719
741
  gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t) tcp_sd);
720
742
  
721
743
  if(quit_now){
 
744
    errno = EINTR;
722
745
    goto mandos_end;
723
746
  }
724
747
  
725
748
  do {
726
749
    ret = gnutls_handshake(session);
727
750
    if(quit_now){
 
751
      errno = EINTR;
728
752
      goto mandos_end;
729
753
    }
730
754
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
734
758
      fprintf(stderr, "*** GnuTLS Handshake failed ***\n");
735
759
      gnutls_perror(ret);
736
760
    }
 
761
    errno = EPROTO;
737
762
    goto mandos_end;
738
763
  }
739
764
  
747
772
  while(true){
748
773
    
749
774
    if(quit_now){
 
775
      errno = EINTR;
750
776
      goto mandos_end;
751
777
    }
752
778
    
753
779
    buffer_capacity = incbuffer(&buffer, buffer_length,
754
780
                                   buffer_capacity);
755
781
    if(buffer_capacity == 0){
 
782
      int e = errno;
756
783
      perror("incbuffer");
 
784
      errno = e;
757
785
      goto mandos_end;
758
786
    }
759
787
    
760
788
    if(quit_now){
 
789
      errno = EINTR;
761
790
      goto mandos_end;
762
791
    }
763
792
    
776
805
          ret = gnutls_handshake(session);
777
806
          
778
807
          if(quit_now){
 
808
            errno = EINTR;
779
809
            goto mandos_end;
780
810
          }
781
811
        } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
782
812
        if(ret < 0){
783
813
          fprintf(stderr, "*** GnuTLS Re-handshake failed ***\n");
784
814
          gnutls_perror(ret);
 
815
          errno = EPROTO;
785
816
          goto mandos_end;
786
817
        }
787
818
        break;
789
820
        fprintf(stderr, "Unknown error while reading data from"
790
821
                " encrypted session with Mandos server\n");
791
822
        gnutls_bye(session, GNUTLS_SHUT_RDWR);
 
823
        errno = EIO;
792
824
        goto mandos_end;
793
825
      }
794
826
    } else {
801
833
  }
802
834
  
803
835
  if(quit_now){
 
836
    errno = EINTR;
804
837
    goto mandos_end;
805
838
  }
806
839
  
807
840
  do {
808
841
    ret = gnutls_bye(session, GNUTLS_SHUT_RDWR);
809
842
    if(quit_now){
 
843
      errno = EINTR;
810
844
      goto mandos_end;
811
845
    }
812
846
  } while(ret == GNUTLS_E_AGAIN or ret == GNUTLS_E_INTERRUPTED);
821
855
      written = 0;
822
856
      while(written < (size_t) decrypted_buffer_size){
823
857
        if(quit_now){
 
858
          errno = EINTR;
824
859
          goto mandos_end;
825
860
        }
826
861
        
828
863
                          (size_t)decrypted_buffer_size - written,
829
864
                          stdout);
830
865
        if(ret == 0 and ferror(stdout)){
 
866
          int e = errno;
831
867
          if(debug){
832
868
            fprintf(stderr, "Error writing encrypted data: %s\n",
833
869
                    strerror(errno));
834
870
          }
 
871
          errno = e;
835
872
          goto mandos_end;
836
873
        }
837
874
        written += (size_t)ret;
843
880
  /* Shutdown procedure */
844
881
  
845
882
 mandos_end:
846
 
  free(decrypted_buffer);
847
 
  free(buffer);
848
 
  if(tcp_sd >= 0){
849
 
    ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
850
 
  }
851
 
  if(ret == -1){
852
 
    perror("close");
853
 
  }
854
 
  gnutls_deinit(session);
855
 
  if(quit_now){
856
 
    retval = -1;
 
883
  {
 
884
    int e = errno;
 
885
    free(decrypted_buffer);
 
886
    free(buffer);
 
887
    if(tcp_sd >= 0){
 
888
      ret = (int)TEMP_FAILURE_RETRY(close(tcp_sd));
 
889
    }
 
890
    if(ret == -1){
 
891
      if(e == 0){
 
892
        e = errno;
 
893
      }
 
894
      perror("close");
 
895
    }
 
896
    gnutls_deinit(session);
 
897
    if(quit_now){
 
898
      e = EINTR;
 
899
      retval = -1;
 
900
    }
 
901
    errno = e;
857
902
  }
858
903
  return retval;
859
904
}
1159
1204
  mc.simple_poll = avahi_simple_poll_new();
1160
1205
  if(mc.simple_poll == NULL){
1161
1206
    fprintf(stderr, "Avahi: Failed to create simple poll object.\n");
1162
 
    exitcode = EXIT_FAILURE;
 
1207
    exitcode = EX_UNAVAILABLE;
1163
1208
    goto end;
1164
1209
  }
1165
1210
  
1167
1212
  ret = sigaddset(&sigterm_action.sa_mask, SIGINT);
1168
1213
  if(ret == -1){
1169
1214
    perror("sigaddset");
1170
 
    exitcode = EXIT_FAILURE;
 
1215
    exitcode = EX_OSERR;
1171
1216
    goto end;
1172
1217
  }
1173
1218
  ret = sigaddset(&sigterm_action.sa_mask, SIGHUP);
1174
1219
  if(ret == -1){
1175
1220
    perror("sigaddset");
1176
 
    exitcode = EXIT_FAILURE;
 
1221
    exitcode = EX_OSERR;
1177
1222
    goto end;
1178
1223
  }
1179
1224
  ret = sigaddset(&sigterm_action.sa_mask, SIGTERM);
1180
1225
  if(ret == -1){
1181
1226
    perror("sigaddset");
1182
 
    exitcode = EXIT_FAILURE;
 
1227
    exitcode = EX_OSERR;
1183
1228
    goto end;
1184
1229
  }
1185
1230
  /* Need to check if the handler is SIG_IGN before handling:
1189
1234
  ret = sigaction(SIGINT, NULL, &old_sigterm_action);
1190
1235
  if(ret == -1){
1191
1236
    perror("sigaction");
1192
 
    return EXIT_FAILURE;
 
1237
    return EX_OSERR;
1193
1238
  }
1194
1239
  if(old_sigterm_action.sa_handler != SIG_IGN){
1195
1240
    ret = sigaction(SIGINT, &sigterm_action, NULL);
1196
1241
    if(ret == -1){
1197
1242
      perror("sigaction");
1198
 
      exitcode = EXIT_FAILURE;
 
1243
      exitcode = EX_OSERR;
1199
1244
      goto end;
1200
1245
    }
1201
1246
  }
1202
1247
  ret = sigaction(SIGHUP, NULL, &old_sigterm_action);
1203
1248
  if(ret == -1){
1204
1249
    perror("sigaction");
1205
 
    return EXIT_FAILURE;
 
1250
    return EX_OSERR;
1206
1251
  }
1207
1252
  if(old_sigterm_action.sa_handler != SIG_IGN){
1208
1253
    ret = sigaction(SIGHUP, &sigterm_action, NULL);
1209
1254
    if(ret == -1){
1210
1255
      perror("sigaction");
1211
 
      exitcode = EXIT_FAILURE;
 
1256
      exitcode = EX_OSERR;
1212
1257
      goto end;
1213
1258
    }
1214
1259
  }
1215
1260
  ret = sigaction(SIGTERM, NULL, &old_sigterm_action);
1216
1261
  if(ret == -1){
1217
1262
    perror("sigaction");
1218
 
    return EXIT_FAILURE;
 
1263
    return EX_OSERR;
1219
1264
  }
1220
1265
  if(old_sigterm_action.sa_handler != SIG_IGN){
1221
1266
    ret = sigaction(SIGTERM, &sigterm_action, NULL);
1222
1267
    if(ret == -1){
1223
1268
      perror("sigaction");
1224
 
      exitcode = EXIT_FAILURE;
 
1269
      exitcode = EX_OSERR;
1225
1270
      goto end;
1226
1271
    }
1227
1272
  }
1231
1276
    if_index = (AvahiIfIndex) if_nametoindex(interface);
1232
1277
    if(if_index == 0){
1233
1278
      fprintf(stderr, "No such interface: \"%s\"\n", interface);
1234
 
      exitcode = EXIT_FAILURE;
 
1279
      exitcode = EX_UNAVAILABLE;
1235
1280
      goto end;
1236
1281
    }
1237
1282
    
1260
1305
    sd = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1261
1306
    if(sd < 0){
1262
1307
      perror("socket");
1263
 
      exitcode = EXIT_FAILURE;
 
1308
      exitcode = EX_OSERR;
1264
1309
#ifdef __linux__
1265
1310
      if(restore_loglevel){
1266
1311
        ret = klogctl(7, NULL, 0);
1289
1334
        }
1290
1335
      }
1291
1336
#endif  /* __linux__ */
1292
 
      exitcode = EXIT_FAILURE;
 
1337
      exitcode = EX_OSERR;
1293
1338
      /* Lower privileges */
1294
1339
      errno = 0;
1295
1340
      ret = seteuid(uid);
1305
1350
      if(ret == -1){
1306
1351
        take_down_interface = false;
1307
1352
        perror("ioctl SIOCSIFFLAGS");
1308
 
        exitcode = EXIT_FAILURE;
 
1353
        exitcode = EX_OSERR;
1309
1354
#ifdef __linux__
1310
1355
        if(restore_loglevel){
1311
1356
          ret = klogctl(7, NULL, 0);
1377
1422
  ret = init_gnutls_global(pubkey, seckey);
1378
1423
  if(ret == -1){
1379
1424
    fprintf(stderr, "init_gnutls_global failed\n");
1380
 
    exitcode = EXIT_FAILURE;
 
1425
    exitcode = EX_UNAVAILABLE;
1381
1426
    goto end;
1382
1427
  } else {
1383
1428
    gnutls_initialized = true;
1400
1445
  
1401
1446
  if(not init_gpgme(pubkey, seckey, tempdir)){
1402
1447
    fprintf(stderr, "init_gpgme failed\n");
1403
 
    exitcode = EXIT_FAILURE;
 
1448
    exitcode = EX_UNAVAILABLE;
1404
1449
    goto end;
1405
1450
  } else {
1406
1451
    gpgme_initialized = true;
1416
1461
    char *address = strrchr(connect_to, ':');
1417
1462
    if(address == NULL){
1418
1463
      fprintf(stderr, "No colon in address\n");
1419
 
      exitcode = EXIT_FAILURE;
 
1464
      exitcode = EX_USAGE;
1420
1465
      goto end;
1421
1466
    }
1422
1467
    
1430
1475
    if(errno != 0 or tmp == address+1 or *tmp != '\0'
1431
1476
       or tmpmax != (uint16_t)tmpmax){
1432
1477
      fprintf(stderr, "Bad port number\n");
1433
 
      exitcode = EXIT_FAILURE;
 
1478
      exitcode = EX_USAGE;
1434
1479
      goto end;
1435
1480
    }
1436
1481
  
1455
1500
    
1456
1501
    ret = start_mandos_communication(address, port, if_index, af);
1457
1502
    if(ret < 0){
1458
 
      exitcode = EXIT_FAILURE;
 
1503
      switch(errno){
 
1504
      case ENETUNREACH:
 
1505
      case EHOSTDOWN:
 
1506
      case EHOSTUNREACH:
 
1507
        exitcode = EX_NOHOST;
 
1508
        break;
 
1509
      case EINVAL:
 
1510
        exitcode = EX_USAGE;
 
1511
        break;
 
1512
      case EIO:
 
1513
        exitcode = EX_IOERR;
 
1514
        break;
 
1515
      case EPROTO:
 
1516
        exitcode = EX_PROTOCOL;
 
1517
        break;
 
1518
      default:
 
1519
        exitcode = EX_OSERR;
 
1520
        break;
 
1521
      }
1459
1522
    } else {
1460
1523
      exitcode = EXIT_SUCCESS;
1461
1524
    }
1488
1551
  if(mc.server == NULL){
1489
1552
    fprintf(stderr, "Failed to create Avahi server: %s\n",
1490
1553
            avahi_strerror(error));
1491
 
    exitcode = EXIT_FAILURE;
 
1554
    exitcode = EX_UNAVAILABLE;
1492
1555
    goto end;
1493
1556
  }
1494
1557
  
1503
1566
  if(sb == NULL){
1504
1567
    fprintf(stderr, "Failed to create service browser: %s\n",
1505
1568
            avahi_strerror(avahi_server_errno(mc.server)));
1506
 
    exitcode = EXIT_FAILURE;
 
1569
    exitcode = EX_UNAVAILABLE;
1507
1570
    goto end;
1508
1571
  }
1509
1572