blob: 068befce4c65185e21bfac7824778dc98b62a608 [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
42 if (*end != '.')
43 return NULL;
44
45 return end + 1;
46}
47
48void tst_parse_kver(const char *str_kver, int *v1, int *v2, int *v3)
49{
50 const char *str = str_kver;
51
52 *v1 = 0;
53 *v2 = 0;
54 *v3 = 0;
55
56 if (!(str = parse_digit(str, v1)))
57 goto err;
58
59 if (!(str = parse_digit(str, v2)))
60 goto err;
61
62 /*
63 * We ignore all errors here in order not to fail with versions as
64 * "2.4" or "2.6.18".
65 */
66 parse_digit(str, v3);
67
68 return;
69err:
70 tst_resm(TWARN,
71 "Invalid kernel version %s, expected %%d.%%d.%%d", str_kver);
plarsfea599e2003-02-27 16:53:21 +000072}
73
Wanlong Gao354ebb42012-12-07 10:10:04 +080074int tst_kvercmp(int r1, int r2, int r3)
75{
plarsfea599e2003-02-27 16:53:21 +000076 int a1, a2, a3;
77 int testver, currver;
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010078 struct utsname uval;
plarsfea599e2003-02-27 16:53:21 +000079
Cyril Hrubis9c74eef2016-02-04 10:32:22 +010080 uname(&uval);
81 tst_parse_kver(uval.release, &a1, &a2, &a3);
82
plarsfea599e2003-02-27 16:53:21 +000083 testver = (r1 << 16) + (r2 << 8) + r3;
84 currver = (a1 << 16) + (a2 << 8) + a3;
85
plars878713c2003-03-03 22:02:07 +000086 return currver - testver;
Chris Dearmanec6edca2012-10-17 19:54:01 -070087}
Wanlong Gaoef73cc92013-07-09 15:54:51 +080088
89static int tst_kexvcmp(char *tst_exv, char *cur_ver)
90{
Wanlong Gao18f7be72013-07-16 22:29:48 +080091 int c1 = 0, c2 = 0, c3 = 0, c4 = 0, c5 = 0;
92 int t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0;
Wanlong Gaoef73cc92013-07-09 15:54:51 +080093 int ret;
94
Wanlong Gao18f7be72013-07-16 22:29:48 +080095 sscanf(cur_ver, "%d.%d.%d-%d.%d", &c1, &c2, &c3, &c4, &c5);
96 sscanf(tst_exv, "%d.%d.%d-%d.%d", &t1, &t2, &t3, &t4, &t5);
97
Wanlong Gaoef73cc92013-07-09 15:54:51 +080098 if ((ret = c1 - t1))
99 return ret;
Wanlong Gao18f7be72013-07-16 22:29:48 +0800100 if ((ret = c2 - t2))
101 return ret;
102 if ((ret = c3 - t3))
103 return ret;
104 if ((ret = c4 - t4))
105 return ret;
106
107 return c5 - t5;
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800108}
109
110int tst_kvercmp2(int r1, int r2, int r3, struct tst_kern_exv *vers)
111{
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800112 int i;
113 struct utsname uval;
114 char *kver;
115 const char *cur_dist_name = NULL;
116
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800117 uname(&uval);
118 kver = uval.release;
Stanislav Kholmanskikhb217b3e2013-10-09 17:11:09 +0400119 if (strstr(kver, ".el5uek")) {
120 cur_dist_name = "OL5UEK";
121 } else if (strstr(kver, ".el5")) {
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800122 cur_dist_name = "RHEL5";
Stanislav Kholmanskikhb217b3e2013-10-09 17:11:09 +0400123 } else if (strstr(kver, ".el6uek")) {
124 cur_dist_name = "OL6UEK";
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800125 } else if (strstr(kver, ".el6")) {
126 cur_dist_name = "RHEL6";
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800127 }
128
Wanlong Gaoe323edc2013-07-23 19:40:15 +0800129 if (cur_dist_name == NULL)
130 return tst_kvercmp(r1, r2, r3);
131
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800132 for (i = 0; vers[i].dist_name; i++) {
Wanlong Gao18f7be72013-07-16 22:29:48 +0800133 if (!strcmp(vers[i].dist_name, cur_dist_name)) {
Cyril Hrubise94c67a2013-08-01 15:38:55 +0200134 tst_resm(TINFO, "Detected %s using kernel version %s",
Wanlong Gao18f7be72013-07-16 22:29:48 +0800135 cur_dist_name, kver);
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800136 return tst_kexvcmp(vers[i].extra_ver, kver);
Wanlong Gao18f7be72013-07-16 22:29:48 +0800137 }
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800138 }
139
Wanlong Gao18f7be72013-07-16 22:29:48 +0800140 return tst_kvercmp(r1, r2, r3);
Wanlong Gaoef73cc92013-07-09 15:54:51 +0800141}