File: ofstub.cc

package info (click to toggle)
dcmtk 3.6.9-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 95,648 kB
  • sloc: ansic: 426,874; cpp: 318,177; makefile: 6,401; sh: 4,341; yacc: 1,026; xml: 482; lex: 321; perl: 277
file content (280 lines) | stat: -rw-r--r-- 8,568 bytes parent folder | download | duplicates (2)
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
/*
 *
 *  Copyright (C) 2024, OFFIS e.V.
 *  All rights reserved.  See COPYRIGHT file for details.
 *
 *  This software and supporting documentation were developed by
 *
 *    OFFIS e.V.
 *    R&D Division Health
 *    Escherweg 2
 *    D-26121 Oldenburg, Germany
 *
 *
 *  Module:  ofstd
 *
 *  Authors: Marco Eichelberg
 *
 *  Purpose: Main function for a proxy stub that simply calls another
 *   command line tool and forwards environment, command line arguments,
 *   standard I/O streams, and return code.
 *
 */

#include "dcmtk/config/osconfig.h"    /* make sure OS specific configuration is included first */
#include "dcmtk/ofstd/ofstub.h"
#include "dcmtk/ofstd/ofwhere.h"
#include "dcmtk/ofstd/ofstd.h"

#ifdef DCMTK_USE_OFLOG_LOGGER_IN_STUB
#include "dcmtk/oflog/oflog.h"
#endif

#ifdef HAVE_WINDOWS_H
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif /* HAVE_WINDOWS_H */

#define EXITCODE_CANNOT_DETERMINE_DIR        90
#define EXITCODE_EXEC_FAILED                 91
#define EXITCODE_ILLEGAL_PARAMS              92

#ifdef _WIN32

// The function argvToCommandLine() is derived from an implementation
// with the following copyright statement:
//
// Copyright (c) 2011-2015 Ryan Prichard
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.

static OFString argvToCommandLine(int argc, char** argv)
{
    OFString result;
    for (int i = 0; i < argc; ++i)
    {
        if (i > 0)
            result.append(1, ' ');
        const char *arg = argv[i];
        OFBool quote_argument =
            strchr(arg, ' ') != NULL ||
            strchr(arg, '\t') != NULL ||
            *arg == '\0';
        if (quote_argument)
            result.append(1, '\"');
        int bsCount = 0;
        for (const char *p = arg; *p != '\0'; ++p)
        {
            if (*p == '\\')
            {
                bsCount++;
            }
            else if (*p == '\"')
            {
                result.append(bsCount * 2 + 1, '\\');
                result.append(1, '\"');
                bsCount = 0;
            }
            else
            {
                if (bsCount > 0) result.append(bsCount, '\\');
                bsCount = 0;
                result.append(1, *p);
            }
        }
        if (quote_argument)
        {
            if (bsCount > 0) result.append(bsCount * 2, '\\');
            result.append(1, '\"');
        }
        else
        {
            if (bsCount > 0) result.append(bsCount, '\\');
        }
    }
    return result;
}

//
// The function  GetLastErrorStdStr() is derived from an implementation
// by Orjan Westin published under the BSD license.
//
static OFString getLastErrorString()
{
  DWORD error = GetLastError();
  if (error)
  {
    LPVOID lpMsgBuf;
    DWORD bufLen = FormatMessage(
        FORMAT_MESSAGE_ALLOCATE_BUFFER |
        FORMAT_MESSAGE_FROM_SYSTEM |
        FORMAT_MESSAGE_IGNORE_INSERTS,
        NULL,
        error,
        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
        (LPTSTR) &lpMsgBuf,
        0, NULL );
    if (bufLen)
    {
      LPCSTR lpMsgStr = (LPCSTR)lpMsgBuf;
      OFString result(lpMsgStr, bufLen);
      LocalFree(lpMsgBuf);
      return result;
    }
  }
  return OFString();
}

#else /* _WIN32 */

extern char** environ; // required to exist by the Single Unix Specification

#endif /* _WIN32 */


