]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - crypto/openssh/version.c
MFC 241730: Correct the order of the MFU and MRU labels.
[FreeBSD/stable/9.git] / crypto / openssh / version.c
1 /*-
2  * Copyright (c) 2001 Brian Fundakowski Feldman
3  * Copyright (c) 2012 Eygene Ryabinkin <rea@FreeBSD.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  */
28
29 #include "includes.h"
30 __RCSID("$FreeBSD$");
31
32 #include <string.h>
33
34 #include "version.h"
35 #include "xmalloc.h"
36
37
38 static char *version = NULL;
39 /* NULL means "use default value", empty string means "unset" */
40 static const char *addendum = NULL;
41 static unsigned char update_version = 1;
42
43 /*
44  * Constructs the version string if it is empty or needs updating.
45  *
46  * HPN patch we're running requires both parties
47  * to have the "hpn" string inside the advertized version
48  * (see compat.c::compat_datafellows), so we should
49  * include it to the generated string if HPN is enabled.
50  */
51 const char *
52 ssh_version_get(int hpn_disabled)
53 {
54         const char *hpn = NULL, *add = NULL;
55         char *newvers = NULL;
56         size_t size = 0;
57
58         if (version != NULL && !update_version)
59                 return (version);
60
61         hpn = (hpn_disabled ? NULL : SSH_VERSION_HPN);
62         add = (addendum == NULL ? SSH_VERSION_ADDENDUM :
63             (addendum[0] == '\0' ? NULL : addendum));
64
65         size = strlen(SSH_VERSION_BASE) + (hpn ? strlen(hpn) : 0) +
66             (add ? strlen(add) + 1 : 0) + 1;
67         newvers = xmalloc(size);
68         strcpy(newvers, SSH_VERSION_BASE);
69         if (hpn)
70                 strcat(newvers, hpn);
71         if (add) {
72                 strcat(newvers, " ");
73                 strcat(newvers, add);
74         }
75
76         if (version)
77                 xfree(version);
78         version = newvers;
79         update_version = 0;
80
81         return (version);
82 }
83
84 void
85 ssh_version_set_addendum(const char *add)
86 {
87         if (add && addendum && !strcmp(add, addendum))
88                 return;
89
90         if (addendum)
91                 xfree((void *)addendum);
92         addendum = (add ? xstrdup(add) : xstrdup(""));
93
94         update_version = 1;
95 }