aboutsummaryrefslogtreecommitdiff
path: root/src/lib/version/version.c
blob: ec1d0bea2f136c34c3cb4727192473773aeeea50 (plain)
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
/* Copyright 2001-2004 Roger Dingledine.
 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 * Copyright (c) 2007-2020, The Tor Project, Inc. */
/* See LICENSE for licensing information */

#include "orconfig.h"
#include "lib/version/torversion.h"
#include "lib/version/git_revision.h"

#include <stdio.h>
#include <string.h>

/**
 * @file version.c
 * @brief Functions to get the version of Tor.
 **/

/** A shorter version of this Tor process's version, for export in our router
 *  descriptor.  (Does not include the git version, if any.) */
static const char the_short_tor_version[] =
  VERSION
#ifdef TOR_BUILD_TAG
  " ("TOR_BUILD_TAG")"
#endif
  "";

/**
 * Longest possible version length. We make this a constant so that we
 * can statically allocate the_tor_version.
 **/
#define MAX_VERSION_LEN 128

/** The version of this Tor process, possibly including git version */
static char the_tor_version[MAX_VERSION_LEN] = "";

/** Return the current Tor version. */
const char *
get_version(void)
{
  if (the_tor_version[0] == 0) {
    if (strlen(tor_git_revision)) {
      snprintf(the_tor_version, sizeof(the_tor_version),
               "%s (git-%s)", the_short_tor_version, tor_git_revision);
    } else {
      snprintf(the_tor_version, sizeof(the_tor_version),
               "%s", the_short_tor_version);
    }
    the_tor_version[sizeof(the_tor_version)-1] = 0;
  }

  return the_tor_version;
}

/** Return the current Tor version, without any git tag. */
const char *
get_short_version(void)
{
  return the_short_tor_version;
}