/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: 2014-06-15 01:01:14 UTC
  • Revision ID: teddy@recompile.se-20140615010114-fzz32p5naoo8nket
mandos-client: Better error messages.

* Makefile (run-client): Update message to match current messages.
                         Also set GNOME_KEYRING_CONTROL to empty
                         string to block pam_gnome_keyring.
* plugins.d/mandos-client (raise_privileges): Do not print errors.
  (raise_privileges_permanently): - '' -
  (lower_privileges): - '' -
  (lower_privileges_permanently): - '' -
  (run_network_hooks): Print errors from above functions correctly.
  (bring_up_interface, take_down_interface, main): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
1458
1458
  error_t ret_errno = 0;
1459
1459
  if(seteuid(0) == -1){
1460
1460
    ret_errno = errno;
1461
 
    perror_plus("seteuid");
1462
1461
  }
1463
1462
  errno = old_errno;
1464
1463
  return ret_errno;
1475
1474
  }
1476
1475
  if(setuid(0) == -1){
1477
1476
    ret_errno = errno;
1478
 
    perror_plus("seteuid");
1479
1477
  }
1480
1478
  errno = old_errno;
1481
1479
  return ret_errno;
1488
1486
  error_t ret_errno = 0;
1489
1487
  if(seteuid(uid) == -1){
1490
1488
    ret_errno = errno;
1491
 
    perror_plus("seteuid");
1492
1489
  }
1493
1490
  errno = old_errno;
1494
1491
  return ret_errno;
1501
1498
  error_t ret_errno = 0;
1502
1499
  if(setuid(uid) == -1){
1503
1500
    ret_errno = errno;
1504
 
    perror_plus("setuid");
1505
1501
  }
1506
1502
  errno = old_errno;
1507
1503
  return ret_errno;
1554
1550
    if(hook_pid == 0){
1555
1551
      /* Child */
1556
1552
      /* Raise privileges */
1557
 
      if(raise_privileges_permanently() != 0){
 
1553
      errno = raise_privileges_permanently();
 
1554
      if(errno != 0){
1558
1555
        perror_plus("Failed to raise privileges");
1559
1556
        _exit(EX_NOPERM);
1560
1557
      }
1733
1730
    /* Raise privileges */
1734
1731
    ret_errno = raise_privileges();
1735
1732
    if(ret_errno != 0){
 
1733
      errno = ret_errno;
1736
1734
      perror_plus("Failed to raise privileges");
1737
1735
    }
1738
1736
    
1842
1840
    /* Raise privileges */
1843
1841
    ret_errno = raise_privileges();
1844
1842
    if(ret_errno != 0){
 
1843
      errno = ret_errno;
1845
1844
      perror_plus("Failed to raise privileges");
1846
1845
    }
1847
1846
    
2556
2555
  {
2557
2556
    ret_errno = raise_privileges();
2558
2557
    if(ret_errno != 0){
 
2558
      errno = ret_errno;
2559
2559
      perror_plus("Failed to raise privileges");
2560
2560
    } else {
2561
2561
      
2584
2584
    
2585
2585
    ret_errno = lower_privileges_permanently();
2586
2586
    if(ret_errno != 0){
 
2587
      errno = ret_errno;
2587
2588
      perror_plus("Failed to lower privileges permanently");
2588
2589
    }
2589
2590
  }