getpath.c 21 KB
Newer Older
1 2
/* Return the initial module search path. */

Guido van Rossum's avatar
Guido van Rossum committed
3 4 5
#include "Python.h"
#include "osdefs.h"

6
#include <sys/types.h>
7
#include <string.h>
Guido van Rossum's avatar
Guido van Rossum committed
8

9
#ifdef __APPLE__
10 11 12
#include <mach-o/dyld.h>
#endif

13 14 15
/* Search in some common locations for the associated Python libraries.
 *
 * Two directories must be found, the platform independent directory
16 17 18 19
 * (prefix), containing the common .py and .pyc files, and the platform
 * dependent directory (exec_prefix), containing the shared library
 * modules.  Note that prefix and exec_prefix can be the same directory,
 * but for some installations, they are different.
20
 *
21 22 23 24 25 26
 * Py_GetPath() carries out separate searches for prefix and exec_prefix.
 * Each search tries a number of different locations until a ``landmark''
 * file or directory is found.  If no prefix or exec_prefix is found, a
 * warning message is issued and the preprocessor defined PREFIX and
 * EXEC_PREFIX are used (even though they will not work); python carries on
 * as best as is possible, but most imports will fail.
27 28
 *
 * Before any searches are done, the location of the executable is
Georg Brandl's avatar
Georg Brandl committed
29
 * determined.  If argv[0] has one or more slashes in it, it is used
30 31 32 33
 * unchanged.  Otherwise, it must have been invoked from the shell's path,
 * so we search $PATH for the named executable and use that.  If the
 * executable was not found on $PATH (or there was no $PATH environment
 * variable), the original argv[0] string is used.
34
 *
35 36 37
 * Next, the executable location is examined to see if it is a symbolic
 * link.  If so, the link is chased (correctly interpreting a relative
 * pathname if one is found) and the directory of the link target is used.
38
 *
39 40
 * Finally, argv0_path is set to the directory containing the executable
 * (i.e. the last component is stripped).
41
 *
42 43 44
 * With argv0_path in hand, we perform a number of steps.  The same steps
 * are performed for prefix and for exec_prefix, but with a different
 * landmark.
45 46 47
 *
 * Step 1. Are we running python out of the build directory?  This is
 * checked by looking for a different kind of landmark relative to
48 49 50 51
 * argv0_path.  For prefix, the landmark's path is derived from the VPATH
 * preprocessor variable (taking into account that its value is almost, but
 * not quite, what we need).  For exec_prefix, the landmark is
 * Modules/Setup.  If the landmark is found, we're done.
52 53
 *
 * For the remaining steps, the prefix landmark will always be
54
 * lib/python$VERSION/os.py and the exec_prefix will always be
55
 * lib/python$VERSION/lib-dynload, where $VERSION is Python's version
56 57 58 59
 * number as supplied by the Makefile.  Note that this means that no more
 * build directory checking is performed; if the first step did not find
 * the landmarks, the assumption is that python is running from an
 * installed setup.
60 61
 *
 * Step 2. See if the $PYTHONHOME environment variable points to the
62 63 64 65
 * installed location of the Python libraries.  If $PYTHONHOME is set, then
 * it points to prefix and exec_prefix.  $PYTHONHOME can be a single
 * directory, which is used for both, or the prefix and exec_prefix
 * directories separated by a colon.
66 67
 *
 * Step 3. Try to find prefix and exec_prefix relative to argv0_path,
68 69 70 71
 * backtracking up the path until it is exhausted.  This is the most common
 * step to succeed.  Note that if prefix and exec_prefix are different,
 * exec_prefix is more likely to be found; however if exec_prefix is a
 * subdirectory of prefix, both will be found.
72
 *
73 74 75
 * Step 4. Search the directories pointed to by the preprocessor variables
 * PREFIX and EXEC_PREFIX.  These are supplied by the Makefile but can be
 * passed in as options to the configure script.
76
 *
77 78 79
 * That's it!
 *
 * Well, almost.  Once we have determined prefix and exec_prefix, the
80
 * preprocessor variable PYTHONPATH is used to construct a path.  Each
81 82 83 84 85 86 87 88 89 90 91 92
 * relative path on PYTHONPATH is prefixed with prefix.  Then the directory
 * containing the shared library modules is appended.  The environment
 * variable $PYTHONPATH is inserted in front of it all.  Finally, the
 * prefix and exec_prefix globals are tweaked so they reflect the values
 * expected by other code, by stripping the "lib/python$VERSION/..." stuff
 * off.  If either points to the build directory, the globals are reset to
 * the corresponding preprocessor variables (so sys.prefix will reflect the
 * installation location, even though sys.path points into the build
 * directory).  This seems to make more sense given that currently the only
 * known use of sys.prefix and sys.exec_prefix is for the ILU installation
 * process to find the installed Python tree.
 */