int OFstub_main(int argc, char** argv, const char *stubName, const char *appName)
{
    if ((argv==NULL) || (stubName==NULL) || (appName==NULL))
    {
      fprintf(stderr, "F: Illegal NULL parameters passed to OFstub_main\n");
      return EXITCODE_ILLEGAL_PARAMS;
    }

#ifdef DCMTK_USE_OFLOG_LOGGER_IN_STUB
    OFString logger_name = "dcmtk.apps.";
    logger_name += stubName;
    OFLogger logger = OFLog::getLogger(logger_name.c_str());
#endif

#ifdef DCMTK_USE_OFLOG_LOGGER_IN_STUB
      OFLOG_WARN(logger, stubName << " is deprecated, use " << appName << " instead");
#else
      fprintf(stderr, "W: %s is deprecated, use %s instead\n", stubName, appName);
#endif

    // get real path in which the stub executable is located
    int dirname_length = 0;
    int length = OFgetExecutablePath(NULL, 0, &dirname_length);
    if (length == 0)
    {
#ifdef DCMTK_USE_OFLOG_LOGGER_IN_STUB
      OFLOG_FATAL(logger, "Cannot determine location of " << stubName << " executable");
#else
      fprintf(stderr, "F: Cannot determine location of %s executable\n", stubName);
#endif
      return EXITCODE_CANNOT_DETERMINE_DIR;
    }

    char *path = new char[length + 1];
    OFgetExecutablePath(path, length, &dirname_length);
    path[length] = '\0';
    path[dirname_length] = '\0';
    OFString newpath = path;
    delete[] path;

    // add path separator and name of application to call
    newpath += PATH_SEPARATOR;
    newpath += appName;

#ifdef _WIN32

    // add ".exe" extension and quote command if necessary
    if (newpath.find_first_of(" \t") != OFString_npos)
        newpath = "\"" + newpath + ".exe\"";
        else newpath += ".exe";

    if (argc > 1)
    {
        // add arguments to new command line
        newpath += " " + argvToCommandLine(argc-1, argv+1);
    }

    // prepare data for CreateProcessA
    STARTUPINFOA siStartInfo;
    ZeroMemory(&siStartInfo, sizeof(STARTUPINFOA));
    siStartInfo.cb = sizeof(STARTUPINFOA);
    siStartInfo.hStdError = GetStdHandle(STD_ERROR_HANDLE);
    siStartInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
    siStartInfo.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
    siStartInfo.dwFlags |= STARTF_USESTDHANDLES;

    PROCESS_INFORMATION piProcInfo;

    // CreateProcess expects a writable char buffer as command line
    size_t pathlen = newpath.length() + 1;
    char *pathbuf = new char[pathlen];
    OFStandard::strlcpy(pathbuf, newpath.c_str(), pathlen);

    // Create the child process
    BOOL success = CreateProcessA(
       NULL, /* lpApplicationName */
       pathbuf,
       NULL, /* lpProcessAttributes */
       NULL, /* lpThreadAttributes */
       TRUE, /* bInheritHandles */
       0,    /* dwCreationFlags */
       NULL, /* lpEnvironment, NULL for inherit */
       NULL, /* lpCurrentDirectory, NULL for inherit */
       &siStartInfo,
       &piProcInfo);

    delete[] pathbuf;

    if (! success)
    {
        OFString message = getLastErrorString();
#ifdef DCMTK_USE_OFLOG_LOGGER_IN_STUB
        OFLOG_FATAL(logger, "Cannot execute " << newpath << ": " << message);
#else
        fprintf(stderr, "F: Cannot execute %s: %s\n", newpath.c_str(), message.c_str());
#endif
        return EXITCODE_EXEC_FAILED;
    }

    // Wait for the child process to finish, then terminate
    WaitForSingleObject( piProcInfo.hProcess, INFINITE );
    DWORD exit_code = 0;
    GetExitCodeProcess( piProcInfo.hProcess, &exit_code);

    // Close process and thread handles.
    CloseHandle( piProcInfo.hProcess );
    CloseHandle( piProcInfo.hThread );
    return OFstatic_cast(int, exit_code);

#else /* _WIN32 */

    // call the application for which we are a stub
    (void) execve(newpath.c_str(), argv, environ);

    // execv() only returns in case of an error, which is then stored in errno.
    char buf[256];
    const char *message = OFStandard::strerror(errno, buf, sizeof(buf));
    if (message == NULL) message = "(unknown error)";

#ifdef DCMTK_USE_OFLOG_LOGGER_IN_STUB
    OFLOG_FATAL(logger, "Cannot execute " << newpath << ": " << message);
#else
    fprintf(stderr, "F: Cannot execute %s: %s\n", newpath.c_str(), message);
#endif

  // if we have reached this point, then execve() has failed
  return EXITCODE_EXEC_FAILED;

#endif /* _WIN32 */
}