Linux.pm 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package Net::OpenSSH::More::Linux;
  2. use strict;
  3. use warnings;
  4. use parent 'Net::OpenSSH::More';
  5. use File::Slurper ();
  6. =head1 NAME
  7. Net::OpenSSH::More::Linux
  8. =head1 DESCRIPTION
  9. This module contains useful methods to complement the parent's when in use on
  10. all linux environments.
  11. =head1 ASSUMPTIONS
  12. This module assumes that both the local and remote machine are some variant of GNU/Linux.
  13. Don't use this if that's not the case.
  14. =cut
  15. ###################
  16. # PRIVATE METHODS #
  17. ###################
  18. my $get_addrs_for_iface = sub {
  19. my ( $self, $interface, $proto, $use_local ) = @_;
  20. $interface ||= $self->get_primary_adapter($use_local);
  21. $self->diag("Attempting to get $proto address for interface $interface");
  22. my $regex = $proto eq 'inet' ? '[\d\.]+' : '[\da-f:]+'; # Close enough
  23. my $cmd = "ip -f $proto addr show $interface scope global dynamic";
  24. my $ip = $use_local ? `$cmd` : $self->cmd($cmd);
  25. my @matches = $ip =~ m/$proto\s+($regex)/g;
  26. return @matches;
  27. };
  28. #######################
  29. # END PRIVATE METHODS #
  30. #######################
  31. =head2 METHODS
  32. =head3 B<get_primary_adapter>
  33. So, on linux, there's no "primary" adapter, just the "correct" adapter
  34. for whatever given route. As such, what's the best way to determine
  35. this?
  36. This is a method to guess the "best" device interface from /proc/net/route.
  37. How does it determine this? By the "metric" stat -- the lower the better,
  38. as the lower the cost, the higher the preference.
  39. If you have set the metric improperly, you'll get bad results, but that's
  40. nothing to do with the code here.
  41. Optionally accepts a truthy arg to indicate whether you want this for the
  42. local host instead of the remote host.
  43. =cut
  44. sub get_primary_adapter {
  45. my ( $self, $use_local ) = @_;
  46. my %interfaces;
  47. my $proc_route_path = $use_local ? File::Slurper::read_text('/proc/net/route') : $self->sftp->get_content('/proc/net/route');
  48. foreach my $line ( split( /\n/, $proc_route_path ) ) {
  49. # Iface Destination Gateway Flags RefCt Use Metric Mask MTU Wndow IRTT
  50. my ( $interface, $metric ) = $line =~ m/^(.+?)\s+[0-9A-F]{8}\s+[0-9A-F]{8}\s+\d+\s+\d+\s+\d+\s+(\d+)\s+[0-9A-F]{8}\s+\d+\s+\d+\s+\d+\s*$/;
  51. push @{ $interfaces{$metric} }, $interface if ( length $interface && defined $metric );
  52. }
  53. my $lowest_metric = ( sort keys %interfaces )[0];
  54. my $interface = $interfaces{$lowest_metric}->[0] if defined $lowest_metric && $interfaces{$lowest_metric};
  55. return $interface || 'eth0';
  56. }
  57. =head2 get_remote_ips
  58. Returns HASH of the IPv4 & IPv6 SLAAC addresses of an optionally provided interface.
  59. If no interfaces is provided, use the default interface.
  60. CAVEATS: This uses the 'ip' tool, so if your system is too old for this, perhaps consider
  61. writing your own getter for local IPs.
  62. =cut
  63. sub get_remote_ips {
  64. my ( $self, $interface ) = @_;
  65. return (
  66. 'v4' => [ $get_addrs_for_iface->( $self, $interface, 'inet' ) ],
  67. 'v6' => [ $get_addrs_for_iface->( $self, $interface, 'inet6' ) ],
  68. );
  69. }
  70. =head2 get_local_ips
  71. Returns HASH of the IPv4 & IPv6 SLAAC addresses of an optionally provided interface.
  72. If no interfaces is provided, use the default interface.
  73. This one fetches it from the local machine and not the remote host, as sometimes
  74. that can be useful (say in the context of a test where you need this info).
  75. Same caveats that exist for get_remote_ips apply here.
  76. =cut
  77. sub get_local_ips {
  78. my ( $self, $interface ) = @_;
  79. return (
  80. 'v4' => [ $get_addrs_for_iface->( $self, $interface, 'inet', 1 ) ],
  81. 'v6' => [ $get_addrs_for_iface->( $self, $interface, 'inet6', 1 ) ],
  82. );
  83. }
  84. =head2 copy
  85. Effectively the same thing as `cp $SOURCE $DEST` on the remote server.
  86. =cut
  87. sub copy {
  88. my ( $self, $SOURCE, $DEST ) = @_;
  89. return $self->cmd( qw{cp -a}, $SOURCE, $DEST );
  90. }
  91. 1;