Package: smb4k / 1.2.1-2~deb8u1

Find-the-mount-umount-commands-in-the-helper.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
From: Alexander Reinholdt <alexander.reinholdt@kdemail.net>
Date: Wed, 10 May 2017 10:23:34 +0200
Subject: Find the mount/umount commands in the helper

Instead of trusting what we get passed in
CVE-2017-8849
---
 core/smb4kglobal.cpp         | 65 +++++++++++++++++++++++++++++++++++-
 core/smb4kglobal.h           | 16 ++++++++-
 core/smb4kmounter_p.cpp      | 78 ++++----------------------------------------
 helpers/CMakeLists.txt       |  6 +++-
 helpers/smb4kmounthelper.cpp | 51 +++++++++++++++++++++++++++--
 5 files changed, 139 insertions(+), 77 deletions(-)

diff --git a/core/smb4kglobal.cpp b/core/smb4kglobal.cpp
index 172016f..818a78a 100644
--- a/core/smb4kglobal.cpp
+++ b/core/smb4kglobal.cpp
@@ -2,7 +2,7 @@
     smb4kglobal  -  This is the global namespace for Smb4K.
                              -------------------
     begin                : Sa Apr 2 2005
-    copyright            : (C) 2005-2014 by Alexander Reinholdt
+    copyright            : (C) 2005-2017 by Alexander Reinholdt
     email                : alexander.reinholdt@kdemail.net
  ***************************************************************************/
 
@@ -851,3 +851,66 @@ QStringList Smb4KGlobal::whitelistedMountArguments()
 #endif
 
 
+const QString Smb4KGlobal::findMountExecutable()
+{
+  QString mount;
+  QStringList paths;
+  paths << "/bin";
+  paths << "/sbin";
+  paths << "/usr/bin";
+  paths << "/usr/sbin";
+  paths << "/usr/local/bin";
+  paths << "/usr/local/sbin";
+
+  for (int i = 0; i < paths.size(); ++i)
+  {
+#if defined(Q_OS_LINUX)
+    mount = KGlobal::dirs()->findExe("mount.cifs", paths.at(i));
+#elif defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)
+    mount = KGlobal::dirs()->findExe("mount_smbfs", paths.at(i));
+#endif
+
+    if (!mount.isEmpty())
+    {
+      break;
+    }
+    else
+    {
+      continue;
+    }
+  }
+  
+  return mount;
+}
+
+
+const QString Smb4KGlobal::findUmountExecutable()
+{
+  // Find the umount program.
+  QString umount;
+  QStringList paths;
+  paths << "/bin";
+  paths << "/sbin";
+  paths << "/usr/bin";
+  paths << "/usr/sbin";
+  paths << "/usr/local/bin";
+  paths << "/usr/local/sbin";
+
+  for ( int i = 0; i < paths.size(); ++i )
+  {
+    umount = KGlobal::dirs()->findExe("umount", paths.at(i));
+
+    if (!umount.isEmpty())
+    {
+      break;
+    }
+    else
+    {
+      continue;
+    }
+  }
+  
+  return umount;
+}
+
+
diff --git a/core/smb4kglobal.h b/core/smb4kglobal.h
index db1805b..0ef377d 100644
--- a/core/smb4kglobal.h
+++ b/core/smb4kglobal.h
@@ -2,7 +2,7 @@
     smb4kglobal  -  This is the global namespace for Smb4K.
                              -------------------
     begin                : Sa Apr 2 2005
-    copyright            : (C) 2005-2014 by Alexander Reinholdt
+    copyright            : (C) 2005-2017 by Alexander Reinholdt
     email                : alexander.reinholdt@kdemail.net
  ***************************************************************************/
 
@@ -455,6 +455,20 @@ namespace Smb4KGlobal
    */
   KDE_EXPORT QStringList whitelistedMountArguments();
 #endif
+  
+  /**
+   * Find the mount executable on the system.
+   * 
+   * @returns the path of the mount executable.
+   */
+  KDE_EXPORT const QString findMountExecutable();
+  
+  /**
+   * Find the umount executable on the system.
+   * 
+   * @returns the path of the umount executable.
+   */
+  KDE_EXPORT const QString findUmountExecutable();
 };
 
 #endif
