blob: dc3bb669b554ba98e24ce640a2ae990a46a49bf8 [file] [log] [blame]
plarsfea599e2003-02-27 16:53:21 +00001/*
Cyril Hrubis9c74eef2016-02-04 10:32:22 +01002 * Copyright (c) International Business Machines Corp., 2003
3 * AUTHOR: Paul Larson <plars@linuxtestproject.org>
4 * Copyright (c) 2016 Cyril Hrubis <chrubis@suse.cz>
plarsfea599e2003-02-27 16:53:21 +00005 *
Cyril Hrubis9c74eef2016-02-04 10:32:22 +01006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
plarsfea599e2003-02-27 16:53:21 +000010 *
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010011 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14 * the GNU General Public License for more details.
plarsfea599e2003-02-27 16:53:21 +000015 *
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010016 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
plarsfea599e2003-02-27 16:53:21 +000019 */
20
robbiew88e7b182003-03-13 19:00:13 +000021#include <stdlib.h>
plarsfea599e2003-02-27 16:53:21 +000022#include <unistd.h>
23#include <string.h>
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010024#include <limits.h>
plarsfea599e2003-02-27 16:53:21 +000025#include <sys/utsname.h>
Wanlong Gaoef73cc92013-07-09 15:54:51 +080026#include "test.h"
plarsfea599e2003-02-27 16:53:21 +000027
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010028static char *parse_digit(const char *str, int *d)
plarsfea599e2003-02-27 16:53:21 +000029{
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010030 unsigned long v;
31 char *end;
mridgee6508f82005-01-04 21:00:17 +000032
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010033 v = strtoul(str, &end, 10);
34 if (str == end)
35 return NULL;
Cyril Hrubiscd5983d2014-10-01 16:57:37 +020036
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010037 if (v > INT_MAX)
38 return NULL;
39
40 *d = v;
41
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010042 return end;
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010043}
44
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010045int tst_parse_kver(const char *str_kver, int *v1, int *v2, int *v3)
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010046{
47 const char *str = str_kver;
48
49 *v1 = 0;
50 *v2 = 0;
51 *v3 = 0;
52
53 if (!(str = parse_digit(str, v1)))
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010054 return 1;
55
56 if (*(str++) != '.')
57 return 1;
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010058
59 if (!(str = parse_digit(str, v2)))
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010060 return 1;
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010061
62 /*
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010063 * Check for a short version e.g '2.4'
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010064 */
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010065 if (*str == ' ' || *str == '\0')
66 return 0;
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010067
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010068 if (*(str++) != '.')
69 return 1;
70
71 /*
72 * Ignore rest of the string in order not to break on versions as
73 * 4.8.1-52-default.
74 */
75 if (!parse_digit(str, v3))
76 return 1;
77
78 return 0;
plarsfea599e2003-02-27 16:53:21 +000079}
80
Cyril Hrubis882f45a2017-04-21 16:31:48 +020081int tst_kvcmp(const char *cur_kver, int r1, int r2, int r3)
Wanlong Gao354ebb42012-12-07 10:10:04 +080082{
plarsfea599e2003-02-27 16:53:21 +000083 int a1, a2, a3;
84 int testver, currver;
85
Cyril Hrubis882f45a2017-04-21 16:31:48 +020086 if (tst_parse_kver(cur_kver, &a1, &a2, &a3)) {
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010087 tst_resm(TWARN,
88 "Invalid kernel version %s, expected %%d.%%d.%%d",
Cyril Hrubis882f45a2017-04-21 16:31:48 +020089 cur_kver);
Cyril Hrubis4dcfd282016-11-01 15:07:12 +010090 }
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010091
plarsfea599e2003-02-27 16:53:21 +000092 testver = (r1 << 16) + (r2 << 8) + r3;
93 currver = (a1 << 16) + (a2 << 8) + a3;
94
plars878713c2003-03-03 22:02:07 +000095 return currver - testver;
Chris Dearmanec6edca2012-10-17 19:54:01 -070096}
Wanlong Gaoef73cc92013-07-09 15:54:51 +080097
Cyril Hrubis882f45a2017-04-21 16:31:48 +020098int tst_kvercmp(int r1, int r2, int r3)
99{
100 struct utsname uval;
101
102 uname(&uval);
103
104 return tst_kvcmp(uval.release, r1, r2, r3);
105}
106
107int tst_kvexcmp(const char *tst_exv, const char *cur_ver)
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800108{
Wanlong Gao18f7be72013-07-16 22:29:48 +0800109 int c1 = 0, c2 = 0, c3 = 0, c4 = 0, c5 = 0;
110 int t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0;
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800111 int ret;
112
Wanlong Gao18f7be72013-07-16 22:29:48 +0800113 sscanf(cur_ver, "%d.%d.%d-%d.%d", &c1, &c2, &c3, &c4, &c5);
114 sscanf(tst_exv, "%d.%d.%d-%d.%d", &t1, &t2, &t3, &t4, &t5);
115
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800116 if ((ret = c1 - t1))
117 return ret;
Wanlong Gao18f7be72013-07-16 22:29:48 +0800118 if ((ret = c2 - t2))
119 return ret;
120 if ((ret = c3 - t3))
121 return ret;
122 if ((ret = c4 - t4))
123 return ret;
124
125 return c5 - t5;
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800126}
127
Cyril Hrubis882f45a2017-04-21 16:31:48 +0200128const char *tst_kvcmp_distname(const char *kver)
129{
130 if (strstr(kver, ".el5uek"))
131 return "OL5UEK";
132
133 if (strstr(kver, ".el5"))
134 return "RHEL5";
135
136 if (strstr(kver, ".el6uek"))
137 return "OL6UEK";
138
139 if (strstr(kver, ".el6"))
140 return "RHEL6";
141
142 return NULL;
143}
144
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800145int tst_kvercmp2(int r1, int r2, int r3, struct tst_kern_exv *vers)
146{
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800147 int i;
Cyril Hrubis882f45a2017-04-21 16:31:48 +0200148 const char *kver;
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800149 struct utsname uval;
Cyril Hrubis882f45a2017-04-21 16:31:48 +0200150 const char *cur_dist_name;
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800151
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800152 uname(&uval);
153 kver = uval.release;
Cyril Hrubis882f45a2017-04-21 16:31:48 +0200154 cur_dist_name = tst_kvcmp_distname(kver);
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800155
Wanlong Gaoe323edc2013-07-23 19:40:15 +0800156 if (cur_dist_name == NULL)
157 return tst_kvercmp(r1, r2, r3);
158
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800159 for (i = 0; vers[i].dist_name; i++) {
Wanlong Gao18f7be72013-07-16 22:29:48 +0800160 if (!strcmp(vers[i].dist_name, cur_dist_name)) {
Cyril Hrubise94c67a2013-08-01 15:38:55 +0200161 tst_resm(TINFO, "Detected %s using kernel version %s",
Wanlong Gao18f7be72013-07-16 22:29:48 +0800162 cur_dist_name, kver);
Cyril Hrubis882f45a2017-04-21 16:31:48 +0200163 return tst_kvexcmp(vers[i].extra_ver, kver);
Wanlong Gao18f7be72013-07-16 22:29:48 +0800164 }
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800165 }
166
Cyril Hrubis882f45a2017-04-21 16:31:48 +0200167 return tst_kvcmp(kver, r1, r2, r3);
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800168}