2 Copyright (c) 2001-2006, Gerrit Pape
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
8 1. Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14 derived from this software without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
29 /* Collected into one file from runit's many tiny files */
30 /* TODO: review, eliminate unneeded stuff, move good stuff to libbb */
35 #include "runit_lib.h"
37 unsigned byte_chr(char *s,unsigned n,int c)
54 static /* as it isn't used anywhere else */
55 void tai_pack(char *s, const struct tai *t)
60 s[7] = x & 255; x >>= 8;
61 s[6] = x & 255; x >>= 8;
62 s[5] = x & 255; x >>= 8;
63 s[4] = x & 255; x >>= 8;
64 s[3] = x & 255; x >>= 8;
65 s[2] = x & 255; x >>= 8;
66 s[1] = x & 255; x >>= 8;
70 void tai_unpack(const char *s,struct tai *t)
74 x = (unsigned char) s[0];
75 x <<= 8; x += (unsigned char) s[1];
76 x <<= 8; x += (unsigned char) s[2];
77 x <<= 8; x += (unsigned char) s[3];
78 x <<= 8; x += (unsigned char) s[4];
79 x <<= 8; x += (unsigned char) s[5];
80 x <<= 8; x += (unsigned char) s[6];
81 x <<= 8; x += (unsigned char) s[7];
86 void taia_add(struct taia *t,const struct taia *u,const struct taia *v)
88 t->sec.x = u->sec.x + v->sec.x;
89 t->nano = u->nano + v->nano;
90 t->atto = u->atto + v->atto;
91 if (t->atto > 999999999UL) {
92 t->atto -= 1000000000UL;
95 if (t->nano > 999999999UL) {
96 t->nano -= 1000000000UL;
101 int taia_less(const struct taia *t, const struct taia *u)
103 if (t->sec.x < u->sec.x) return 1;
104 if (t->sec.x > u->sec.x) return 0;
105 if (t->nano < u->nano) return 1;
106 if (t->nano > u->nano) return 0;
107 return t->atto < u->atto;
110 void taia_now(struct taia *t)
113 gettimeofday(&now, NULL);
114 tai_unix(&t->sec, now.tv_sec);
115 t->nano = 1000 * now.tv_usec + 500;
120 void taia_pack(char *s, const struct taia *t)
124 tai_pack(s, &t->sec);
128 s[7] = x & 255; x >>= 8;
129 s[6] = x & 255; x >>= 8;
130 s[5] = x & 255; x >>= 8;
133 s[3] = x & 255; x >>= 8;
134 s[2] = x & 255; x >>= 8;
135 s[1] = x & 255; x >>= 8;
140 void taia_sub(struct taia *t, const struct taia *u, const struct taia *v)
142 unsigned long unano = u->nano;
143 unsigned long uatto = u->atto;
145 t->sec.x = u->sec.x - v->sec.x;
146 t->nano = unano - v->nano;
147 t->atto = uatto - v->atto;
148 if (t->atto > uatto) {
149 t->atto += 1000000000UL;
152 if (t->nano > unano) {
153 t->nano += 1000000000UL;
158 /* XXX: breaks tai encapsulation */
159 void taia_uint(struct taia *t, unsigned s)
167 uint64_t taia2millisec(const struct taia *t)
169 return (t->sec.x * 1000) + (t->nano / 1000000);
172 void iopause(iopause_fd *x, unsigned len, struct taia *deadline, struct taia *stamp)
177 if (taia_less(deadline, stamp))
183 taia_sub(&t, deadline, &t);
184 millisecs = m = taia2millisec(&t);
185 if (m > 1000) millisecs = 1000;
189 for (i = 0; i < len; ++i)
192 poll(x, len, millisecs);
193 /* XXX: some kernels apparently need x[0] even if len is 0 */
194 /* XXX: how to handle EAGAIN? are kernels really this dumb? */
195 /* XXX: how to handle EINVAL? when exactly can this happen? */
201 return flock(fd,LOCK_EX);
204 int lock_exnb(int fd)
206 return flock(fd,LOCK_EX | LOCK_NB);
209 int open_append(const char *fn)
211 return open(fn, O_WRONLY|O_NDELAY|O_APPEND|O_CREAT, 0600);
214 int open_read(const char *fn)
216 return open(fn, O_RDONLY|O_NDELAY);
219 int open_trunc(const char *fn)
221 return open(fn,O_WRONLY | O_NDELAY | O_TRUNC | O_CREAT,0644);
224 int open_write(const char *fn)
226 return open(fn, O_WRONLY|O_NDELAY);
229 unsigned pmatch(const char *p, const char *s, unsigned len)
247 if (c != *s) return 0;
258 if (*s != '?') return 0;
266 if (*s != c) return 0;