8bb41e3b1d3118aa43f453865ccc09901b1c6d93
[dcpomatic.git] / src / lib / scp_uploader.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "scp_uploader.h"
23 #include "exceptions.h"
24 #include "job.h"
25 #include "config.h"
26 #include "cross.h"
27 #include "compose.hpp"
28 #include <sys/stat.h>
29
30 #include "i18n.h"
31
32
33 using std::function;
34 using std::min;
35 using std::shared_ptr;
36 using std::string;
37
38
39 SCPUploader::SCPUploader (function<void (string)> set_status, function<void (float)> set_progress)
40         : Uploader (set_status, set_progress)
41 {
42         _session = ssh_new ();
43         if (!_session) {
44                 throw NetworkError (String::compose(_("SSH error [%1]"), "ssh_new"));
45         }
46
47         ssh_options_set (_session, SSH_OPTIONS_HOST, Config::instance()->tms_ip().c_str());
48         ssh_options_set (_session, SSH_OPTIONS_USER, Config::instance()->tms_user().c_str());
49         int const port = 22;
50         ssh_options_set (_session, SSH_OPTIONS_PORT, &port);
51
52         int r = ssh_connect (_session);
53         if (r != SSH_OK) {
54                 throw NetworkError (String::compose(_("Could not connect to server %1 (%2)"), Config::instance()->tms_ip(), ssh_get_error(_session)));
55         }
56
57 LIBDCP_DISABLE_WARNINGS
58         r = ssh_is_server_known (_session);
59         if (r == SSH_SERVER_ERROR) {
60                 throw NetworkError (String::compose(_("SSH error [%1] (%2)"), "ssh_is_server_known", ssh_get_error(_session)));
61         }
62 LIBDCP_ENABLE_WARNINGS
63
64         r = ssh_userauth_password (_session, 0, Config::instance()->tms_password().c_str ());
65         if (r != SSH_AUTH_SUCCESS) {
66                 throw NetworkError (String::compose(_("Failed to authenticate with server (%1)"), ssh_get_error(_session)));
67         }
68
69         _scp = ssh_scp_new (_session, SSH_SCP_WRITE | SSH_SCP_RECURSIVE, Config::instance()->tms_path().c_str());
70         if (!_scp) {
71                 throw NetworkError (String::compose(_("SSH error [%1] (%2)"), "ssh_scp_new", ssh_get_error(_session)));
72         }
73
74         r = ssh_scp_init (_scp);
75         if (r != SSH_OK) {
76                 throw NetworkError (String::compose(_("SSH error [%1] (%2)"), "ssh_scp_init", ssh_get_error(_session)));
77         }
78 }
79
80
81 SCPUploader::~SCPUploader ()
82 {
83         ssh_scp_free (_scp);
84         ssh_disconnect (_session);
85         ssh_free (_session);
86 }
87
88
89 void
90 SCPUploader::create_directory (boost::filesystem::path directory)
91 {
92         /* Use generic_string so that we get forward-slashes in the path, even on Windows */
93         int const r = ssh_scp_push_directory (_scp, directory.generic_string().c_str(), S_IRWXU);
94         if (r != SSH_OK) {
95                 throw NetworkError (String::compose(_("Could not create remote directory %1 (%2)"), directory, ssh_get_error(_session)));
96         }
97 }
98
99
100 void
101 SCPUploader::upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size)
102 {
103         auto to_do = boost::filesystem::file_size (from);
104         /* Use generic_string so that we get forward-slashes in the path, even on Windows */
105         ssh_scp_push_file (_scp, to.generic_string().c_str(), to_do, S_IRUSR | S_IWUSR);
106
107         auto f = fopen_boost (from, "rb");
108         if (f == nullptr) {
109                 throw NetworkError (String::compose(_("Could not open %1 to send"), from));
110         }
111
112         boost::uintmax_t buffer_size = 64 * 1024;
113         char buffer[buffer_size];
114
115         while (to_do > 0) {
116                 int const t = min (to_do, buffer_size);
117                 size_t const read = fread (buffer, 1, t, f);
118                 if (read != size_t (t)) {
119                         fclose (f);
120                         throw ReadFileError (from);
121                 }
122
123                 int const r = ssh_scp_write (_scp, buffer, t);
124                 if (r != SSH_OK) {
125                         fclose (f);
126                         throw NetworkError (String::compose(_("Could not write to remote file (%1)"), ssh_get_error(_session)));
127                 }
128                 to_do -= t;
129                 transferred += t;
130
131                 if (total_size > 0) {
132                         _set_progress ((double) transferred / total_size);
133                 }
134         }
135
136         fclose (f);
137 }