diff --git a/core/smb4kmounter_p.cpp b/core/smb4kmounter_p.cpp
index 63a87ed..342052a 100644
--- a/core/smb4kmounter_p.cpp
+++ b/core/smb4kmounter_p.cpp
@@ -207,30 +207,7 @@ bool Smb4KMountJob::createMountAction(Smb4KShare *share, Action *action)
 //
 bool Smb4KMountJob::fillArgs(Smb4KShare *share, QMap<QString, QVariant>& map)
 {
-  // Find the mount program.
-  QString mount;
-  QStringList paths;
-  paths << "/bin";
-  paths << "/sbin";
-  paths << "/usr/bin";
-  paths << "/usr/sbin";
-  paths << "/usr/local/bin";
-  paths << "/usr/local/sbin";
-
-  for (int i = 0; i < paths.size(); ++i)
-  {
-    mount = KGlobal::dirs()->findExe("mount.cifs", paths.at(i));
-
-    if (!mount.isEmpty())
-    {
-      map.insert("mh_command", mount);
-      break;
-    }
-    else
-    {
-      continue;
-    }
-  }
+  const QString mount = findMountExecutable();
 
   if (mount.isEmpty())
   {
@@ -242,6 +219,8 @@ bool Smb4KMountJob::fillArgs(Smb4KShare *share, QMap<QString, QVariant>& map)
     // Do nothing
   }
   
+  map.insert("mh_command", mount);
+  
   // Mount arguments.
   QMap<QString, QString> global_options = globalSambaOptions();
   Smb4KCustomOptions *options  = Smb4KCustomOptionsManager::self()->findOptions(share);
@@ -729,30 +708,7 @@ bool Smb4KMountJob::fillArgs(Smb4KShare *share, QMap<QString, QVariant>& map)
 //
 bool Smb4KMountJob::fillArgs(Smb4KShare *share, QMap<QString, QVariant>& map)
 {
-  // Find the mount program.
-  QString mount;
-  QStringList paths;
-  paths << "/bin";
-  paths << "/sbin";
-  paths << "/usr/bin";
-  paths << "/usr/sbin";
-  paths << "/usr/local/bin";
-  paths << "/usr/local/sbin";
-
-  for (int i = 0; i < paths.size(); ++i)
-  {
-    mount = KGlobal::dirs()->findExe("mount_smbfs", paths.at(i));
-
-    if (!mount.isEmpty())
-    {
-      map.insert("mh_command", mount);
-      break;
-    }
-    else
-    {
-      continue;
-    }
-  }
+  const QString mount = findMountExecutable();
 
   if (mount.isEmpty())
   {
@@ -764,6 +720,8 @@ bool Smb4KMountJob::fillArgs(Smb4KShare *share, QMap<QString, QVariant>& map)
     // Do nothing
   }
   
+  map.insert("mh_command", mount);
+  
   // Mount arguments.
   QMap<QString, QString> global_options = globalSambaOptions();
   Smb4KCustomOptions *options  = Smb4KCustomOptionsManager::self()->findOptions(share);
@@ -1253,29 +1211,7 @@ bool Smb4KUnmountJob::createUnmountAction(Smb4KShare *share, Action *action)
     // Do nothing
   }
   
-  // Find the umount program.
-  QString umount;
-  QStringList paths;
-  paths << "/bin";
-  paths << "/sbin";
-  paths << "/usr/bin";
-  paths << "/usr/sbin";
-  paths << "/usr/local/bin";
-  paths << "/usr/local/sbin";
-
-  for ( int i = 0; i < paths.size(); ++i )
-  {
-    umount = KGlobal::dirs()->findExe("umount", paths.at(i));
-
-    if (!umount.isEmpty())
-    {
-      break;
-    }
-    else
-    {
-      continue;
-    }
-  }
+  const QString umount = findUmountExecutable();
 
   if (umount.isEmpty() && !m_silent)
   {
diff --git a/helpers/CMakeLists.txt b/helpers/CMakeLists.txt
index e9e670b..cd4228d 100644
--- a/helpers/CMakeLists.txt
+++ b/helpers/CMakeLists.txt
@@ -1,7 +1,11 @@
+include_directories(
+  ${CMAKE_SOURCE_DIR}/core
+  ${CMAKE_BINARY_DIR}/core )
+
 set( smb4kmounthelper_SRCS smb4kmounthelper.cpp )
 
 kde4_add_executable( mounthelper ${smb4kmounthelper_SRCS} )
-target_link_libraries( mounthelper ${KDE4_KDECORE_LIBS} ${KDE4_KIO_LIBS} )
+target_link_libraries( mounthelper smb4kcore ${KDE4_KDECORE_LIBS} ${KDE4_KIO_LIBS} )
 install( TARGETS mounthelper DESTINATION ${LIBEXEC_INSTALL_DIR} )
 
 kde4_install_auth_helper_files( mounthelper net.sourceforge.smb4k.mounthelper root )
diff --git a/helpers/smb4kmounthelper.cpp b/helpers/smb4kmounthelper.cpp
index a2f2fed..7959020 100644
--- a/helpers/smb4kmounthelper.cpp
+++ b/helpers/smb4kmounthelper.cpp
@@ -29,6 +29,7 @@
 
 // application specific includes
 #include "smb4kmounthelper.h"
+#include "core/smb4kglobal.h"
 
 // Qt includes
 #include <QProcessEnvironment>
@@ -43,12 +44,35 @@
 #include <kmountpoint.h>
 #include <kurl.h>
 
+using namespace Smb4KGlobal;
+
 KDE4_AUTH_HELPER_MAIN( "net.sourceforge.smb4k.mounthelper", Smb4KMountHelper )
 
 
 ActionReply Smb4KMountHelper::mount(const QVariantMap &args)
 {
   ActionReply reply;
+  
+  //
+  // Get the mount executable
+  //
+  const QString mount = findMountExecutable();
+  
+  //
+  // Check the executable
+  //
+  if (mount != args["mh_command"].toString())
+  {
+    // Something weird is going on, bail out.
+    reply.setErrorCode(ActionReply::HelperError);
+    reply.setErrorDescription(i18n("Wrong executable passed. Bailing out."));
+    return reply;
+  }
+  else
+  {
+    // Do nothing
+  }
+  
   // The mountpoint is a unique and can be used to
   // find the share.
   reply.addData("mh_mountpoint", args["mh_mountpoint"]);
@@ -75,12 +99,12 @@ ActionReply Smb4KMountHelper::mount(const QVariantMap &args)
   // Set the mount command here.
   QStringList command;
 #if defined(Q_OS_LINUX)
-  command << args["mh_command"].toString();
+  command << mount;
   command << args["mh_unc"].toString();
   command << args["mh_mountpoint"].toString();
   command << args["mh_options"].toStringList();
 #elif defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)
-  command << args["mh_command"].toString();
+  command << mount;
   command << args["mh_options"].toStringList();
   command << args["mh_unc"].toString();
   command << args["mh_mountpoint"].toString();
@@ -161,6 +185,27 @@ ActionReply Smb4KMountHelper::mount(const QVariantMap &args)
 ActionReply Smb4KMountHelper::unmount(const QVariantMap &args)
 {
   ActionReply reply;
+  
+  //
+  // Get the umount executable
+  //
+  const QString umount = findUmountExecutable();
+  
+  //
+  // Check the executable
+  //
+  if (umount != args["mh_command"].toString())
+  {
+    // Something weird is going on, bail out.
+    reply.setErrorCode(ActionReply::HelperError);
+    reply.setErrorDescription(i18n("Wrong executable passed. Bailing out."));
+    return reply;
+  }
+  else
+  {
+    // Do nothing
+  }
+  
   // The mountpoint is a unique and can be used to
   // find the share.
   reply.addData("mh_mountpoint", args["mh_mountpoint"]);
@@ -208,7 +253,7 @@ ActionReply Smb4KMountHelper::unmount(const QVariantMap &args)
   
   // Set the umount command here.
   QStringList command;
-  command << args["mh_command"].toString();
+  command << umount;
   command << args["mh_options"].toStringList();
   command << args["mh_mountpoint"].toString();