Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Net::SFTP does not catch errors

by mikedshelton (Beadle)
on Sep 30, 2003 at 20:09 UTC ( [id://295431]=perlquestion: print w/replies, xml ) Need Help??

mikedshelton has asked for the wisdom of the Perl Monks concerning the following question:

Have read all the posts on Net::SFTP however still need assistance to catch errors when using $sftp->put()

$sftp->put() does not appear to return a status (success or failure) that can be caught in $@; I have confirmed client side info (file, directory) and connection (host, user, password) is correct

What I'd like to do is catch errors, check for errors caught, kill program when errors exist and write these errors to a log file and the screen.

use strict; use Net::SFTP; $sftp->put( $file, $target_file, \&callback ) or die( "\nDied : Error $!");

returns "Died..." everytime... BTW the file is written successfully to host and $! is null so tried wrapping with eval{} without success

eval { $sftp->put( $file, $target_file, \&callback ); }<br> if ( $@ ) { writelog(...) die("Died Here: Error $!"); }

When trying to write to a known invalid directory on host, we never make it in "if ($@)"

The errors (below) don't appear to be caught in $@.   Errors received are:
  • Couldn't get handle: No such file or directory at /usr/local/lib/perl5/site_perl/5.6.0/Net/SFTP.pm line 165. (this is the known invalid dir/ on host)

  • Couldn't write to remote file: Failure at /usr/local/lib/perl5/site_perl/5.6.0/Net/SFTP.pm line 260. (this is sftp trying to put() file)

  • Couldn't close file: No such file or directory at /usr/local/lib/perl5/site_perl/5.6.0/Net/SFTP.pm line 200. (this is sftp trying to close file)

Any assistance would be appreciated
Mike

janitored by ybiC: Fix broken <code> tags, unordered list and formatting of errors for legibility

Replies are listed 'Best First'.
Re: Net::SFTP does not catch errors
by idsfa (Vicar) on Oct 01, 2003 at 03:12 UTC

    Yup, put() sure doesn't return a status. The pod nods in the direction of saying so, by not indicating any return value. The code confirms this, with no return values for the put function. The lower level commands such as do_write, however, do return a status. You may need to roll your own ...

    $sfh = $sftp->do_open($target_file ...); . . . #loop over source file, reading blocks of $data $status = $sftp->do_write($sfh, $offset, $data) &bail_out($status) if ($status != SSH2_FX_OK); . . . $sftp->do_close($sfh);

    In fact, this is pretty much exactly what the put() method does, but it discards the $status. Might have a patch to submit there ...


    Remember, when you stare long into the abyss, you could have been home eating ice cream.
      bug reports submitted
Re: Net::SFTP does not catch errors
by lsherwood (Beadle) on Dec 30, 2007 at 03:19 UTC
    I've noticed a similar "feature" when using 'get' with Net::SFTP. Allow me to expand on your comment a bit, as I suspect 'get' and 'put' operate identically in this regard. Here is some code very similar to yours, using 'get':
    eval { $sftp->get($remote_file, $local_file) or die "GET FAILED"; }; print "eval says: $@" if $@;
    The problem is that with the 'die' statement present in the get command, the 'die' phrase is passed to $@ whether or not the get command succeeds. As best I can determine, this is a flaw, or at least a limitation, in Net::SFTP. In addition, even when not using the eval statement to enclose the sftp->get command, a die statement is executed even when the 'get' command succeeds. This kills the script right after completing the 'get'.

    Removing the 'die' statement but keeping the eval in place results in:

    1) No $@ generated if the get succeeds -- this is fine;

    2) $@ is created if the get fails and the problem is with the local file path;

    3) No $@ generated if the get fails and the problem is in the remote file path -- the get failure remains undetected by eval and so it is not stored in $@.

    It appears to me that:

    a) die should not be used with $sftp->get commands because even on a successful 'get';

    .... i) if eval is used, an unwanted $@ is created from the 'die' statement;

    .... ii) if eval is not used the 'die' kills the feed script (although the get succeeds);

    b) Eval should be used to generate $@ so that get 'failures' related to the local file path are detected;

    c) Using eval does not fully verify the get succeeded because it will ignore get failures due to problems with the remote file path.

    If anyone knows a workaround to this limitation with Net::SFTP, please post it here.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://295431]
Approved by jdtoronto
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (2)
As of 2024-04-20 05:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found