Linux.pm 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. Method to retrieve the primary device interface from /proc/net/route
  34. Optionally accepts a truthy arg to indicate whether you want this for the
  35. local host instead of the remote host.
  36. =cut
  37. sub get_primary_adapter {
  38. my ( $self, $use_local ) = @_;
  39. my %interfaces;
  40. my $proc_route_path = do {
  41. if ($use_local) {
  42. File::Slurper::read_text('/proc/net/route');
  43. }
  44. else {
  45. $self->cmd("cat /proc/net/route");
  46. }
  47. };
  48. foreach my $line ( split( /\n/, $proc_route_path ) ) {
  49. if ( $line =~ m/^(.+?)\s*0{8}\s.*?(\d+)\s+0{8}\s*(?:\d+\s*){3}$/ ) {
  50. my ( $interface, $metric ) = ( $1, $2 );
  51. push @{ $interfaces{$metric} }, $interface;
  52. }
  53. }
  54. my $lowest_metric = ( sort keys %interfaces )[0];
  55. my $interface = $interfaces{$lowest_metric}[0];
  56. return $interface || 'eth0';
  57. }
  58. =head2 get_remote_ips
  59. Returns HASH of the IPv4 & IPv6 SLAAC addresses of an optionally provided interface.
  60. If no interfaces is provided, use the default interface.
  61. CAVEATS: This uses the 'ip' tool, so if your system is too old for this, perhaps consider
  62. writing your own getter for local IPs.
  63. =cut
  64. sub get_remote_ips {
  65. my ( $self, $interface ) = @_;
  66. return (
  67. 'v4' => [ $get_addrs_for_iface->( $self, $interface, 'inet' ) ],
  68. 'v6' => [ $get_addrs_for_iface->( $self, $interface, 'inet6' ) ],
  69. );
  70. }
  71. =head2 get_local_ips
  72. Returns HASH of the IPv4 & IPv6 SLAAC addresses of an optionally provided interface.
  73. If no interfaces is provided, use the default interface.
  74. This one fetches it from the local machine and not the remote host, as sometimes
  75. that can be useful (say in the context of a test where you need this info).
  76. Same caveats that exist for get_remote_ips apply here.
  77. =cut
  78. sub get_local_ips {
  79. my ( $self, $interface ) = @_;
  80. return (
  81. 'v4' => [ $get_addrs_for_iface->( $self, $interface, 'inet', 1 ) ],
  82. 'v6' => [ $get_addrs_for_iface->( $self, $interface, 'inet6', 1 ) ],
  83. );
  84. }
  85. =head2 copy
  86. Effectively the same thing as `cp $SOURCE $DEST` on the remote server.
  87. =cut
  88. sub copy ( $self, $SOURCE, $DEST ) {
  89. return $self->send("cp -a $SOURCE $DEST");
  90. }
  91. 1;