93

94 95 96 97 98
#ifdef __cplusplus
 extern "C" {
#endif


99
#ifndef VERSION
100
#define VERSION "2.1"
101 102 103 104
#endif

#ifndef VPATH
#define VPATH "."
Guido van Rossum's avatar
Guido van Rossum committed
105 106
#endif

107
#ifndef PREFIX
108 109 110 111 112
#  ifdef __VMS
#    define PREFIX ""
#  else
#    define PREFIX "/usr/local"
#  endif
113 114 115
#endif

#ifndef EXEC_PREFIX
116
#define EXEC_PREFIX PREFIX
117 118
#endif

119 120
#ifndef PYTHONPATH
#define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
121
              EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
122
#endif
Guido van Rossum's avatar
Guido van Rossum committed
123

124
#ifndef LANDMARK
125
#define LANDMARK "os.py"
126
#endif
127

128 129
static char prefix[MAXPATHLEN+1];
static char exec_prefix[MAXPATHLEN+1];
130
static char progpath[MAXPATHLEN+1];
131
static char *module_search_path = NULL;
132
static char lib_python[] = "lib/python" VERSION;
133 134

static void
135
reduce(char *dir)
136
{
137 138 139 140
    size_t i = strlen(dir);
    while (i > 0 && dir[i] != SEP)
        --i;
    dir[i] = '\0';
141
}
142 143 144


static int
145
isfile(char *filename)          /* Is file, not directory */
146
{
147 148 149 150 151 152
    struct stat buf;
    if (stat(filename, &buf) != 0)
        return 0;
    if (!S_ISREG(buf.st_mode))
        return 0;
    return 1;
153 154 155 156
}


static int
157
ismodule(char *filename)        /* Is module -- check for .pyc/.pyo too */
158
{
159 160 161 162 163 164 165 166 167 168
    if (isfile(filename))
        return 1;

    /* Check for the compiled version of prefix. */
    if (strlen(filename) < MAXPATHLEN) {
        strcat(filename, Py_OptimizeFlag ? "o" : "c");
        if (isfile(filename))
            return 1;
    }
    return 0;
169 170 171 172
}


static int
173
isxfile(char *filename)         /* Is executable file */
174
{
175 176 177 178 179 180 181 182
    struct stat buf;
    if (stat(filename, &buf) != 0)
        return 0;
    if (!S_ISREG(buf.st_mode))
        return 0;
    if ((buf.st_mode & 0111) == 0)
        return 0;
    return 1;
183 184
}

185 186

static int
187
isdir(char *filename)                   /* Is directory */
188
{
189 190 191 192 193 194
    struct stat buf;
    if (stat(filename, &buf) != 0)
        return 0;
    if (!S_ISDIR(buf.st_mode))
        return 0;
    return 1;
195 196 197
}


198 199 200 201 202 203 204 205
/* Add a path component, by appending stuff to buffer.
   buffer must have at least MAXPATHLEN + 1 bytes allocated, and contain a
   NUL-terminated string with no more than MAXPATHLEN characters (not counting
   the trailing NUL).  It's a fatal error if it contains a string longer than
   that (callers must be careful!).  If these requirements are met, it's
   guaranteed that buffer will still be a NUL-terminated string with no more
   than MAXPATHLEN characters at exit.  If stuff is too long, only as much of
   stuff as fits will be appended.
206
*/
207
static void
208
joinpath(char *buffer, char *stuff)
209
{
210 211 212 213 214 215 216 217
    size_t n, k;
    if (stuff[0] == SEP)
        n = 0;
    else {
        n = strlen(buffer);
        if (n > 0 && buffer[n-1] != SEP && n < MAXPATHLEN)
            buffer[n++] = SEP;
    }
218
    if (n > MAXPATHLEN)
219
        Py_FatalError("buffer overflow in getpath.c's joinpath()");
220 221 222 223 224
    k = strlen(stuff);
    if (n + k > MAXPATHLEN)
        k = MAXPATHLEN - n;
    strncpy(buffer+n, stuff, k);
    buffer[n+k] = '\0';
225 226
}

227 228
/* copy_absolute requires that path be allocated at least
   MAXPATHLEN + 1 bytes and that p be no more than MAXPATHLEN bytes. */
229
static void
230
copy_absolute(char *path, char *p)
231
{
232 233
    if (p[0] == SEP)
        strcpy(path, p);
234
    else {
235 236 237 238 239
        if (!getcwd(path, MAXPATHLEN)) {
            /* unable to get the current directory */
            strcpy(path, p);
            return;
        }
240 241 242
        if (p[0] == '.' && p[1] == SEP)
            p += 2;
        joinpath(path, p);
243 244
    }
}
245

246 247 248 249 250 251 252 253 254 255 256 257 258
/* absolutize() requires that path be allocated at least MAXPATHLEN+1 bytes. */
static void
absolutize(char *path)
{
    char buffer[MAXPATHLEN + 1];

    if (path[0] == SEP)
        return;
    copy_absolute(buffer, path);
    strcpy(path, buffer);
}

/* search_for_prefix requires that argv0_path be no more than MAXPATHLEN
259 260
   bytes long.
*/
261
static int
262
search_for_prefix(char *argv0_path, char *home)
263
{
264 265 266 267 268 269
    size_t n;
    char *vpath;

    /* If PYTHONHOME is set, we believe it unconditionally */
    if (home) {
        char *delim;
270
        strncpy(prefix, home, MAXPATHLEN);
271 272 273 274 275 276 277 278 279 280 281 282
        delim = strchr(prefix, DELIM);
        if (delim)
            *delim = '\0';
        joinpath(prefix, lib_python);
        joinpath(prefix, LANDMARK);
        return 1;
    }

    /* Check to see if argv[0] is in the build directory */
    strcpy(prefix, argv0_path);
    joinpath(prefix, "Modules/Setup");
    if (isfile(prefix)) {
283
        /* Check VPATH to see if argv0_path is in the build directory. */
284 285 286 287 288 289 290 291 292 293
        vpath = VPATH;
        strcpy(prefix, argv0_path);
        joinpath(prefix, vpath);
        joinpath(prefix, "Lib");
        joinpath(prefix, LANDMARK);
        if (ismodule(prefix))
            return -1;
    }

    /* Search from argv0_path, until root is found */
294
    copy_absolute(prefix, argv0_path);
295 296 297 298 299 300 301 302 303 304 305
    do {
        n = strlen(prefix);
        joinpath(prefix, lib_python);
        joinpath(prefix, LANDMARK);
        if (ismodule(prefix))
            return 1;
        prefix[n] = '\0';
        reduce(prefix);
    } while (prefix[0]);

    /* Look at configure's PREFIX */
306
    strncpy(prefix, PREFIX, MAXPATHLEN);
307 308 309 310 311 312 313
    joinpath(prefix, lib_python);
    joinpath(prefix, LANDMARK);
    if (ismodule(prefix))
        return 1;

    /* Fail */
    return 0;
314 315 316
}


317
/* search_for_exec_prefix requires that argv0_path be no more than
318
   MAXPATHLEN bytes long.
319
*/
320
static int
321
search_for_exec_prefix(char *argv0_path, char *home)
322
{
323 324 325 326 327 328 329
    size_t n;

    /* If PYTHONHOME is set, we believe it unconditionally */
    if (home) {
        char *delim;
        delim = strchr(home, DELIM);
        if (delim)
330
            strncpy(exec_prefix, delim+1, MAXPATHLEN);
331
        else
332
            strncpy(exec_prefix, home, MAXPATHLEN);
333 334 335 336 337 338 339 340 341 342 343 344 345 346
        joinpath(exec_prefix, lib_python);
        joinpath(exec_prefix, "lib-dynload");
        return 1;
    }

    /* Check to see if argv[0] is in the build directory */
    strcpy(exec_prefix, argv0_path);
    joinpath(exec_prefix, "Modules/Setup");
    if (isfile(exec_prefix)) {
        reduce(exec_prefix);
        return -1;
    }

    /* Search from argv0_path, until root is found */
347
    copy_absolute(exec_prefix, argv0_path);
348 349 350 351 352 353 354 355 356 357 358
    do {
        n = strlen(exec_prefix);
        joinpath(exec_prefix, lib_python);
        joinpath(exec_prefix, "lib-dynload");
        if (isdir(exec_prefix))
            return 1;
        exec_prefix[n] = '\0';
        reduce(exec_prefix);
    } while (exec_prefix[0]);

    /* Look at configure's EXEC_PREFIX */
359
    strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
360 361 362 363 364 365 366
    joinpath(exec_prefix, lib_python);
    joinpath(exec_prefix, "lib-dynload");
    if (isdir(exec_prefix))
        return 1;

    /* Fail */
    return 0;
367 368 369 370
}


static void
371
calculate_path(void)
Guido van Rossum's avatar
Guido van Rossum committed
372
{
373
    extern char *Py_GetProgramName(void);
374 375 376 377

    static char delimiter[2] = {DELIM, '\0'};
    static char separator[2] = {SEP, '\0'};
    char *pythonpath = PYTHONPATH;
378
    char *rtpypath = Py_GETENV("PYTHONPATH");
379 380 381 382
    char *home = Py_GetPythonHome();
    char *path = getenv("PATH");
    char *prog = Py_GetProgramName();
    char argv0_path[MAXPATHLEN+1];
Just van Rossum's avatar
Just van Rossum committed
383
    char zip_path[MAXPATHLEN+1];
384 385 386 387 388
    int pfound, efound; /* 1 if found; -1 if found build directory */
    char *buf;
    size_t bufsz;
    size_t prefixsz;
    char *defpath = pythonpath;
389
#ifdef WITH_NEXT_FRAMEWORK
390
    NSModule pythonModule;
391
#endif
392
#ifdef __APPLE__
393
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
394
    uint32_t nsexeclength = MAXPATHLEN;
395 396 397
#else
    unsigned long nsexeclength = MAXPATHLEN;
#endif
398
#endif
399

400 401 402 403 404 405 406
        /* If there is no slash in the argv0 path, then we have to
         * assume python is on the user's $PATH, since there's no
         * other way to find a directory to start the search from.  If
         * $PATH isn't exported, you lose.
         */
        if (strchr(prog, SEP))
                strncpy(progpath, prog, MAXPATHLEN);
407 408 409 410 411 412 413 414 415 416 417 418 419
#ifdef __APPLE__
     /* On Mac OS X, if a script uses an interpreter of the form
      * "#!/opt/python2.3/bin/python", the kernel only passes "python"
      * as argv[0], which falls through to the $PATH search below.
      * If /opt/python2.3/bin isn't in your path, or is near the end,
      * this algorithm may incorrectly find /usr/bin/python. To work
      * around this, we can use _NSGetExecutablePath to get a better
      * hint of what the intended interpreter was, although this
      * will fail if a relative path was used. but in that case,
      * absolutize() should help us out below
      */
     else if(0 == _NSGetExecutablePath(progpath, &nsexeclength) && progpath[0] == SEP)
       ;
420
#endif /* __APPLE__ */
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
        else if (path) {
                while (1) {
                        char *delim = strchr(path, DELIM);

                        if (delim) {
                                size_t len = delim - path;
                                if (len > MAXPATHLEN)
                                        len = MAXPATHLEN;
                                strncpy(progpath, path, len);
                                *(progpath + len) = '\0';
                        }
                        else
                                strncpy(progpath, path, MAXPATHLEN);

                        joinpath(progpath, prog);
                        if (isxfile(progpath))
                                break;

                        if (!delim) {
                                progpath[0] = '\0';
                                break;
                        }
                        path = delim + 1;
                }
        }
        else
                progpath[0] = '\0';
        if (progpath[0] != SEP && progpath[0] != '\0')
                absolutize(progpath);
        strncpy(argv0_path, progpath, MAXPATHLEN);
        argv0_path[MAXPATHLEN] = '\0';
452

453
#ifdef WITH_NEXT_FRAMEWORK
454 455 456 457 458
        /* On Mac OS X we have a special case if we're running from a framework.
        ** This is because the python home should be set relative to the library,
        ** which is in the framework, not relative to the executable, which may
        ** be outside of the framework. Except when we're in the build directory...
        */
459 460
    pythonModule = NSModuleForSymbol(NSLookupAndBindSymbol("_Py_Initialize"));
    /* Use dylib functions to find out where the framework was loaded from */
461
    buf = (char *)NSLibraryNameForModule(pythonModule);
462 463
    if (buf != NULL) {
        /* We're in a framework. */
464 465 466 467 468 469 470 471 472 473 474 475
        /* See if we might be in the build directory. The framework in the
        ** build directory is incomplete, it only has the .dylib and a few
        ** needed symlinks, it doesn't have the Lib directories and such.
        ** If we're running with the framework from the build directory we must
        ** be running the interpreter in the build directory, so we use the
        ** build-directory-specific logic to find Lib and such.
        */
        strncpy(argv0_path, buf, MAXPATHLEN);
        reduce(argv0_path);
        joinpath(argv0_path, lib_python);
        joinpath(argv0_path, LANDMARK);
        if (!ismodule(argv0_path)) {
476 477
                /* We are in the build directory so use the name of the
                   executable - we know that the absolute path is passed */
478
                strncpy(argv0_path, progpath, MAXPATHLEN);
479 480
        }
        else {
481
                /* Use the location of the library as the progpath */
482
                strncpy(argv0_path, buf, MAXPATHLEN);
483
        }
484
    }
485
#endif
486 487

#if HAVE_READLINK
488 489 490 491 492 493 494
    {
        char tmpbuffer[MAXPATHLEN+1];
        int linklen = readlink(progpath, tmpbuffer, MAXPATHLEN);
        while (linklen != -1) {
            /* It's not null terminated! */
            tmpbuffer[linklen] = '\0';
            if (tmpbuffer[0] == SEP)
495 496
                /* tmpbuffer should never be longer than MAXPATHLEN,
                   but extra check does not hurt */
497
                strncpy(argv0_path, tmpbuffer, MAXPATHLEN);
498 499 500 501 502 503 504 505
            else {
                /* Interpret relative to progpath */
                reduce(argv0_path);
                joinpath(argv0_path, tmpbuffer);
            }
            linklen = readlink(argv0_path, tmpbuffer, MAXPATHLEN);
        }
    }
506 507
#endif /* HAVE_READLINK */

508
    reduce(argv0_path);
509 510 511
    /* At this point, argv0_path is guaranteed to be less than
       MAXPATHLEN bytes long.
    */
512 513 514 515

    if (!(pfound = search_for_prefix(argv0_path, home))) {
        if (!Py_FrozenFlag)
            fprintf(stderr,
516
                "Could not find platform independent libraries <prefix>\n");
517
        strncpy(prefix, PREFIX, MAXPATHLEN);
518 519 520 521
        joinpath(prefix, lib_python);
    }
    else
        reduce(prefix);
522

Just van Rossum's avatar
Just van Rossum committed
523
    strncpy(zip_path, prefix, MAXPATHLEN);
524
    zip_path[MAXPATHLEN] = '\0';
Just van Rossum's avatar
Just van Rossum committed
525 526 527 528 529 530 531
    if (pfound > 0) { /* Use the reduced prefix returned by Py_GetPrefix() */
        reduce(zip_path);
        reduce(zip_path);
    }
    else
        strncpy(zip_path, PREFIX, MAXPATHLEN);
    joinpath(zip_path, "lib/python00.zip");
532
    bufsz = strlen(zip_path);   /* Replace "00" with version */
Just van Rossum's avatar
Just van Rossum committed
533 534 535
    zip_path[bufsz - 6] = VERSION[0];
    zip_path[bufsz - 5] = VERSION[2];

536 537 538
    if (!(efound = search_for_exec_prefix(argv0_path, home))) {
        if (!Py_FrozenFlag)
            fprintf(stderr,
539
                "Could not find platform dependent libraries <exec_prefix>\n");
540
        strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
        joinpath(exec_prefix, "lib/lib-dynload");
    }
    /* If we found EXEC_PREFIX do *not* reduce it!  (Yet.) */

    if ((!pfound || !efound) && !Py_FrozenFlag)
        fprintf(stderr,
                "Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]\n");

    /* Calculate size of return buffer.
     */
    bufsz = 0;

    if (rtpypath)
        bufsz += strlen(rtpypath) + 1;

    prefixsz = strlen(prefix) + 1;

    while (1) {
        char *delim = strchr(defpath, DELIM);

        if (defpath[0] != SEP)
            /* Paths are relative to prefix */
            bufsz += prefixsz;

        if (delim)
            bufsz += delim - defpath + 1;
        else {
            bufsz += strlen(defpath) + 1;
            break;
        }
        defpath = delim + 1;
    }

Just van Rossum's avatar
Just van Rossum committed
574
    bufsz += strlen(zip_path) + 1;
575 576 577
    bufsz += strlen(exec_prefix) + 1;

    /* This is the only malloc call in this file */
578
    buf = (char *)PyMem_Malloc(bufsz);
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594

    if (buf == NULL) {
        /* We can't exit, so print a warning and limp along */
        fprintf(stderr, "Not enough memory for dynamic PYTHONPATH.\n");
        fprintf(stderr, "Using default static PYTHONPATH.\n");
        module_search_path = PYTHONPATH;
    }
    else {
        /* Run-time value of $PYTHONPATH goes first */
        if (rtpypath) {
            strcpy(buf, rtpypath);
            strcat(buf, delimiter);
        }
        else
            buf[0] = '\0';

Just van Rossum's avatar
Just van Rossum committed
595 596 597 598
        /* Next is the default zip path */
        strcat(buf, zip_path);
        strcat(buf, delimiter);

599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
        /* Next goes merge of compile-time $PYTHONPATH with
         * dynamically located prefix.
         */
        defpath = pythonpath;
        while (1) {
            char *delim = strchr(defpath, DELIM);

            if (defpath[0] != SEP) {
                strcat(buf, prefix);
                strcat(buf, separator);
            }

            if (delim) {
                size_t len = delim - defpath + 1;
                size_t end = strlen(buf) + len;
                strncat(buf, defpath, len);
                *(buf + end) = '\0';
            }
            else {
                strcat(buf, defpath);
                break;
            }
            defpath = delim + 1;
        }
        strcat(buf, delimiter);

        /* Finally, on goes the directory for dynamic-load modules */
        strcat(buf, exec_prefix);

        /* And publish the results */
        module_search_path = buf;
    }

    /* Reduce prefix and exec_prefix to their essence,
     * e.g. /usr/local/lib/python1.5 is reduced to /usr/local.
     * If we're loading relative to the build directory,
     * return the compiled-in defaults instead.
     */
    if (pfound > 0) {
        reduce(prefix);
        reduce(prefix);
640 641 642 643
        /* The prefix is the root directory, but reduce() chopped
         * off the "/". */
        if (!prefix[0])
                strcpy(prefix, separator);
644 645
    }
    else
646
        strncpy(prefix, PREFIX, MAXPATHLEN);
647 648 649 650 651

    if (efound > 0) {
        reduce(exec_prefix);
        reduce(exec_prefix);
        reduce(exec_prefix);
652 653
        if (!exec_prefix[0])
                strcpy(exec_prefix, separator);
654 655
    }
    else
656
        strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
Guido van Rossum's avatar
Guido van Rossum committed
657
}
658 659


660 661 662
/* External interface */

char *
663
Py_GetPath(void)
664
{
665 666 667
    if (!module_search_path)
        calculate_path();
    return module_search_path;
668
}
669 670

char *
671
Py_GetPrefix(void)
672
{
673 674 675
    if (!module_search_path)
        calculate_path();
    return prefix;
676 677 678
}

char *
679
Py_GetExecPrefix(void)
680
{
681 682 683
    if (!module_search_path)
        calculate_path();
    return exec_prefix;
684
}
685 686

char *
687
Py_GetProgramFullPath(void)
688
{
689 690 691
    if (!module_search_path)
        calculate_path();
    return progpath;
692
}
693 694 695 696 697 698


#ifdef __cplusplus
}
#endif