blob: 1de1a7ef2157d9de4ed97c34f171ed62d8125712 [file] [log] [blame]
vapierb56735e2006-08-21 07:05:41 +00001/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: t -*- */
vapier45a8ba02009-07-20 10:59:32 +00002/*
vapierb56735e2006-08-21 07:05:41 +00003 * self_exec.c: self_exec magic required to run child functions on uClinux
vapier45a8ba02009-07-20 10:59:32 +00004 *
vapierb56735e2006-08-21 07:05:41 +00005 * Copyright (C) 2005 Paul J.Y. Lahaie <pjlahaie-at-steamballoon.com>
vapier45a8ba02009-07-20 10:59:32 +00006 *
vapierb56735e2006-08-21 07:05:41 +00007 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
vapier45a8ba02009-07-20 10:59:32 +000011 *
vapierb56735e2006-08-21 07:05:41 +000012 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
vapier45a8ba02009-07-20 10:59:32 +000016 *
vapierb56735e2006-08-21 07:05:41 +000017 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
vapier45a8ba02009-07-20 10:59:32 +000020 *
vapierb56735e2006-08-21 07:05:41 +000021 * This software was produced by Steamballoon Incorporated
22 * 55 Byward Market Square, 2nd Floor North, Ottawa, ON K1N 9C3, Canada
23 */
24
Wanlong Gao354ebb42012-12-07 10:10:04 +080025#define _GNU_SOURCE /* for asprintf */
Mike Frysinger28606c12010-08-17 17:22:45 -040026
27#include "config.h"
28
vapierb56735e2006-08-21 07:05:41 +000029#ifdef UCLINUX
30
vapierb56735e2006-08-21 07:05:41 +000031#include <stdarg.h>
32#include <string.h>
33#include <stdio.h>
34#include "test.h"
35
36/* Set from parse_opts.c: */
Wanlong Gao354ebb42012-12-07 10:10:04 +080037char *child_args; /* Arguments to child when -C is used */
vapierb56735e2006-08-21 07:05:41 +000038
Wanlong Gao354ebb42012-12-07 10:10:04 +080039static char *start_cwd; /* Stores the starting directory for self_exec */
vapierb56735e2006-08-21 07:05:41 +000040
41int asprintf(char **app, const char *fmt, ...)
42{
Wanlong Gao354ebb42012-12-07 10:10:04 +080043 va_list ptr;
44 int rv;
45 char *p;
vapierb56735e2006-08-21 07:05:41 +000046
Wanlong Gao354ebb42012-12-07 10:10:04 +080047 /*
48 * First iteration - find out size of buffer required and allocate it.
49 */
50 va_start(ptr, fmt);
51 rv = vsnprintf(NULL, 0, fmt, ptr);
52 va_end(ptr);
vapierb56735e2006-08-21 07:05:41 +000053
Wanlong Gao354ebb42012-12-07 10:10:04 +080054 p = malloc(++rv); /* allocate the buffer */
55 *app = p;
56 if (!p) {
57 return -1;
58 }
vapierb56735e2006-08-21 07:05:41 +000059
Wanlong Gao354ebb42012-12-07 10:10:04 +080060 /*
61 * Second iteration - actually produce output.
62 */
63 va_start(ptr, fmt);
64 rv = vsnprintf(p, rv, fmt, ptr);
65 va_end(ptr);
vapierb56735e2006-08-21 07:05:41 +000066
Wanlong Gao354ebb42012-12-07 10:10:04 +080067 return rv;
vapierb56735e2006-08-21 07:05:41 +000068}
69
Mike Frysinger55d8ae52014-02-13 04:11:45 -050070void maybe_run_child(void (*child) (), const char *fmt, ...)
vapierb56735e2006-08-21 07:05:41 +000071{
Wanlong Gao354ebb42012-12-07 10:10:04 +080072 va_list ap;
73 char *child_dir;
74 char *p, *tok;
75 int *iptr, i, j;
76 char *s;
77 char **sptr;
78 char *endptr;
vapierb56735e2006-08-21 07:05:41 +000079
Wanlong Gao354ebb42012-12-07 10:10:04 +080080 /* Store the current directory for later use. */
81 start_cwd = getcwd(NULL, 0);
vapierb56735e2006-08-21 07:05:41 +000082
Wanlong Gao354ebb42012-12-07 10:10:04 +080083 if (child_args) {
84 char *args = strdup(child_args);
vapierb56735e2006-08-21 07:05:41 +000085
Wanlong Gao354ebb42012-12-07 10:10:04 +080086 child_dir = strtok(args, ",");
87 if (strlen(child_dir) == 0) {
88 tst_brkm(TBROK, NULL,
89 "Could not get directory from -C option");
90 }
91
92 va_start(ap, fmt);
93
94 for (p = fmt; *p; p++) {
95 tok = strtok(NULL, ",");
96 if (!tok || strlen(tok) == 0) {
97 tst_brkm(TBROK, NULL,
98 "Invalid argument to -C option");
99 }
100
101 switch (*p) {
102 case 'd':
103 iptr = va_arg(ap, int *);
104 i = strtol(tok, &endptr, 10);
105 if (*endptr != '\0') {
106 tst_brkm(TBROK, NULL,
107 "Invalid argument to -C option");
108 }
109 *iptr = i;
110 break;
111 case 'n':
112 j = va_arg(ap, int);
113 i = strtol(tok, &endptr, 10);
114 if (*endptr != '\0') {
115 tst_brkm(TBROK, NULL,
116 "Invalid argument to -C option");
117 }
118 if (j != i) {
119 va_end(ap);
120 return;
121 }
122 break;
123 case 's':
124 s = va_arg(ap, char *);
125 if (!strncpy(s, tok, strlen(tok) + 1)) {
126 tst_brkm(TBROK, NULL,
127 "Could not strncpy for -C option");
128 }
129 break;
130 case 'S':
131 sptr = va_arg(ap, char **);
132 *sptr = strdup(tok);
133 if (!*sptr) {
134 tst_brkm(TBROK, NULL,
135 "Could not strdup for -C option");
136 }
137 break;
138 default:
139 tst_brkm(TBROK, NULL,
140 "Format string option %c not implemented",
141 *p);
142 break;
143 }
144 }
145
146 va_end(ap);
147
148 if (chdir(child_dir) < 0)
149 tst_brkm(TBROK, NULL,
150 "Could not change to %s for child", child_dir);
151
152 (*child) ();
153 tst_resm(TWARN, "Child function returned unexpectedly");
154 /* Exit here? or exit silently? */
155 }
156}
157
Mike Frysinger55d8ae52014-02-13 04:11:45 -0500158int self_exec(const char *argv0, const char *fmt, ...)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800159{
160 va_list ap;
161 char *p;
162 char *tmp_cwd;
163 char *arg;
164 int ival;
165 char *str;
166
167 if ((tmp_cwd = getcwd(NULL, 0)) == NULL) {
168 tst_resm(TBROK, "Could not getcwd()");
169 return -1;
170 }
171
172 arg = strdup(tmp_cwd);
173
174 if ((arg = strdup(tmp_cwd)) == NULL) {
175 tst_resm(TBROK, "Could not produce self_exec string");
176 return -1;
vapierb56735e2006-08-21 07:05:41 +0000177 }
178
179 va_start(ap, fmt);
180
181 for (p = fmt; *p; p++) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800182 switch (*p) {
183 case 'd':
184 case 'n':
185 ival = va_arg(ap, int);
186 if (asprintf(&arg, "%s,%d", arg, ival) < 0) {
187 tst_resm(TBROK,
188 "Could not produce self_exec string");
189 return -1;
190 }
191 break;
192 case 's':
193 case 'S':
194 str = va_arg(ap, char *);
195 if (asprintf(&arg, "%s,%s", arg, str) < 0) {
196 tst_resm(TBROK,
197 "Could not produce self_exec string");
198 return -1;
199 }
200 break;
201 default:
202 tst_resm(TBROK,
203 "Format string option %c not implemented", *p);
204 return -1;
205 break;
vapierb56735e2006-08-21 07:05:41 +0000206 }
vapierb56735e2006-08-21 07:05:41 +0000207 }
208
209 va_end(ap);
210
Wanlong Gao354ebb42012-12-07 10:10:04 +0800211 if (chdir(start_cwd) < 0) {
212 tst_resm(TBROK, "Could not change to %s for self_exec",
213 start_cwd);
vapierb56735e2006-08-21 07:05:41 +0000214 return -1;
vapierb56735e2006-08-21 07:05:41 +0000215 }
vapierb56735e2006-08-21 07:05:41 +0000216
Wanlong Gao354ebb42012-12-07 10:10:04 +0800217 return execlp(argv0, argv0, "-C", arg, (char *)NULL);
vapierb56735e2006-08-21 07:05:41 +0000218}
219
Markos Chandras8d2d8ba2012-01-03 10:40:50 +0000220#endif /* UCLINUX */