1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* logadm/kw.c -- manage keywords table
*
* this module expands things like $file.$n in "templates".
* calling kw_init() sets the current "filename" used for
* $file, $dirname, and $basename.
*
* any time-based expansions, like $secs, or all the strftime()
* percent sequences, are based on the exact same point in time.
* so calling kw_expand() on something like "file-%T" will return
* the same thing when called multiple times during the same logadm run.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <libintl.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/utsname.h>
#include <sys/systeminfo.h>
#include <strings.h>
#include <time.h>
#include <ctype.h>
#include <zone.h>
#include "err.h"
#include "lut.h"
#include "fn.h"
#include "kw.h"
/* forward declarations for functions used internally by this module */
static void kw_printer(const char *lhs, void *rhs, void *arg);
/*
* absurdly long length to hold sprintf of a %d,
* or strftime() expansion of a *single* percent sequence
*/
#define MAXDIGITS 100
static struct lut *Keywords; /* lookup table for keywords */
extern time_t Now; /* time used for keyword expansions */
/*
* kw_init -- initialize keywords based on given filename
*/
void
kw_init(struct fn *fnp, struct fn *nfnp)
{
static char *fullpath;
static char *nfullpath;
static char *splitpath;
static char secs[MAXDIGITS];
static struct utsname un;
static char platform[SYS_NMLN];
static char isa[SYS_NMLN];
static char domain[256];
static char *home;
static char *user;
static char *logname;
static char zonename[ZONENAME_MAX];
static zoneid_t zoneid;
static int initialized;
char *ptr;
/* make a copy of the string for $file */
if (fullpath)
FREE(fullpath);
fullpath = STRDUP(fn_s(fnp));
Keywords = lut_add(Keywords, "file", fullpath);
/* make a copy of the string for $nfile */
if (nfullpath)
FREE(nfullpath);
if (nfnp == NULL) {
nfullpath = NULL;
Keywords = lut_add(Keywords, "nfile", "");
} else {
nfullpath = STRDUP(fn_s(nfnp));
Keywords = lut_add(Keywords, "nfile", nfullpath);
}
/* make a copy of the string for $dirname/$basename */
if (splitpath)
FREE(splitpath);
splitpath = STRDUP(fn_s(fnp));
if ((ptr = strrchr(splitpath, '/')) == NULL) {
Keywords = lut_add(Keywords, "basename", splitpath);
Keywords = lut_add(Keywords, "dirname", ".");
} else {
*ptr++ = '\0';
Keywords = lut_add(Keywords, "basename", ptr);
Keywords = lut_add(Keywords, "dirname", splitpath);
}
if (initialized)
return; /* rest of the keywords don't change */
(void) snprintf(secs, MAXDIGITS, "%d", (int)Now);
Keywords = lut_add(Keywords, "secs", secs);
if (uname(&un) < 0)
err(EF_SYS, "uname");
Keywords = lut_add(Keywords, "nodename", un.nodename);
Keywords = lut_add(Keywords, "release", un.release);
Keywords = lut_add(Keywords, "machine", un.machine);
if (sysinfo(SI_ARCHITECTURE, isa, sizeof (isa)) == -1)
err(EF_WARN|EF_SYS, "sysinfo(SI_ARCHITECTURE) failed.");
else
Keywords = lut_add(Keywords, "isa", isa);
if (sysinfo(SI_PLATFORM, platform, sizeof (platform)) == -1)
err(EF_WARN|EF_SYS, "sysinfo(SI_PLATFORM) failed.");
else
Keywords = lut_add(Keywords, "platform", platform);
if (sysinfo(SI_SRPC_DOMAIN, domain, sizeof (domain)) == -1)
err(EF_WARN|EF_SYS, "sysinfo(SI_SRPC_DOMAIN) failed.");
else
Keywords = lut_add(Keywords, "domain", domain);
if ((home = getenv("HOME")) != NULL)
Keywords = lut_add(Keywords, "home", STRDUP(home));
if ((user = getenv("USER")) != NULL)
Keywords = lut_add(Keywords, "user", STRDUP(user));
if ((logname = getenv("LOGNAME")) != NULL)
Keywords = lut_add(Keywords, "logname", STRDUP(logname));
zoneid = getzoneid();
if ((getzonenamebyid(zoneid, zonename, sizeof (zonename))) == -1)
err(EF_WARN|EF_SYS, "getzonenamebyid() failed.");
else
Keywords = lut_add(Keywords, "zonename", STRDUP(zonename));
initialized = 1;
}
/* helper function for kw_print() */
static void
kw_printer(const char *lhs, void *rhs, void *arg)
{
FILE *stream = (FILE *)arg;
(void) fprintf(stream, "%20.20s %s\n", lhs, (char *)rhs);
}
/*
* kw_print -- spew the entire keywords table to stream
*
* this routine is used to dump the keywords table for debugging.
*/
void
kw_print(FILE *stream)
{
lut_walk(Keywords, kw_printer, stream);
}
/*
* kw_expand -- expand src into dst with given n value for $n (or $N)
*
* n == -1 means expand src into a reglob
* if gz is true, include ".gz" extension
*
* returns true if template contains $n or $N (implying rotation of files)
*/
boolean_t
kw_expand(struct fn *src, struct fn *dst, int n, boolean_t gz)
{
int c;
char buf[MAXDIGITS];
boolean_t hasn = B_FALSE;
struct fn *kw = fn_new(NULL);
char *ptr;
struct tm *gmt_tm = localtime(&Now);
while ((c = fn_getc(src)) != '\0')
switch (c) {
case '.':
case '(':
case ')':
case '^':
case '+':
case '{':
case '}':
/* when building an re, escape with a backslash */
if (n < 0)
fn_putc(dst, '\\');
fn_putc(dst, c);
break;
case '?':
/* when building an re, change '?' to a single dot */
if (n < 0)
fn_putc(dst, '.');
break;
case '*':
/* when building an re, change '*' to ".*" */
if (n < 0)
fn_putc(dst, '.');
fn_putc(dst, '*');
break;
case '$':
/* '$' marks the start of a keyword */
switch (c = fn_getc(src)) {
case '$':
/* double '$' stands for a single '$' */
if (n < 0)
fn_putc(dst, '\\');
fn_putc(dst, '$');
break;
case '#':
/*
* $# expands to nothing, but forces an end
* of keyword, allow juxtaposition of a
* keyword with lower-case characters
*/
break;
case 'n':
case 'N':
if (c == 'N' || !islower(fn_peekc(src))) {
/*
* we've found $n or $N, if we're
* building an re, build one that
* matches a number, otherwise
* expand the keyword to the n
* passed in to this function
*/
hasn = B_TRUE;
if (n < 0)
fn_puts(dst, "([0-9]+)$0");
else {
(void) snprintf(buf,
MAXDIGITS, "%d",
(c == 'n') ? n : n + 1);
fn_puts(dst, buf);
}
break;
}
/*FALLTHROUGH*/
default:
/* gather up the keyword name */
fn_renew(kw, NULL);
fn_putc(kw, c);
while (islower(fn_peekc(src)))
fn_putc(kw, fn_getc(src));
/* lookup keyword */
if ((ptr = (char *)lut_lookup(Keywords,
fn_s(kw))) == NULL) {
/* nope, copy it unexpanded */
if (n < 0)
fn_putc(dst, '\\');
fn_putc(dst, '$');
fn_putfn(dst, kw);
} else
fn_puts(dst, ptr);
}
break;
case '%':
/*
* % sequence for strftime(), if we're building
* an re, we take our best guess at the re for
* this sequence, otherwise we pass it to strftime()
*/
if (n < 0) {
/*
* the regex for a percent sequence is
* usually just ".*" unless it is one
* of the common cases we know about
* that are numeric. in those cases, we
* tighten up the regex to just match digits.
*
* while it is gross that we embed knowledge
* of strftime() sequences here, they are
* specified in a standard so aren't
* expected to change often, and it *really*
* cuts down on the possibility that we'll
* expire a file that isn't an old log file.
*/
if ((c = fn_getc(src)) == 'E' || c == 'O') {
c = fn_getc(src);
fn_puts(dst, ".*");
} else
switch (c) {
case 'd':
case 'g':
case 'G':
case 'H':
case 'I':
case 'j':
case 'm':
case 'M':
case 'S':
case 'u':
case 'U':
case 'V':
case 'w':
case 'W':
case 'y':
case 'Y':
/* pure numeric cases */
fn_puts(dst, "[0-9]+");
break;
case 'e':
case 'k':
case 'l':
/* possible space then num */
fn_puts(dst, " *[0-9]+");
break;
case 'D': /* %m/%d/%y */
/* adds slashes! */
fn_puts(dst,
"[0-9]+/[0-9]+/[0-9]+");
break;
case 'R': /* %H:%M */
fn_puts(dst, "[0-9]+:[0-9]+");
break;
case 'T': /* %H:%M:%S */
fn_puts(dst,
"[0-9]+:[0-9]+:[0-9]+");
break;
default:
fn_puts(dst, ".*");
}
} else {
char tbuf[4];
/* copy % sequence to tbuf */
tbuf[0] = '%';
tbuf[1] = fn_getc(src);
if (tbuf[1] == 'E' || tbuf[1] == 'O') {
/* "extended" sequence */
tbuf[2] = fn_getc(src);
tbuf[3] = '\0';
} else
tbuf[2] = '\0';
if (strftime(buf, MAXDIGITS, tbuf, gmt_tm) == 0)
/* just copy %x */
fn_puts(dst, tbuf);
else
fn_puts(dst, buf);
}
break;
default:
/* nothing special, just copy it */
fn_putc(dst, c);
}
if (gz) {
if (n < 0)
fn_puts(dst, "(\\.gz){0,1}");
else
fn_puts(dst, ".gz");
}
fn_free(kw);
return (hasn);
}
#ifdef TESTMODULE
time_t Now;
/*
* test main for kw module, usage: a.out fname [template...]
*/
int
main(int argc, char *argv[])
{
int i;
struct fn *src = fn_new(NULL);
struct fn *dst = fn_new(NULL);
err_init(argv[0]);
setbuf(stdout, NULL);
Now = time(0);
if (argc < 2)
err(0, "first arg must be fname");
kw_init(fn_new(argv[1]), NULL);
kw_print(stdout);
for (i = 2; i < argc; i++) {
int n;
for (n = -1; n < 2; n++) {
fn_renew(src, argv[i]);
fn_renew(dst, NULL);
printf("expand<%s> n %d hasn %d ",
argv[i], n, kw_expand(src, dst, n, B_FALSE));
printf("result <%s>\n", fn_s(dst));
}
}
err_done(0);
/* NOTREACHED */
return (0);
}
#endif /* TESTMODULE */
|