blob: f5260d9dbb90d0497464376cf23944a98904dc33 [file] [log] [blame]
Denis Vlasenko239d06b2008-11-06 23:42:42 +00001/* vi: set sw=4 ts=4: */
2/*
3 * helper routines
4 *
5 * Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko239d06b2008-11-06 23:42:42 +00008 */
9#include "libbb.h"
10#include "mail.h"
11
12static void kill_helper(void)
13{
Denis Vlasenko021de3f2009-03-04 17:56:00 +000014 if (G.helper_pid > 0) {
Denis Vlasenko239d06b2008-11-06 23:42:42 +000015 kill(G.helper_pid, SIGTERM);
Denis Vlasenko021de3f2009-03-04 17:56:00 +000016 G.helper_pid = 0;
17 }
Denis Vlasenko239d06b2008-11-06 23:42:42 +000018}
19
20// generic signal handler
21static void signal_handler(int signo)
22{
23#define err signo
24 if (SIGALRM == signo) {
25 kill_helper();
26 bb_error_msg_and_die("timed out");
27 }
28
29 // SIGCHLD. reap zombies
Denis Vlasenko021de3f2009-03-04 17:56:00 +000030 if (safe_waitpid(G.helper_pid, &err, WNOHANG) > 0) {
31 if (WIFSIGNALED(err))
32 bb_error_msg_and_die("helper killed by signal %u", WTERMSIG(err));
Denis Vlasenko239d06b2008-11-06 23:42:42 +000033 if (WIFEXITED(err)) {
34 G.helper_pid = 0;
35 if (WEXITSTATUS(err))
Denis Vlasenko021de3f2009-03-04 17:56:00 +000036 bb_error_msg_and_die("helper exited (%u)", WEXITSTATUS(err));
Denis Vlasenko239d06b2008-11-06 23:42:42 +000037 }
Denis Vlasenko021de3f2009-03-04 17:56:00 +000038 }
Denis Vlasenko239d06b2008-11-06 23:42:42 +000039#undef err
40}
41
42void FAST_FUNC launch_helper(const char **argv)
43{
44 // setup vanilla unidirectional pipes interchange
Denis Vlasenko021de3f2009-03-04 17:56:00 +000045 int i;
Denis Vlasenko239d06b2008-11-06 23:42:42 +000046 int pipes[4];
47
48 xpipe(pipes);
Denis Vlasenko021de3f2009-03-04 17:56:00 +000049 xpipe(pipes + 2);
50
Denis Vlasenko47741792009-03-10 16:01:57 +000051 // NB: handler must be installed before vfork
52 bb_signals(0
53 + (1 << SIGCHLD)
54 + (1 << SIGALRM)
55 , signal_handler);
56
Pascal Bellard926031b2010-07-04 15:32:38 +020057 G.helper_pid = xvfork();
Denis Vlasenko021de3f2009-03-04 17:56:00 +000058
59 i = (!G.helper_pid) * 2; // for parent:0, for child:2
Denys Vlasenko34c469a2011-09-18 03:01:49 +020060 close(pipes[i + 1]); // 1 or 3 - closing one write end
61 close(pipes[2 - i]); // 2 or 0 - closing one read end
62 xmove_fd(pipes[i], STDIN_FILENO); // 0 or 2 - using other read end
63 xmove_fd(pipes[3 - i], STDOUT_FILENO); // 3 or 1 - using other write end
64 // End result:
65 // parent stdout [3] -> child stdin [2]
66 // child stdout [1] -> parent stdin [0]
Denis Vlasenko021de3f2009-03-04 17:56:00 +000067
Denis Vlasenko239d06b2008-11-06 23:42:42 +000068 if (!G.helper_pid) {
69 // child: try to execute connection helper
Denis Vlasenko47741792009-03-10 16:01:57 +000070 // NB: SIGCHLD & SIGALRM revert to SIG_DFL on exec
Pascal Bellard21e8e8d2010-07-04 00:57:03 +020071 BB_EXECVP_or_die((char**)argv);
Denis Vlasenko239d06b2008-11-06 23:42:42 +000072 }
Denis Vlasenko021de3f2009-03-04 17:56:00 +000073
74 // parent
Denis Vlasenko021de3f2009-03-04 17:56:00 +000075 // check whether child is alive
76 //redundant:signal_handler(SIGCHLD);
Denis Vlasenko239d06b2008-11-06 23:42:42 +000077 // child seems OK -> parent goes on
78 atexit(kill_helper);
79}
80
Denys Vlasenko5707b522010-12-20 05:12:39 +010081char* FAST_FUNC send_mail_command(const char *fmt, const char *param)
Denis Vlasenko239d06b2008-11-06 23:42:42 +000082{
Denys Vlasenko5707b522010-12-20 05:12:39 +010083 char *msg;
Denis Vlasenko239d06b2008-11-06 23:42:42 +000084 if (timeout)
85 alarm(timeout);
Denys Vlasenko5707b522010-12-20 05:12:39 +010086 msg = (char*)fmt;
87 if (fmt) {
Denis Vlasenko239d06b2008-11-06 23:42:42 +000088 msg = xasprintf(fmt, param);
Denys Vlasenko5707b522010-12-20 05:12:39 +010089 if (verbose)
90 bb_error_msg("send:'%s'", msg);
Denis Vlasenko239d06b2008-11-06 23:42:42 +000091 printf("%s\r\n", msg);
92 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +010093 fflush_all();
Denis Vlasenko239d06b2008-11-06 23:42:42 +000094 return msg;
95}
96
97// NB: parse_url can modify url[] (despite const), but only if '@' is there
98/*
Denys Vlasenko5707b522010-12-20 05:12:39 +010099static char* FAST_FUNC parse_url(char *url, char **user, char **pass)
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000100{
101 // parse [user[:pass]@]host
102 // return host
103 char *s = strchr(url, '@');
104 *user = *pass = NULL;
105 if (s) {
106 *s++ = '\0';
107 *user = url;
108 url = s;
109 s = strchr(*user, ':');
110 if (s) {
111 *s++ = '\0';
112 *pass = s;
113 }
114 }
115 return url;
116}
117*/
118
119void FAST_FUNC encode_base64(char *fname, const char *text, const char *eol)
120{
121 enum {
122 SRC_BUF_SIZE = 45, /* This *MUST* be a multiple of 3 */
123 DST_BUF_SIZE = 4 * ((SRC_BUF_SIZE + 2) / 3),
124 };
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000125#define src_buf text
Denys Vlasenkoc8f9a8d2010-09-16 18:10:04 +0200126 char src[SRC_BUF_SIZE];
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000127 FILE *fp = fp;
128 ssize_t len = len;
129 char dst_buf[DST_BUF_SIZE + 1];
130
131 if (fname) {
132 fp = (NOT_LONE_DASH(fname)) ? xfopen_for_read(fname) : (FILE *)text;
Denys Vlasenkoc8f9a8d2010-09-16 18:10:04 +0200133 src_buf = src;
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000134 } else if (text) {
135 // though we do not call uuencode(NULL, NULL) explicitly
136 // still we do not want to break things suddenly
137 len = strlen(text);
138 } else
139 return;
140
141 while (1) {
142 size_t size;
143 if (fname) {
144 size = fread((char *)src_buf, 1, SRC_BUF_SIZE, fp);
145 if ((ssize_t)size < 0)
146 bb_perror_msg_and_die(bb_msg_read_error);
147 } else {
148 size = len;
149 if (len > SRC_BUF_SIZE)
150 size = SRC_BUF_SIZE;
151 }
152 if (!size)
153 break;
154 // encode the buffer we just read in
155 bb_uuencode(dst_buf, src_buf, size, bb_uuenc_tbl_base64);
156 if (fname) {
157 printf("%s\n", eol);
158 } else {
159 src_buf += size;
160 len -= size;
161 }
162 fwrite(dst_buf, 1, 4 * ((size + 2) / 3), stdout);
163 }
164 if (fname && NOT_LONE_DASH(fname))
165 fclose(fp);
166#undef src_buf
167}
168
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000169/*
170 * get username and password from a file descriptor
171 */
172void FAST_FUNC get_cred_or_die(int fd)
173{
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000174 if (isatty(fd)) {
Denis Vlasenko021de3f2009-03-04 17:56:00 +0000175 G.user = xstrdup(bb_ask(fd, /* timeout: */ 0, "User: "));
176 G.pass = xstrdup(bb_ask(fd, /* timeout: */ 0, "Password: "));
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000177 } else {
Denys Vlasenko80c5b682011-05-08 21:21:10 +0200178 G.user = xmalloc_reads(fd, /* maxsize: */ NULL);
179 G.pass = xmalloc_reads(fd, /* maxsize: */ NULL);
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000180 }
Denis Vlasenko021de3f2009-03-04 17:56:00 +0000181 if (!G.user || !*G.user || !G.pass)
Denis Vlasenko239d06b2008-11-06 23:42:42 +0000182 bb_error_msg_and_die("no username or password");
183}