/mandos/release

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

« back to all changes in this revision

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

  • Committer: Teddy Hogeborn
  • Date: 2016-03-02 16:45:38 UTC
  • mto: (237.7.594 trunk)
  • mto: This revision was merged to the branch mainline in revision 335.
  • Revision ID: teddy@recompile.se-20160302164538-n9ocll4izthzw1ov
Ignore any error from initramfs-tools' "configure_networking".

* initramfs-tools-script: Wrap call to "configure_networking" with
  "set +e" and "set -e", since configure_networking was not designed
  to run in a "set -e" environment.

Closes: 816513
Thanks: Carlos Alberto Lopez Perez <clopez@igalia.com>
Thanks: Ben Hutchings <ben@decadent.org.uk>

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008-2018 Teddy Hogeborn
13
 
 * Copyright © 2008-2018 Björn Påhlsson
14
 
 * 
15
 
 * This file is part of Mandos.
16
 
 * 
17
 
 * Mandos is free software: you can redistribute it and/or modify it
18
 
 * under the terms of the GNU General Public License as published by
19
 
 * the Free Software Foundation, either version 3 of the License, or
20
 
 * (at your option) any later version.
21
 
 * 
22
 
 * Mandos is distributed in the hope that it will be useful, but
 
12
 * Copyright © 2008-2016 Teddy Hogeborn
 
13
 * Copyright © 2008-2016 Björn Påhlsson
 
14
 * 
 
15
 * This program is free software: you can redistribute it and/or
 
16
 * modify it under the terms of the GNU General Public License as
 
17
 * published by the Free Software Foundation, either version 3 of the
 
18
 * License, or (at your option) any later version.
 
19
 * 
 
20
 * This program is distributed in the hope that it will be useful, but
23
21
 * WITHOUT ANY WARRANTY; without even the implied warranty of
24
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25
23
 * General Public License for more details.
26
24
 * 
27
25
 * You should have received a copy of the GNU General Public License
28
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
26
 * along with this program.  If not, see
 
27
 * <http://www.gnu.org/licenses/>.
29
28
 * 
30
29
 * Contact the authors at <mandos@recompile.se>.
31
30
 */
48
47
                                   strtof(), abort() */
49
48
#include <stdbool.h>            /* bool, false, true */
50
49
#include <string.h>             /* strcmp(), strlen(), strerror(),
51
 
                                   asprintf(), strncpy(), strsignal()
52
 
                                */
 
50
                                   asprintf(), strncpy() */
53
51
#include <sys/ioctl.h>          /* ioctl */
54
52
#include <sys/types.h>          /* socket(), inet_pton(), sockaddr,
55
53
                                   sockaddr_in6, PF_INET6,
613
611
        }
614
612
        params.size += (unsigned int)bytes_read;
615
613
      }
616
 
      close(dhpfile);
617
614
      if(params.data == NULL){
618
615
        dhparamsfilename = NULL;
619
616
      }
628
625
                     safer_gnutls_strerror(ret));
629
626
        dhparamsfilename = NULL;
630
627
      }
631
 
      free(params.data);
632
628
    } while(false);
633
629
  }
634
630
  if(dhparamsfilename == NULL){
821
817
 
822
818
/* Set effective uid to 0, return errno */
823
819
__attribute__((warn_unused_result))
824
 
int raise_privileges(void){
825
 
  int old_errno = errno;
826
 
  int ret = 0;
 
820
error_t raise_privileges(void){
 
821
  error_t old_errno = errno;
 
822
  error_t ret_errno = 0;
827
823
  if(seteuid(0) == -1){
828
 
    ret = errno;
 
824
    ret_errno = errno;
829
825
  }
830
826
  errno = old_errno;
831
 
  return ret;
 
827
  return ret_errno;
832
828
}
833
829
 
834
830
/* Set effective and real user ID to 0.  Return errno. */
835
831
__attribute__((warn_unused_result))
836
 
int raise_privileges_permanently(void){
837
 
  int old_errno = errno;
838
 
  int ret = raise_privileges();
839
 
  if(ret != 0){
 
832
error_t raise_privileges_permanently(void){
 
833
  error_t old_errno = errno;
 
834
  error_t ret_errno = raise_privileges();
 
835
  if(ret_errno != 0){
840
836
    errno = old_errno;
841
 
    return ret;
 
837
    return ret_errno;
842
838
  }
843
839
  if(setuid(0) == -1){
844
 
    ret = errno;
 
840
    ret_errno = errno;
845
841
  }
846
842
  errno = old_errno;
847
 
  return ret;
 
843
  return ret_errno;
848
844
}
849
845
 
850
846
/* Set effective user ID to unprivileged saved user ID */
851
847
__attribute__((warn_unused_result))
852
 
int lower_privileges(void){
853
 
  int old_errno = errno;
854
 
  int ret = 0;
 
848
error_t lower_privileges(void){
 
849
  error_t old_errno = errno;
 
850
  error_t ret_errno = 0;
855
851
  if(seteuid(uid) == -1){
856
 
    ret = errno;
 
852
    ret_errno = errno;
857
853
  }
858
854
  errno = old_errno;
859
 
  return ret;
 
855
  return ret_errno;
860
856
}
861
857
 
862
858
/* Lower privileges permanently */
863
859
__attribute__((warn_unused_result))
864
 
int lower_privileges_permanently(void){
865
 
  int old_errno = errno;
866
 
  int ret = 0;
 
860
error_t lower_privileges_permanently(void){
 
861
  error_t old_errno = errno;
 
862
  error_t ret_errno = 0;
867
863
  if(setuid(uid) == -1){
868
 
    ret = errno;
 
864
    ret_errno = errno;
869
865
  }
870
866
  errno = old_errno;
871
 
  return ret;
 
867
  return ret_errno;
872
868
}
873
869
 
874
870
/* Helper function to add_local_route() and delete_local_route() */
1081
1077
    bool match = false;
1082
1078
    {
1083
1079
      char *interface = NULL;
1084
 
      while((interface = argz_next(mc->interfaces,
1085
 
                                   mc->interfaces_size,
1086
 
                                   interface))){
 
1080
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
1081
                                 interface))){
1087
1082
        if(if_nametoindex(interface) == (unsigned int)if_index){
1088
1083
          match = true;
1089
1084
          break;
1242
1237
           with an explicit route added with the server's address.
1243
1238
           
1244
1239
           Avahi bug reference:
1245
 
           https://lists.freedesktop.org/archives/avahi/2010-February/001833.html
 
1240
           http://lists.freedesktop.org/archives/avahi/2010-February/001833.html
1246
1241
           https://bugs.debian.org/587961
1247
1242
        */
1248
1243
        if(debug){
1428
1423
                                               &decrypted_buffer, mc);
1429
1424
    if(decrypted_buffer_size >= 0){
1430
1425
      
1431
 
      clearerr(stdout);
1432
1426
      written = 0;
1433
1427
      while(written < (size_t) decrypted_buffer_size){
1434
1428
        if(quit_now){
1450
1444
        }
1451
1445
        written += (size_t)ret;
1452
1446
      }
1453
 
      ret = fflush(stdout);
1454
 
      if(ret != 0){
1455
 
        int e = errno;
1456
 
        if(debug){
1457
 
          fprintf_plus(stderr, "Error writing encrypted data: %s\n",
1458
 
                       strerror(errno));
1459
 
        }
1460
 
        errno = e;
1461
 
        goto mandos_end;
1462
 
      }
1463
1447
      retval = 0;
1464
1448
    }
1465
1449
  }
1496
1480
  return retval;
1497
1481
}
1498
1482
 
 
1483
__attribute__((nonnull))
1499
1484
static void resolve_callback(AvahiSServiceResolver *r,
1500
1485
                             AvahiIfIndex interface,
1501
1486
                             AvahiProtocol proto,
1638
1623
__attribute__((nonnull, warn_unused_result))
1639
1624
bool get_flags(const char *ifname, struct ifreq *ifr){
1640
1625
  int ret;
1641
 
  int old_errno;
 
1626
  error_t ret_errno;
1642
1627
  
1643
1628
  int s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP);
1644
1629
  if(s < 0){
1645
 
    old_errno = errno;
 
1630
    ret_errno = errno;
1646
1631
    perror_plus("socket");
1647
 
    errno = old_errno;
 
1632
    errno = ret_errno;
1648
1633
    return false;
1649
1634
  }
1650
1635
  strncpy(ifr->ifr_name, ifname, IF_NAMESIZE);
1652
1637
  ret = ioctl(s, SIOCGIFFLAGS, ifr);
1653
1638
  if(ret == -1){
1654
1639
    if(debug){
1655
 
      old_errno = errno;
 
1640
      ret_errno = errno;
1656
1641
      perror_plus("ioctl SIOCGIFFLAGS");
1657
 
      errno = old_errno;
 
1642
      errno = ret_errno;
1658
1643
    }
1659
 
    close(s);
1660
1644
    return false;
1661
1645
  }
1662
 
  close(s);
1663
1646
  return true;
1664
1647
}
1665
1648
 
1926
1909
      return;
1927
1910
    }
1928
1911
  }
1929
 
  int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
1930
 
  if(devnull == -1){
1931
 
    perror_plus("open(\"/dev/null\", O_RDONLY)");
1932
 
    return;
1933
 
  }
1934
1912
  int numhooks = scandirat(hookdir_fd, ".", &direntries,
1935
1913
                           runnable_hook, alphasort);
1936
1914
  if(numhooks == -1){
1937
1915
    perror_plus("scandir");
1938
 
    close(devnull);
1939
1916
    return;
1940
1917
  }
1941
1918
  struct dirent *direntry;
1942
1919
  int ret;
 
1920
  int devnull = (int)TEMP_FAILURE_RETRY(open("/dev/null", O_RDONLY));
 
1921
  if(devnull == -1){
 
1922
    perror_plus("open(\"/dev/null\", O_RDONLY)");
 
1923
    return;
 
1924
  }
1943
1925
  for(int i = 0; i < numhooks; i++){
1944
1926
    direntry = direntries[i];
1945
1927
    if(debug){
2089
2071
}
2090
2072
 
2091
2073
__attribute__((nonnull, warn_unused_result))
2092
 
int bring_up_interface(const char *const interface,
2093
 
                       const float delay){
2094
 
  int old_errno = errno;
 
2074
error_t bring_up_interface(const char *const interface,
 
2075
                           const float delay){
 
2076
  error_t old_errno = errno;
2095
2077
  int ret;
2096
2078
  struct ifreq network;
2097
2079
  unsigned int if_index = if_nametoindex(interface);
2107
2089
  }
2108
2090
  
2109
2091
  if(not interface_is_up(interface)){
2110
 
    int ret_errno = 0;
2111
 
    int ioctl_errno = 0;
 
2092
    error_t ret_errno = 0, ioctl_errno = 0;
2112
2093
    if(not get_flags(interface, &network)){
2113
2094
      ret_errno = errno;
2114
2095
      fprintf_plus(stderr, "Failed to get flags for interface "
2201
2182
  
2202
2183
  /* Sleep checking until interface is running.
2203
2184
     Check every 0.25s, up to total time of delay */
2204
 
  for(int i = 0; i < delay * 4; i++){
 
2185
  for(int i=0; i < delay * 4; i++){
2205
2186
    if(interface_is_running(interface)){
2206
2187
      break;
2207
2188
    }
2217
2198
}
2218
2199
 
2219
2200
__attribute__((nonnull, warn_unused_result))
2220
 
int take_down_interface(const char *const interface){
2221
 
  int old_errno = errno;
 
2201
error_t take_down_interface(const char *const interface){
 
2202
  error_t old_errno = errno;
2222
2203
  struct ifreq network;
2223
2204
  unsigned int if_index = if_nametoindex(interface);
2224
2205
  if(if_index == 0){
2227
2208
    return ENXIO;
2228
2209
  }
2229
2210
  if(interface_is_up(interface)){
2230
 
    int ret_errno = 0;
2231
 
    int ioctl_errno = 0;
 
2211
    error_t ret_errno = 0, ioctl_errno = 0;
2232
2212
    if(not get_flags(interface, &network) and debug){
2233
2213
      ret_errno = errno;
2234
2214
      fprintf_plus(stderr, "Failed to get flags for interface "
2484
2464
                         .args_doc = "",
2485
2465
                         .doc = "Mandos client -- Get and decrypt"
2486
2466
                         " passwords from a Mandos server" };
2487
 
    ret_errno = argp_parse(&argp, argc, argv,
2488
 
                           ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
2489
 
    switch(ret_errno){
 
2467
    ret = argp_parse(&argp, argc, argv,
 
2468
                     ARGP_IN_ORDER | ARGP_NO_HELP, 0, NULL);
 
2469
    switch(ret){
2490
2470
    case 0:
2491
2471
      break;
2492
2472
    case ENOMEM:
2493
2473
    default:
2494
 
      errno = ret_errno;
 
2474
      errno = ret;
2495
2475
      perror_plus("argp_parse");
2496
2476
      exitcode = EX_OSERR;
2497
2477
      goto end;
2503
2483
  
2504
2484
  {
2505
2485
    /* Work around Debian bug #633582:
2506
 
       <https://bugs.debian.org/633582> */
 
2486
       <http://bugs.debian.org/633582> */
2507
2487
    
2508
2488
    /* Re-raise privileges */
2509
 
    ret = raise_privileges();
2510
 
    if(ret != 0){
2511
 
      errno = ret;
 
2489
    ret_errno = raise_privileges();
 
2490
    if(ret_errno != 0){
 
2491
      errno = ret_errno;
2512
2492
      perror_plus("Failed to raise privileges");
2513
2493
    } else {
2514
2494
      struct stat st;
2578
2558
      }
2579
2559
      
2580
2560
      /* Lower privileges */
2581
 
      ret = lower_privileges();
2582
 
      if(ret != 0){
2583
 
        errno = ret;
 
2561
      ret_errno = lower_privileges();
 
2562
      if(ret_errno != 0){
 
2563
        errno = ret_errno;
2584
2564
        perror_plus("Failed to lower privileges");
2585
2565
      }
2586
2566
    }
2914
2894
    
2915
2895
    /* Allocate a new server */
2916
2896
    mc.server = avahi_server_new(avahi_simple_poll_get(simple_poll),
2917
 
                                 &config, NULL, NULL, &ret);
 
2897
                                 &config, NULL, NULL, &ret_errno);
2918
2898
    
2919
2899
    /* Free the Avahi configuration data */
2920
2900
    avahi_server_config_free(&config);
2923
2903
  /* Check if creating the Avahi server object succeeded */
2924
2904
  if(mc.server == NULL){
2925
2905
    fprintf_plus(stderr, "Failed to create Avahi server: %s\n",
2926
 
                 avahi_strerror(ret));
 
2906
                 avahi_strerror(ret_errno));
2927
2907
    exitcode = EX_UNAVAILABLE;
2928
2908
    goto end;
2929
2909
  }
2964
2944
 end:
2965
2945
  
2966
2946
  if(debug){
2967
 
    if(signal_received){
2968
 
      fprintf_plus(stderr, "%s exiting due to signal %d: %s\n",
2969
 
                   argv[0], signal_received,
2970
 
                   strsignal(signal_received));
2971
 
    } else {
2972
 
      fprintf_plus(stderr, "%s exiting\n", argv[0]);
2973
 
    }
 
2947
    fprintf_plus(stderr, "%s exiting\n", argv[0]);
2974
2948
  }
2975
2949
  
2976
2950
  /* Cleanup things */
3015
2989
  
3016
2990
  /* Re-raise privileges */
3017
2991
  {
3018
 
    ret = raise_privileges();
3019
 
    if(ret != 0){
3020
 
      errno = ret;
 
2992
    ret_errno = raise_privileges();
 
2993
    if(ret_errno != 0){
 
2994
      errno = ret_errno;
3021
2995
      perror_plus("Failed to raise privileges");
3022
2996
    } else {
3023
2997
      
3028
3002
      /* Take down the network interfaces which were brought up */
3029
3003
      {
3030
3004
        char *interface = NULL;
3031
 
        while((interface = argz_next(interfaces_to_take_down,
3032
 
                                     interfaces_to_take_down_size,
3033
 
                                     interface))){
3034
 
          ret = take_down_interface(interface);
3035
 
          if(ret != 0){
3036
 
            errno = ret;
 
3005
        while((interface=argz_next(interfaces_to_take_down,
 
3006
                                   interfaces_to_take_down_size,
 
3007
                                   interface))){
 
3008
          ret_errno = take_down_interface(interface);
 
3009
          if(ret_errno != 0){
 
3010
            errno = ret_errno;
3037
3011
            perror_plus("Failed to take down interface");
3038
3012
          }
3039
3013
        }
3044
3018
      }
3045
3019
    }
3046
3020
    
3047
 
    ret = lower_privileges_permanently();
3048
 
    if(ret != 0){
3049
 
      errno = ret;
 
3021
    ret_errno = lower_privileges_permanently();
 
3022
    if(ret_errno != 0){
 
3023
      errno = ret_errno;
3050
3024
      perror_plus("Failed to lower privileges permanently");
3051
3025
    }
3052
3026
  }
3065
3039
                                                | O_PATH));
3066
3040
    if(dir_fd == -1){
3067
3041
      perror_plus("open");
3068
 
      return;
3069
3042
    }
3070
3043
    int numentries = scandirat(dir_fd, ".", &direntries,
3071
3044
                               notdotentries, alphasort);
3088
3061
            clean_dir_at(dir_fd, direntries[i]->d_name, level+1);
3089
3062
            dret = 0;
3090
3063
          }
3091
 
          if((dret == -1) and (errno != ENOENT)){
 
3064
          if(dret == -1){
3092
3065
            fprintf_plus(stderr, "unlink(\"%s/%s\"): %s\n", dirname,
3093
3066
                         direntries[i]->d_name, strerror(errno));
3094
3067
          }
3098
3071
      
3099
3072
      /* need to clean even if 0 because man page doesn't specify */
3100
3073
      free(direntries);
 
3074
      if(numentries == -1){
 
3075
        perror_plus("scandirat");
 
3076
      }
3101
3077
      dret = unlinkat(base, dirname, AT_REMOVEDIR);
3102
3078
      if(dret == -1 and errno != ENOENT){
3103
3079
        perror_plus("rmdir");