Adding upstream version 11.74.
Signed-off-by: Daniel Baumann <daniel@debian.org>
29
README.TXT
Normal file
|
@ -0,0 +1,29 @@
|
|||
|
||||
Quality of service module for Apache Web Server.
|
||||
http://mod-qos.sourceforge.net/
|
||||
|
||||
Copyright (C) 2023 Pascal Buchbinder
|
||||
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
Please refer to ./doc/index.html for further information.
|
||||
|
||||
Directories in this archive:
|
||||
apache2/ The source code of the module (mod_qos.c).
|
||||
doc/ Contains the documentation (HTML).
|
||||
tools/ Source code of several supplement tools incl. their
|
||||
man pages.
|
||||
|
10
apache2/Makefile.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
|
||||
include $(top_srcdir)/build/special.mk
|
||||
|
||||
# use the -lcrypto option when loading mod_qos as a DSO into
|
||||
# an Apache with dynamically loaded OpenSSL library (e.g. when not
|
||||
# using mod_ssl)
|
||||
SH_LDFLAGS += -lcrypto
|
||||
SH_LDFLAGS += -lpcre
|
||||
LDFLAGS += -lcrypto
|
||||
LDFLAGS += -lpcre
|
6
apache2/config.m4
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
APACHE_MODPATH_INIT(qos)
|
||||
|
||||
APACHE_MODULE(qos, quality of service module, , , shared)
|
||||
|
||||
APACHE_MODPATH_FINISH
|
14830
apache2/mod_qos.c
Normal file
79
apache2/mod_qos.h
Normal file
|
@ -0,0 +1,79 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
|
||||
/**
|
||||
* mod_qos.h: Quality of service module for Apache Web Server.
|
||||
*
|
||||
* The Apache Web Servers requires threads and processes to serve
|
||||
* requests. Each TCP connection to the web server occupies one
|
||||
* thread or process. Sometimes, a server gets too busy to serve
|
||||
* every request due the lack of free processes or threads.
|
||||
*
|
||||
* This module implements control mechanisms that can provide
|
||||
* different priority to different requests.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __MOD_QOS_H__
|
||||
#define __MOD_QOS_H__
|
||||
|
||||
/**************************************************************************
|
||||
* Hooks
|
||||
**************************************************************************/
|
||||
#if !defined(WIN32)
|
||||
#define QOS_DECLARE(type) type
|
||||
#define QOS_DECLARE_NONSTD(type) type
|
||||
#define QOS_DECLARE_DATA
|
||||
#elif defined(QOS_DECLARE_STATIC)
|
||||
#define QOS_DECLARE(type) type __stdcall
|
||||
#define QOS_DECLARE_NONSTD(type) type
|
||||
#define QOS_DECLARE_DATA
|
||||
#elif defined(QOS_DECLARE_EXPORT)
|
||||
#define QOS_DECLARE(type) __declspec(dllexport) type __stdcall
|
||||
#define QOS_DECLARE_NONSTD(type) __declspec(dllexport) type
|
||||
#define QOS_DECLARE_DATA __declspec(dllexport)
|
||||
#else
|
||||
#define QOS_DECLARE(type) __declspec(dllimport) type __stdcall
|
||||
#define QOS_DECLARE_NONSTD(type) __declspec(dllimport) type
|
||||
#define QOS_DECLARE_DATA __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#define QOS_OPTIONAL_HOOK(name,fn,pre,succ,order) \
|
||||
APR_OPTIONAL_HOOK(qos,name,fn,pre,succ,order)
|
||||
|
||||
/**
|
||||
* mod_qos.h header file defining hooks for path/query
|
||||
* decoding (used by QS_Deny* and QS_Permit* rules).
|
||||
*
|
||||
* Define QS_MOD_EXT_HOOKS in order to enable these hooks
|
||||
* within mod_qos.c.
|
||||
*/
|
||||
|
||||
/* hook to decode/unescape the path portion of the request uri */
|
||||
APR_DECLARE_EXTERNAL_HOOK(qos, QOS, apr_status_t, path_decode_hook,
|
||||
(request_rec *r, char **path, int *len))
|
||||
/* hook to decode/unescape the query portion of the request uri */
|
||||
APR_DECLARE_EXTERNAL_HOOK(qos, QOS, apr_status_t, query_decode_hook,
|
||||
(request_rec *r, char **query, int *len))
|
||||
|
||||
#endif /* __MOD_QOS_H__ */
|
1947
doc/CHANGES.txt
Normal file
202
doc/LICENSE.txt
Normal file
|
@ -0,0 +1,202 @@
|
|||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
79
doc/MESSAGES.txt
Normal file
|
@ -0,0 +1,79 @@
|
|||
mod_qos version 11.74
|
||||
mod_qos(001): QS_ClientEventLimitCount directives can't be added/removed by graceful restart. A server restart is required to apply the new configuration!
|
||||
mod_qos(002): failed to create shared memory (ACT)(%s): %s (%lu bytes)
|
||||
mod_qos(002): failed to create shared memory (client control)(%s): %s (%d bytes)
|
||||
mod_qos(003): request level rule %s has no concurrent request limitations
|
||||
mod_qos(004): failed to create mutex (ACT)(%s): %s
|
||||
mod_qos(004): failed to create mutex (client control)(%s): %s
|
||||
mod_qos(006): could not compile request header filter rules: %s
|
||||
mod_qos(006): could not compile response header filter rules: %s
|
||||
mod_qos(007): calculated MaxClients/MaxRequestWorkers (max connections): %d, applied limit: %d (QS_MaxClients)
|
||||
mod_qos(008): could not create supervisor thread (%s), disable request rate enforcement
|
||||
mod_qos(009): could not retrieve mod_ssl functions
|
||||
mod_qos(009): failed to initialize the qslog facility '%s'
|
||||
mod_qos(009): found default error document '%s'. Use the QS_ErrorPage directive to override this default page.
|
||||
mod_qos(009): loaded MPM is '%s' but mod_qos should be used with MPM 'Worker' or 'Event' only.
|
||||
mod_qos(009): mod_parp not available (required by some directives)
|
||||
mod_qos(009): mod_unique_id not available (mod_qos generates simple request id if required)
|
||||
mod_qos(009): running in 'log only' mode - rules are NOT enforced!
|
||||
mod_qos(009): server version is %d.%d but mod_qos should be used with Apache 2.4 only.
|
||||
mod_qos(010): access denied%s, QS_LocRequestLimit* rule: %s(%d), concurrent requests=%d, c=%s, id=%s
|
||||
mod_qos(011): access denied, QS_CondLocRequestLimitMatch rule: %s(%d), concurrent requests=%d, c=%s, id=%s
|
||||
mod_qos(012): access denied%s, QS_EventRequestLimit rule: %s(%d), concurrent requests=%d, c=%s, id=%s
|
||||
mod_qos(013): access denied%s, QS_%sEventLimitCount rule: %s, max=%d, current=%d, c=%s, id=%s
|
||||
mod_qos(021): session cookie verification failed, decoding failed, id=%s
|
||||
mod_qos(023): session cookie verification failed, expired, id=%s
|
||||
mod_qos(025): failed to create session cookie, id=%s
|
||||
mod_qos(030): access denied%s, QS_SrvMaxConn rule: max=%d, concurrent connections=%d, c=%s
|
||||
mod_qos(031): access denied (previously), QS_SrvMaxConnPerIP rule: max=%d, concurrent connections=%d, message repeated %d times, c=%s
|
||||
mod_qos(031): access denied%s, QS_SrvMaxConnPerIP rule: max=%d, concurrent connections=%d, c=%s
|
||||
mod_qos(031): access denied%s, QS_SrvMaxConnPerIP rule: max=%d, concurrent connections=%d, message repeated %d times, c=%s
|
||||
mod_qos(034): %s, QS_SrvMinDataRate rule (enforce keep-alive), c=%s
|
||||
mod_qos(034): %s, QS_SrvMinDataRate rule (%s%s): min=%d, this connection=%d, c=%s
|
||||
mod_qos(035): QS_SrvMaxConn: no free IP slot available! Check log for unclean child exit and consider to do a graceful server restart if this condition persists. You might also increase the number of supported connections using the 'QS_MaxClients' directive.
|
||||
mod_qos(036): QS_SrvMinDataRate: unexpected connection status! connections=%d, cal. request rate=%d, max. limit=%d. Check log for unclean child exit and consider to do a graceful server restart if this condition persists. You might also increase the number of supported connections using the 'QS_MaxClients' directive.
|
||||
mod_qos(037): loaded MPM is 'event' and the QS_KeepAliveTimeout/QS_MaxKeepAliveRequests directives can't be used.
|
||||
mod_qos(038): DSCP, failed to set socket options, QS_Set_DSCP=%s, socket=%s, rc=%d, id=%s
|
||||
mod_qos(040): access denied, %s rule id: %s (%s), action=%s, c=%s, id=%s
|
||||
mod_qos(041): access denied, no permit rule match, action=%s, c=%s, id=%s
|
||||
mod_qos(042): drop %s header%s: '%s: %s', %s, c=%s, id=%s
|
||||
mod_qos(043): access denied%s, %s header: '%s: %s', %s, c=%s, id=%s
|
||||
mod_qos(044): access denied%s, QS_LimitRequestBody: invalid content-length header, c=%s, id=%s
|
||||
mod_qos(044): access denied%s, QS_LimitRequestBody: max=%ld this=%ld, c=%s, id=%s
|
||||
mod_qos(045): access denied, invalid request line: can't parse uri, c=%s, id=%s
|
||||
mod_qos(046): access denied, invalid url encoding, action=%s, c=%s, id=%s
|
||||
mod_qos(047): access denied, reached milestone '%d' (%s), user has already passed '%s', action=%s, c=%s, id=%s
|
||||
mod_qos(048): access denied, invalid JSON syntax (%s), action=%s, c=%s, id=%s
|
||||
mod_qos(049): redirect to %s, var=%s, action=%s, c=%s, id=%s
|
||||
mod_qos(050): request rate limit, rule: %s(%ld), req/sec=%ld, delay=%dms%s
|
||||
mod_qos(051): request rate limit, rule: %s(%ld), req/sec=%ld, delay=%dms
|
||||
mod_qos(060): access denied (previously), QS_ClientEventBlockCount rule: max=%d, current=%hu, message repeated %d times, c=%s
|
||||
mod_qos(060): access denied, QS_ClientEventBlockCount rule: max=%d, current=%hu, age=%ld, c=%s
|
||||
mod_qos(060): access denied, QS_ClientEventBlockCount rule: max=%d, current=%hu, message repeated %d times, c=%s
|
||||
mod_qos(060): access denied%s, QS_ClientEventBlockCount rule: max=%d, current=%hu, age=%ld, c=%s
|
||||
mod_qos(061): request rate limit, rule: QS_Event(%d), req/sec=%ld, delay=%dms%s
|
||||
mod_qos(062): request rate limit, rule: QS_Event(%d), req/sec=%ld, delay=%dms
|
||||
mod_qos(065): access denied%s, QS_ClientEventRequestLimit rule: max=%d, current=%d, c=%s, id=%s
|
||||
mod_qos(066): access denied%s, QS_ClientPrefer rule (penalty=%d 0x%02x): max=%d, concurrent connections=%d, c=%s
|
||||
mod_qos(067): access denied%s, QS_%sClientEventLimitCount rule: event=%s, max=%hu, current=%hu, age=%ld, c=%s
|
||||
mod_qos(068): QS_ClientSerialize exceeds limit of 5 minutes, c=%s, id=%s
|
||||
mod_qos(068): QS_SrvSerialize exceeds limit of %d seconds, id=%s
|
||||
mod_qos(069): no valid IP header found (@%s): header '%s' not available, fallback to connection's IP %s, id=%s
|
||||
mod_qos(069): no valid IP header found (@%s): invalid header value '%s', fallback to connection's IP %s, id=%s
|
||||
mod_qos(070): console, not acceptable, client data store has not been enabled, id=%s
|
||||
mod_qos(070): console, not acceptable, invalid ip/wrong format, id=%s
|
||||
mod_qos(070): console, not acceptable, missing request query (action/address), id=%s
|
||||
mod_qos(070): console, not acceptable, qos client control has not been activated, id=%s
|
||||
mod_qos(070): console, not acceptable, unknown action '%s', id=%s
|
||||
mod_qos(071): console, action '%s' applied to client ip entry '%s', id=%s
|
||||
mod_qos(071): console, add new client ip entry '%s', is=%s
|
||||
mod_qos(072): handler has been disabled for this host, id=%s
|
||||
mod_qos(080): Can't generate random data, id=%s
|
||||
mod_qos(083): Can't generate random data.
|
||||
mod_qos(100): QS_ClientGeoCountryDB has not been configured
|
||||
mod_qos(101): access denied%s, QS_ClientGeoCountryPriv rule: max=%d, concurrent connections=%d, c=%s country=%s
|
||||
mod_qos(147): access denied, reached milestone '%d' (%s), earlier than expected (right after %ld instead of %d seconds), action=%s, c=%s, id=%s
|
||||
mod_qos(166): unexpected connection dispatching, skipping connection counter update for QS_ClientPrefer rule, c=%s
|
||||
mod_qos(167): closing connection at process connection hook, c=%s
|
||||
mod_qos(200): { "scoreboard": { "open": %d, "waiting": %d, "read": %d, "write": %d, "keepalive": %d, "start": %d, "log": %d, "dns": %d, "closing": %d, "finishing": %d, "idle": %d }, "maxclients": { "max": %d, "busy": %d%s }%s }
|
||||
mod_qos(210): ENV %s %s %s
|
BIN
doc/favicon.ico
Normal file
After Width: | Height: | Size: 1.4 KiB |
603
doc/glossary.html
Normal file
|
@ -0,0 +1,603 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>mod_qos - Additional Information</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
|
||||
<meta name="author" content="Pascal Buchbinder" />
|
||||
<meta name="KeyWords" content="mod_qos, Quality of Service, Apache Web Server" />
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<style TYPE="text/css">
|
||||
<!--
|
||||
body {
|
||||
background-color: white;
|
||||
color: black;
|
||||
font-family: sans-serif, arial, verdana;
|
||||
font-weight: normal;
|
||||
text-align: left;
|
||||
}
|
||||
a:link { color:#00673F; text-decoration:none; }
|
||||
a:visited { color:#00673F; text-decoration:none; }
|
||||
a:focus { color:black; text-decoration:underline; }
|
||||
a:hover { color:black; text-decoration:underline; }
|
||||
a:active { color:black; text-decoration:underline; }
|
||||
syntax { font-family: monospace; font-size: 14; line-height: 1.6; }
|
||||
.btable { font-size:0.75em; }
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!--
|
||||
|
||||
Quality of service module for Apache Web Server.
|
||||
|
||||
See http://mod-qos.sourceforge.net/ for further details.
|
||||
|
||||
Copyright (C) 2023 Pascal Buchbinder
|
||||
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
-->
|
||||
<table>
|
||||
<tbody>
|
||||
<tr><td><a href="index.html"><img src="images/mod_qos.gif" alt="mod_qos" title="mod_qos" /></a></td>
|
||||
<td style="vertical-align: bottom;"><h1>Additional Information</h1></td></tr>
|
||||
<tr><td> </td>
|
||||
<td>
|
||||
|
||||
|
||||
<p>
|
||||
This page gives you additional information on certain aspects of
|
||||
<a href="index.html">mod_qos</a> to get a better understanding about
|
||||
how to use the module.
|
||||
</p>
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
<ul>
|
||||
<li><a href="#directives">Directives</a></li>
|
||||
<li><a href="#rules">Rules</a></li>
|
||||
<li><a href="#variables">Environment Variables</a></li>
|
||||
<li><a href="#concurrency">Concurrency Counter</a></li>
|
||||
<ul>
|
||||
<li><a href="#QS_LocRequestLimit_Example">Sample Use Case</a></li>
|
||||
</ul>
|
||||
<li><a href="#repeat">Repeat Counter</a></li>
|
||||
<li><a href="#throughput">Throughput Control</a></li>
|
||||
<ul>
|
||||
<li><a href="#requestPerSecond">Requests per Second</a></li>
|
||||
</ul>
|
||||
<li><a href="#serialization">Serialization</a></li>
|
||||
<li><a href="#ssi">Error Pages and Server Side Includes (SSI)</a></li>
|
||||
<li><a href="#UserTracking">User Tracking</a></li>
|
||||
<li><a href="#RequestStatistics">Request Statistics Using <i>qslog</i></a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="directives"></a>
|
||||
<h2>Directives</h2>
|
||||
<p>
|
||||
The module is configured by directives. All directives process the
|
||||
connection, HTTP request, and response data in a pre-defined sequence.
|
||||
The following graph shows the order in which the directives work.
|
||||
</p>
|
||||
<p>
|
||||
<a href="images/directive_seq.gif"><img src="images/directive_seq.gif" height="435" width="558" title="directive sequence" alt="directive sequence"/></a>
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="rules"></a>
|
||||
<h2>Rules</h2>
|
||||
<p>
|
||||
<a href="index.html">mod_qos</a> allows you to configure different kind of
|
||||
rules. The main component of a rule is its counter. A rule measures either
|
||||
the <a href="#concurrency">concurrency</a> (how many times something happens
|
||||
at the same time), the <a href="#repeat">occurrence </a> (how often does
|
||||
something happen in a certain amount of time), or the
|
||||
<a href="#throughput">throughput</a> (sent amount of data or number of
|
||||
request) and stores this information within that counter.</p>
|
||||
<p>
|
||||
Every rule has it's own threshold and maintains its own counter. A rule
|
||||
is identified by either an URL pattern/matching string or by an
|
||||
<a href="#variables">environment variable name</a>.
|
||||
You can configure as many rules as you want. </p>
|
||||
<img src="images/Rule.png" height="164" width="514" alt="Rule" />
|
||||
<p>
|
||||
<i>Note: Some counters are only available once. This applies to the counters of
|
||||
the rules using the
|
||||
<code><a href="index.html#QS_Block">QS_Block</a></code>,
|
||||
<code><a href="index.html#QS_SrvSerialize_var">QS_SrvSerialize</a></code>, and
|
||||
<code><a href="index.html#QS_Serialize">QS_Serialize</a></code>
|
||||
<a href="#variables">environment variables</a>.
|
||||
</i>
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="variables"></a>
|
||||
<h2>Environment Variables</h2>
|
||||
<p>
|
||||
The Apache web server provides a mechanism for storing information
|
||||
in so called <i>environment variables</i>. <a href="index.html">mod_qos</a> uses these
|
||||
variables to exchange data respectively signalize events between
|
||||
<a href="#rules">different rules</a> defined by the
|
||||
<a href="#directives">corresponding directive</a>. These
|
||||
variables can also be written or read by other Apache modules, such as
|
||||
<a href="http://modsetenvifplus.sourceforge.net/">mod_setenvifplus <img src="images/link.png"/></a>
|
||||
or <a href="http://httpd.apache.org/docs/current/mod/mod_setenvif.html">mod_setenvif <img src="images/link.png"/></a>.
|
||||
</p>
|
||||
<p>Example:<br>
|
||||
The <code><a href="http://httpd.apache.org/docs/current/mod/mod_setenvif.html#setenvif">SetEnvIf <img src="images/link.png"/></a></code> directive
|
||||
is used to set the <i>LimitLogin</i> variable if the request line matches
|
||||
the <code>^/wp-login.php</code> pattern while the
|
||||
<a href="index.html#QS_ClientEventLimitCount"><code>QS_ClientEventLimitCount</code></a>
|
||||
directives increments the <a href="#repeat">repeat counter</a> having the same name
|
||||
if the variable is present.
|
||||
<br>
|
||||
<img src="images/Events.png" height="396" width="795" alt="Event set by SetEnvIf and processed by QS_ClientEventLimitCount" />
|
||||
</p>
|
||||
<p>It is also possible to write the values of these variables to your log
|
||||
file using the format string <code>%{VARNAME}e</code> within the
|
||||
<code><a href="http://httpd.apache.org/docs/current/mod/mod_log_config.html">TransferLog/CustomLog <img src="images/link.png"/></a></code>
|
||||
directives. Or you can use them within error pages using
|
||||
<a href="#ssi">server-side includes (SSI)</a>.
|
||||
</p>
|
||||
<p>
|
||||
<i>Note: Whenever you use a directive (such as
|
||||
<code><a href="http://modsetenvifplus.sourceforge.net/#SetEnvIfPlus">SetEnvIfPlus <img src="images/link.png"/></a></code>) which can either process request attributes (such
|
||||
as HTTP headers) or environment variables, you must make sure that
|
||||
a client can not bypass your rules by sending a request header
|
||||
with the same name as the environment variable used in your configuration.
|
||||
Use either the <a href="index.html#QS_RequestHeaderFilter">request header filter</a>
|
||||
or the <code><a href="index.html#QS_UnsetReqHeader">QS_UnsetReqHeader</a></code>
|
||||
directive to prevent anyone from sending a request header with the same name as
|
||||
the variable you have defined.
|
||||
</i></p>
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="concurrency"></a>
|
||||
<h2>Concurrency Counter</h2>
|
||||
<p>
|
||||
A "concurrency counter" is used to determine how many times something
|
||||
happens at the same time (concurrent), e.g. HTTP requests accessing the same
|
||||
resource/URL at the same time. The rules using this counter type are either
|
||||
defined by an <a href="#variables">environment variable name</a> or an
|
||||
URL pattern (regular expression or a string matching the request's URL).
|
||||
Such a rule automatically increments the counter when the Apache web server
|
||||
starts to process a matching request and decrements the counter when the
|
||||
request processing is completed.
|
||||
</p>
|
||||
<p>
|
||||
You have to configure a threshold and the rule's variable name resp. URL
|
||||
pattern. Requests (or new connections) are denied as soon as the configured
|
||||
threshold is reached.
|
||||
</p>
|
||||
<p>
|
||||
Directives using this counter type are:
|
||||
<ul>
|
||||
<li><a href="index.html#QS_LocRequestLimitMatch"><syntax>QS_LocRequestLimitMatch</syntax></a></li>
|
||||
<li><a href="index.html#QS_LocRequestLimit"><syntax>QS_LocRequestLimit</syntax></a></li>
|
||||
<li><a href="index.html#QS_CondLocRequestLimitMatch"><syntax>QS_CondLocRequestLimitMatch</syntax></a></li>
|
||||
<li><a href="index.html#QS_EventRequestLimit"><syntax>QS_EventRequestLimit</syntax></a></li>
|
||||
<li><a href="index.html#QS_ClientEventRequestLimit"><syntax>QS_ClientEventRequestLimit</syntax></a></li>
|
||||
</ul>
|
||||
Also the
|
||||
<a href="index.html#QS_SrvMaxConn"><code>QS_SrvMaxConn</code></a>,
|
||||
<a href="index.html#QS_SrvMaxConnClose"><code>QS_SrvMaxConnClose</code></a>, and
|
||||
<a href="index.html#QS_SrvMaxConnPerIP"><code>QS_SrvMaxConnPerIP</code></a>
|
||||
directives use this counter type, although with fewer parameter options.
|
||||
</p>
|
||||
<p>
|
||||
<a name="QS_LocRequestLimit_Example"></a>
|
||||
<h4>Sample Use Case</h4>
|
||||
Now let us look at an example to show where these rules can be used.
|
||||
Let's assume that you have two applications. We call them
|
||||
"<font color="green">A</font>" and "<font color="blue">B</font>".
|
||||
Application "<font color="green">A</font>" has been deployed on
|
||||
path <code>/app/a</code> and "<font color="blue">B</font>"
|
||||
on <code>/app/b</code>.
|
||||
<table width="780px">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
As long as the server has enough resources, users can access both
|
||||
applications the same time without influencing each other.<br>
|
||||
All requests are processed quickly and the workers (w) become free
|
||||
again to serve new requests.
|
||||
<br><br>
|
||||
</td>
|
||||
<td>
|
||||
<small> </small> <img src="images/qsloc1.png" height="216" width="408" alt="trouble-free"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
But if the application "<font color="blue">B</font>" becomes slow,
|
||||
the duration of request processing increases and all workers (w) become busy.
|
||||
There are no free workers left and application
|
||||
"<font color="green">A</font>" becomes unavailable because of that.
|
||||
<br><br>
|
||||
</td>
|
||||
<td>
|
||||
<img src="images/qsloc2.png" height="212" width="422" alt="disruption"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
A <a href="index.html#QS_LocRequestLimit"><code>QS_LocRequestLimit</code></a> or
|
||||
<a href="index.html#QS_LocRequestLimitMatch"><code>QS_LocRequestLimitMatch</code></a>
|
||||
rule can help in such a situation. mod_qos limits the
|
||||
number of requests to application "<font color="blue">B</font>"
|
||||
so that application "<font color="green">A</font>" remains
|
||||
available even if application "<font color="blue">B</font>"
|
||||
has performance problems.
|
||||
</td>
|
||||
<td>
|
||||
<img src="images/qsloc3.png" height="244" width="422" alt="disruption"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
Such a scenario can occur due to various infrastructure problems,
|
||||
e.g., by slow database queries.<br> A similar situation can also
|
||||
arise through an external influence: if someone penetrates application
|
||||
"<font color="blue">B</font>" with a <i>HTTP GET / POST flood DoS attack</i>,
|
||||
then application "<font color="green">A</font>" could also become
|
||||
unreachable.
|
||||
A <a href="index.html#QS_LocRequestLimit"><code>QS_LocRequestLimit</code></a>
|
||||
rule can prevent this.
|
||||
</p>
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="repeat"></a>
|
||||
<h2>Repeat Counter</h2>
|
||||
<p>
|
||||
"Repeat counters" limit the number how often (Cr) something is allowed to
|
||||
happen in a certain amount of time (Td). These rules trigger a timer whenever
|
||||
the defined event occurs the first time and start to count every subsequent event
|
||||
until the timer expires. If the event counter reaches the defined limitation,
|
||||
requests are blocked until the time is up.
|
||||
</p>
|
||||
<p>
|
||||
<img src="images/LimitCount.png" height="432" width="576" alt="reapet counter"/>
|
||||
</p>
|
||||
<p>
|
||||
All repeat counters allow you to define an event which shall
|
||||
increment the counter if they occur. You also have to configure a
|
||||
duration Td and the threshold Cr, defining how many events are
|
||||
allowed within the time Td.</p>
|
||||
<p>Directive parameter example:<br>
|
||||
<img src="images/LimitCountExample.png" height="165" width="574" alt="QS_ClientEventLimitCount" />
|
||||
</p>
|
||||
<p>
|
||||
While the counter is automatically cleared (set to 0) when the
|
||||
time Td is up, you might also configure additional events to
|
||||
<a href="index.html#_Decrement">decrement</a> or
|
||||
<a href="index.html#_Clear">clear</a> the counter earlier.
|
||||
</p>
|
||||
<p>
|
||||
The directives using this counter type are:
|
||||
<ul>
|
||||
<li><a href="index.html#QS_EventLimitCount"><syntax>QS_EventLimitCount</syntax></a></li>
|
||||
<li><a href="index.html#QS_CondEventLimitCount"><syntax>QS_CondEventLimitCount</syntax></a></li>
|
||||
<li><a href="index.html#QS_ClientEventLimitCount"><syntax>QS_ClientEventLimitCount</syntax></a></li>
|
||||
<li><a href="index.html#QS_CondClientEventLimitCount"><syntax>QS_CondClientEventLimitCount</syntax></a></li>
|
||||
<li><a href="index.html#QS_ClientEventBlockCount"><syntax>QS_ClientEventBlockCount</syntax></a></li>
|
||||
</ul>
|
||||
<i>Note: Some directives support the increase of the counter by more than "1"
|
||||
taking the variable's value into account.</i>
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="throughput"></a>
|
||||
<h2>Throughput Control</h2>
|
||||
<p>
|
||||
Throughput control is implemented by measuring the current usage and
|
||||
calculating a necessary delay which needs to be applied to the
|
||||
data processing in order to achieve the desired limitation (closed
|
||||
loop control system).
|
||||
</p>
|
||||
<p>
|
||||
<img src="images/ClosedLoop.png" height="216" width="478" alt="closed loop"/>
|
||||
</p>
|
||||
<p>
|
||||
<a href="index.html">mod_qos</a> can limit the bandwidth when downloading
|
||||
data from your web server to the client. This throughput control can
|
||||
be configured by the following directives:
|
||||
<ul>
|
||||
<li><a href="index.html#QS_LocKBytesPerSecLimitMatch"><syntax>QS_LocKBytesPerSecLimitMatch</syntax></a></li>
|
||||
<li><a href="index.html#QS_LocKBytesPerSecLimit"><syntax>QS_LocKBytesPerSecLimit</syntax></a></li>
|
||||
<li><a href="index.html#QS_EventKBytesPerSecLimit"><syntax>QS_EventKBytesPerSecLimit</syntax></a></li>
|
||||
</ul>
|
||||
<i>Note: Throughput control should always be used with a <a href="#concurrency">concurrency counter</a>
|
||||
because the added delay increases the number of simultaneous requests.
|
||||
</i></p>
|
||||
<a name="requestPerSecond"></a>
|
||||
<h3>Requests per Second</h3>
|
||||
<p>
|
||||
It is also possible to limit the number or requests per second to a
|
||||
resource. This control function is less accurate than the bandwidth
|
||||
limitation, since the measurement of the request rate takes longer
|
||||
(several seconds) and the request delay is more coarse-grained.<br>
|
||||
The following directive can be used to limit the number of requests
|
||||
per second:
|
||||
<ul>
|
||||
<li><a href="index.html#QS_LocRequestPerSecLimitMatch"><syntax>QS_LocRequestPerSecLimitMatch</syntax></a></li>
|
||||
<li><a href="index.html#QS_LocRequestPerSecLimit"><syntax>QS_LocRequestPerSecLimit</syntax></a></li>
|
||||
<li><a href="index.html#QS_EventPerSecLimit"><syntax>QS_EventPerSecLimit</syntax></a></li>
|
||||
<li><a href="index.html#QS_ClientEventPerSecLimit"><syntax>QS_ClientEventPerSecLimit</syntax></a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="serialization"></a>
|
||||
<h2>Serialization</h2>
|
||||
<p>
|
||||
<a href="index.html">mod_qos</a> offers you the option to serialize requests.
|
||||
Serialization means, that requests are processed one after the other. Incoming
|
||||
requests are queued if another request is in process and have to wait until
|
||||
the previous request is finished.
|
||||
</p>
|
||||
<p>
|
||||
<img src="images/Serialization.png" height="336" width="570" alt="serialization"/>
|
||||
</p>
|
||||
<p>
|
||||
Requests, which shall be serialized, are tagged by one of the following
|
||||
<a href="#variables">environment variables</a>:
|
||||
<ul>
|
||||
<li><syntax><a href="index.html#QS_SrvSerialize_var">QS_SrvSerialize</a></syntax></li>
|
||||
<li><syntax><a href="index.html#QS_Serialize">QS_Serialize</a></syntax></li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>
|
||||
Serialization might be applied on a per
|
||||
<a href="index.html#QS_SrvSerialize">server level</a> (serializing all HTTP
|
||||
requests) or on a <a href="index.html#QS_ClientSerialize">per client level</a>
|
||||
(serializing multiple requests coming from the same client/IP address).
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="ssi"></a>
|
||||
<a name="SSI"></a>
|
||||
<h2>Error Pages and Server Side Includes (SSI)</h2>
|
||||
<p>
|
||||
Custom error documents to be used by <a href="index.html">mod_qos</a>
|
||||
are either configured using the
|
||||
<code><a href="index.html#QS_ErrorPage">QS_ErrorPage</a></code> directive
|
||||
or the <code><a href="index.html#QS_ErrorPage_Var">QS_ErrorPage</a></code>
|
||||
variable.<br>
|
||||
You may also use Apache's <a href="http://httpd.apache.org/docs/current/howto/ssi.html">server-side includes (SSI) <img src="images/link.png"/></a> to generate the content
|
||||
of the error document dynamically. The <a href="index.html#errorlog">error codes</a> and
|
||||
other <a href="index.html#variables">variables</a> set by
|
||||
<a href="index.html">mod_qos</a> can be used.
|
||||
</p>
|
||||
<p>
|
||||
<table border="0" cellspacing="5" cellpadding="10" width="100%">
|
||||
<tr><td bgcolor="#E2EDE2">
|
||||
Sample configuration:<br>
|
||||
<pre>
|
||||
AddType text/html .shtml
|
||||
AddOutputFilter INCLUDES .shtml
|
||||
QS_ErrorPage <a href="#qs_error.shtml">/errorpages/qs_error.shtml</a>
|
||||
</pre>
|
||||
</td></tr>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<table border="0" cellspacing="5" cellpadding="10" width="100%">
|
||||
<tr><td bgcolor="#E2EDE2"><a name="qs_error.shtml"></a>
|
||||
Sample page:<br>
|
||||
<pre>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<!--
|
||||
-- mod_qos sample SSI error page (Apache 2.4)
|
||||
-->
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store"/>
|
||||
<meta http-equiv="expires" content="0" />
|
||||
<title>ERROR - <!--#echo var="REDIRECT_ERROR_NOTES" --></title>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<b><i>sorry - the server was unable to complete your request</i></b>
|
||||
</p>
|
||||
<p>
|
||||
code: mod_qos(<!--#echo var="<a href="index.html#QS_ErrorNotes">QS_ErrorNotes</a>" -->)<br>
|
||||
<!--#if expr="v('REDIRECT_ERROR_NOTES') =~ /00[0-9]/" -->
|
||||
reason: initialisation failure
|
||||
<!--#elif expr="v('REDIRECT_ERROR_NOTES') =~ /0[18][0-9]/" -->
|
||||
reason: request rule
|
||||
<!--#elif expr="v('REDIRECT_ERROR_NOTES') =~ /03[0-9]/" -->
|
||||
reason: connection rule
|
||||
<!--#elif expr="v('REDIRECT_ERROR_NOTES') =~ /[01]4[0-9]/" -->
|
||||
reason: request filter
|
||||
<!--#elif expr="v('REDIRECT_ERROR_NOTES') =~ /05[0-9]/" -->
|
||||
reason: bandwidth limitation
|
||||
<!--#elif expr="v('REDIRECT_ERROR_NOTES') =~ /[01]6[0-9]/" -->
|
||||
reason: client limitation <br>
|
||||
remaining time: <span id="remaining"><!--#echo var="<a href="index.html#QS_Limit_Remaining">QS_Limit_Remaining</a>" --></span> seconds
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
setInterval(function () {
|
||||
var msg = document.getElementById('remaining');
|
||||
if(msg) {
|
||||
var value = msg.innerHTML;
|
||||
var remainTime = value - 1;
|
||||
if(remainTime < 0) {
|
||||
window.location = window.location.pathname;
|
||||
} else {
|
||||
msg.innerHTML = remainTime;
|
||||
}
|
||||
}
|
||||
}, 1000);
|
||||
//-->
|
||||
</script>
|
||||
<!--#elif expr="v('REDIRECT_ERROR_NOTES') =~ /10[0-9]/" -->
|
||||
reason: GEO location limitation
|
||||
<!--#else -->
|
||||
reason: generic failure
|
||||
<!--#endif -->
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
</pre>
|
||||
</td></tr>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="UserTracking"></a>
|
||||
<a name="QS_UserTrackingCookieName"></a>
|
||||
<h2>User Tracking</h2>
|
||||
<p>
|
||||
It might be necessary to identify individual users to define appropriate QoS
|
||||
rules. For this reason, <a href="index.html">mod_qos</a> can set a cookie
|
||||
containing a unique identifier. This identifier is then written to the
|
||||
<code><a href="index.html#mod_qos_user_id">mod_qos_user_id</a></code>
|
||||
environment variable and you can add it to your log files by the
|
||||
format string <code>%{mod_qos_user_id}e</code>. This allows you to identify
|
||||
all requests issued by a user.</p>
|
||||
<p>
|
||||
This feature is enabled by the following directive:
|
||||
<ul>
|
||||
<li><syntax>QS_UserTrackingCookieName <name> [<path>] [<domain>] ['session'] ['jsredirect']</syntax><br>
|
||||
The parameter "name" defines the cookie's name and "domain" (optional)
|
||||
the domain attribute for the Set-Cookie header. The string "session" can
|
||||
be defined if the cookie should not be stored by the session (but can
|
||||
be deleted when the user closes this browser).
|
||||
</li>
|
||||
</ul>
|
||||
You can also enforce the browser to support cookies by specifying the
|
||||
"path" parameter for the <code>QS_UserTrackingCookieName</code> directive.
|
||||
This parameter defines an error document and mod_qos
|
||||
answers the request with a redirect (302) to this document when setting
|
||||
the cookie initially. The browser will follow the redirect and mod_qos
|
||||
redirects the browser back to the initially requested page if the request
|
||||
to this error document contains the tracking cookie. If the browser did not
|
||||
send the cookie, the error document is shown.
|
||||
</p>
|
||||
<p> <img src="images/UserTracking.png" height="386" width="410" alt="user tracking cookie enforcement"/></p>
|
||||
<p>
|
||||
<i>Note: You can exclude certain clients from this enforcement by
|
||||
setting the <code>DISABLE_UTC_ENFORCEMENT</code>
|
||||
<a href="#variables">environment variable</a>
|
||||
at server level (outside Location), e.g., to allow crawlers not
|
||||
supporting cookies to access your site.</i>
|
||||
</p>
|
||||
<p>
|
||||
<table border="0" cellspacing="5" cellpadding="10" width="100%">
|
||||
<tr><td bgcolor="#E2EDE2">
|
||||
Sample configuration:<br>
|
||||
<pre>
|
||||
<a href="index.html#QS_UserTrackingCookieName">QS_UserTrackingCookieName</a> qstrack <a href="#cookiecheck">/errorpages/cookiecheck.html</a> session
|
||||
<a href="index.html#QS_SessionKey">QS_SessionKey</a> sB.F4_0%D700ahXT2
|
||||
</pre>
|
||||
</td></tr>
|
||||
</table>
|
||||
</p>
|
||||
<p>
|
||||
<table border="0" cellspacing="5" cellpadding="10" width="100%">
|
||||
<tr><td bgcolor="#E2EDE2"><a name="cookiecheck"></a>
|
||||
Sample page:<br>
|
||||
<pre>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store"/>
|
||||
<meta http-equiv="expires" content="0" />
|
||||
<title>Cookie Check Page</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Cookie Check Failed</h1>
|
||||
<p>
|
||||
Please enable cookies in your browser.<br>
|
||||
Bitte schalten Sie in Ihrem Browser Cookies ein.<br>
|
||||
Activez les cookies dans votre navigateur, s'il vous pla&icirc;t.<br>
|
||||
Por favor active las cookies en su navegador.<br>
|
||||
Si prega di attivare i cookies nel proprio browser.<br>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
</pre>
|
||||
</td></tr>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
<hr>
|
||||
<a name="qslog"></a>
|
||||
<a name="RequestStatistics"></a>
|
||||
<h2>Request Statistics Using <i>qslog</i></h2>
|
||||
<p>
|
||||
<code><a href="qslog.1.html">qslog</a></code> is a command line tool to
|
||||
generate usage statistics data from log files. It can generate the data in
|
||||
real time if defined within your Apache's server configuration.
|
||||
<table border="0" cellspacing="5" cellpadding="10" width="100%">
|
||||
<tr><td bgcolor="#E2EDE2">
|
||||
Sample configuration:<br>
|
||||
<pre>
|
||||
CustomLog "|/usr/bin/qslog -o logs/qslog.csv -x -f ISBDk" "%h %>s %b %D %k"
|
||||
</pre>
|
||||
</td></tr>
|
||||
</table>
|
||||
</p><p>
|
||||
Or you can use it to process any existing log file using the post processing
|
||||
option <code>-p</code>. This does not only work for
|
||||
<a href="http://httpd.apache.org/docs/current/mod/mod_log_config.html">Apache log <img src="images/link.png"/></a> files but for any other log file as well. You just have to know what's in the log
|
||||
and configure the format string argument <code>-f</code> of the
|
||||
<code><a href="qslog.1.html">qslog</a></code> command accordingly.
|
||||
</p>
|
||||
<p>
|
||||
Example:<br>
|
||||
<img src="images/qslogFormat.png" height="381" width="738" alt="log format definition"/>
|
||||
</p>
|
||||
<p>
|
||||
The output shows the data as a function of time: a summary of what happened every minute.
|
||||
Each line includes all measured values as semicolon spearated name/value pairs (CSV).
|
||||
</p>
|
||||
<p>
|
||||
You can use the spreadsheet program of your choice to process the output:<br><br>
|
||||
<img src="images/qslog_spreadsheet_example.png" height="413" width="850" alt="spreadsheet"/>
|
||||
</p>
|
||||
|
||||
<!-- --------------------------------------------------------- -->
|
||||
</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<br>
|
||||
<hr>
|
||||
<SMALL><SMALL>© 2023, Pascal Buchbinder</SMALL></SMALL>
|
||||
</body>
|
||||
</html>
|
97
doc/headerfilterrules.txt
Normal file
|
@ -0,0 +1,97 @@
|
|||
|
||||
QS_RequestHeaderFilter rules:
|
||||
|
||||
name=Accept, action=drop, size=300, pattern=^([a-zA-Z0-9_*+-]+/[a-zA-Z0-9_*+.-]+(;[ ]?[a-zA-Z0-9]+=[0-9]+)?[ ]?(;[ ]?[qv]=[a-z0-9.]+)?){1}([ ]?,[ ]?([a-zA-Z0-9_*+-]+/[a-zA-Z0-9_*+.-]+(;[ ]?[a-zA-Z0-9]+=[0-9]+)?[ ]?(;[ ]?[qv]=[a-z0-9.]+)?))*$
|
||||
name=Accept-Charset, action=drop, size=300, pattern=^([a-zA-Z0-9*-]+(;[ ]?q=[0-9.]+)?){1}([ ]?,[ ]?([a-zA-Z0-9*-]+(;[ ]?q=[0-9.]+)?))*$
|
||||
name=Accept-Encoding, action=drop, size=500, pattern=^([a-zA-Z0-9*-]+(;[ ]?q=[0-9.]+)?){1}([ ]?,[ ]?([a-zA-Z0-9*-]+(;[ ]?q=[0-9.]+)?))*$
|
||||
name=Accept-Language, action=drop, size=200, pattern=^([a-zA-Z*-]+[0-9]{0,3}(;[ ]?q=[0-9.]+)?){1}([ ]?,[ ]?([a-zA-Z*-]+[0-9]{0,3}(;[ ]?q=[0-9.]+)?))*$
|
||||
name=Access-Control-Request-Method, action=drop, size=10, pattern=^[a-zA-Z]+$
|
||||
name=Access-Control-Request-Headers, action=drop, size=500, pattern=^([a-zA-Z0-9-]+){1}([ ]?,[ ]?([a-zA-Z0-9-]+))*$
|
||||
name=Authorization, action=drop, size=4000, pattern=^[a-zA-Z0-9 +/$=:]+$
|
||||
name=Cache-Control, action=drop, size=100, pattern=^(no-cache|no-store|max-age=[0-9]+|max-stale(=[0-9]+)?|min-fresh=[0-9]+|no-transform|only-if-chached){1}([ ]?,[ ]?(no-cache|no-store|max-age=[0-9]+|max-stale(=[0-9]+)?|min-fresh=[0-9]+|no-transform|only-if-chached))*$
|
||||
name=Connection, action=drop, size=100, pattern=^([teTE]+,[ ]?)?([a-zA-Z0-9-]+){1}([ ]?,[ ]?([teTE]+))?$
|
||||
name=Content-Encoding, action=deny, size=100, pattern=^[a-zA-Z0-9-]+(,[ ]*[a-zA-Z0-9-]+)*$
|
||||
name=Content-Language, action=drop, size=100, pattern=^([0-9a-zA-Z]{0,8}(-[0-9a-zA-Z]{0,8})*)(,[ ]*([0-9a-zA-Z]{0,8}(-[0-9a-zA-Z]{0,8})*))*$
|
||||
name=Content-Length, action=deny, size=10, pattern=^[0-9]+$
|
||||
name=Content-Location, action=deny, size=200, pattern=^[:/?#\[\]@!$&'()*+,;=a-zA-Z0-9._~% -]+$
|
||||
name=Content-md5, action=deny, size=50, pattern=^[a-zA-Z0-9 +/$=:]+$
|
||||
name=Content-Range, action=deny, size=50, pattern=^(bytes[ ]+([0-9]+-[0-9]+)/([0-9]+|\*))$
|
||||
name=Content-Type, action=deny, size=200, pattern=^(["a-zA-Z0-9*/; =-]+){1}([ ]?,[ ]?(["a-zA-Z0-9*/; =-]+))*$
|
||||
name=Cookie, action=drop, size=3000, pattern=^[:/?#\[\]@!$&'()*+,;="a-zA-Z0-9._~% -]+$
|
||||
name=Cookie2, action=drop, size=3000, pattern=^[:/?#\[\]@!$&'()*+,;="a-zA-Z0-9._~% -]+$
|
||||
name=DNT, action=drop, size=3, pattern=^[0-9]+$
|
||||
name=Expect, action=drop, size=200, pattern=^[a-zA-Z0-9= ;.,-]+$
|
||||
name=From, action=drop, size=100, pattern=^[a-zA-Z0-9=@;.,()-]+$
|
||||
name=Host, action=drop, size=100, pattern=^[a-zA-Z0-9.-]+(:[0-9]+)?$
|
||||
name=If-Invalid, action=drop, size=500, pattern=^[a-zA-Z0-9_.:;() /+!-]+$
|
||||
name=If-Match, action=drop, size=100, pattern=^(W/)?[a-zA-Z0-9=@;.,*"-]+$
|
||||
name=If-Modified-Since, action=drop, size=100, pattern=^[a-zA-Z0-9 :,]+$
|
||||
name=If-None-Match, action=drop, size=100, pattern=^(W/)?[a-zA-Z0-9=@;.,*"-]+$
|
||||
name=If-Range, action=drop, size=100, pattern=^[a-zA-Z0-9=@;.,*"-]+$
|
||||
name=If-Unmodified-Since, action=drop, size=100, pattern=^[a-zA-Z0-9 :,]+$
|
||||
name=If-Valid, action=drop, size=500, pattern=^[a-zA-Z0-9_.:;() /+!-]+$
|
||||
name=Keep-Alive, action=drop, size=20, pattern=^[0-9]+$
|
||||
name=Max-Forwards, action=drop, size=20, pattern=^[0-9]+$
|
||||
name=Origin, action=drop, size=2000, pattern=^[:/?#\[\]@!$&'()*+,;=a-zA-Z0-9._~% -]+$
|
||||
name=Proxy-Authorization, action=drop, size=400, pattern=^[a-zA-Z0-9 +/$=:]+$
|
||||
name=Pragma, action=drop, size=200, pattern=^[a-zA-Z0-9= ;.,-]+$
|
||||
name=Range, action=drop, size=200, pattern=^[a-zA-Z0-9=_.:;() /+!-]+$
|
||||
name=Referer, action=drop, size=2000, pattern=^[:/?#\[\]@!$&'()*+,;=a-zA-Z0-9._~% -]+$
|
||||
name=TE, action=drop, size=100, pattern=^([a-zA-Z0-9*-]+(;[ ]?q=[0-9.]+)?){1}([ ]?,[ ]?([a-zA-Z0-9*-]+(;[ ]?q=[0-9.]+)?))*$
|
||||
name=Transfer-Encoding, action=deny, size=100, pattern=^(chunked|Chunked|compress|Compress|deflate|Deflate|gzip|Gzip|identity|Identity)([ ]?,[ ]?(chunked|Chunked|compress|Compress|deflate|Deflate|gzip|Gzip|identity|Identity))*$
|
||||
name=Unless-Modified-Since, action=drop, size=100, pattern=^[a-zA-Z0-9 :,]+$
|
||||
name=User-Agent, action=drop, size=300, pattern=^[a-zA-Z0-9]+[a-zA-Z0-9_.:;()\[\]@ /+!=,-]+$
|
||||
name=Upgrade-Insecure-Requests, action=drop, size=1, pattern=^1$
|
||||
name=Via, action=drop, size=100, pattern=^[a-zA-Z0-9_.:;() /+!-]+$
|
||||
name=X-Forwarded-For, action=drop, size=100, pattern=^[a-zA-Z0-9_.:-]+(, [a-zA-Z0-9_.:-]+)*$
|
||||
name=X-Forwarded-Host, action=drop, size=100, pattern=^[a-zA-Z0-9_.:-]+$
|
||||
name=X-Forwarded-Server, action=drop, size=100, pattern=^[a-zA-Z0-9_.:-]+$
|
||||
name=X-lori-time-1, action=drop, size=20, pattern=^[0-9]+$
|
||||
name=X-Do-Not-Track, action=drop, size=20, pattern=^[0-9]+$
|
||||
|
||||
QS_ResponseHeaderFilter rules:
|
||||
|
||||
name=Age, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Accept-Ranges, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Access-Control-Allow-Origin, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Access-Control-Allow-Methods, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Access-Control-Allow-Headers, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Access-Control-Max-Age, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Access-Control-Allow-Credentials, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Access-Control-Expose-Headers, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Allow, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Cache-Control, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Disposition, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Encoding, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Language, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Length, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Location, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-MD5, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Range, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Security-Policy, action=drop, size=8000, pattern=^[\x20-\xFF]*$
|
||||
name=Content-Type, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Connection, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Date, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=ETag, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Expect, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Expires, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Keep-Alive, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Last-Modified, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Location, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Proxy-Authenticate, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Public-Key-Pins, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Public-Key-Pins-Report-Only, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Retry-After, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Pragma, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Server, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Set-Cookie, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Set-Cookie2, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Strict-Transport-Security, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=Vary, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=WWW-Authenticate, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=X-Content-Security-Policy, action=drop, size=8000, pattern=^[\x20-\xFF]*$
|
||||
name=X-Content-Type-Options, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=X-Frame-Options, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
name=X-XSS-Protection, action=drop, size=4000, pattern=^[\x20-\xFF]*$
|
||||
|
||||
mod_qos 11.74
|
BIN
doc/images/ClientPrefer.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
doc/images/ClosedLoop.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
doc/images/Events.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
doc/images/LimitCount.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
doc/images/LimitCountExample.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
doc/images/QS_ClientEventBlockCount.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
doc/images/Rule.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
doc/images/Serialization.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
doc/images/SrvMinDataRate.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
doc/images/UserTracking.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
doc/images/directive_seq.gif
Normal file
After Width: | Height: | Size: 182 KiB |
BIN
doc/images/download.jpg
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
doc/images/link.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
doc/images/mod_qos.gif
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
doc/images/qsloc.png
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
doc/images/qsloc1.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
doc/images/qsloc2.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
doc/images/qsloc3.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
doc/images/qslogFormat.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
doc/images/qslog_spreadsheet_example.png
Normal file
After Width: | Height: | Size: 219 KiB |
2751
doc/index.html
Normal file
85
doc/qsdt.1.html
Normal file
|
@ -0,0 +1,85 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSDT</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSDT</H1>
|
||||
Section: qsdt man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsdt calculates the elapsed time between two related log messages.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsdt [-t <regex>] -i <regex> -s <regex> -e <regex> [-v] [<path>]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qsdt is a simple tool to search two different messages in a log file and calculates the elapsed time between these lines. The two log messages need a common identifier such an unique request id (UNIQUE_ID), a thread id, or a transaction code.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-t <regex> <DD>
|
||||
Defines a pattern (regular expression) matching the log line's timestamp. The pattern must include two sub-expressions, one matching hours, minutes and seconds the other matching the milliseconds. Default pattern is ([0-9]{2}:[0-9]{2}:[0-9]{2})[.,]([0-9]{3})
|
||||
<DT>-i <regex> <DD>
|
||||
Pattern (regular expression) matching the identifier which the two messages have in common. The sub-expression defines the part which needs to be extracted from the matching string. Note: You can also use the start (-s) and end (-e) pattern to define the sub-expression matching this identifier.
|
||||
<DT>-s <regex> <DD>
|
||||
Defines the pattern (regular expression or literal string) identifying the first (start) of the two messages.
|
||||
<DT>-e <regex> <DD>
|
||||
Defines the pattern (regular expression or literal string) identifying the second (end) of the two messages.
|
||||
<DT>-v <DD>
|
||||
Verbose mode.
|
||||
<DT><path> <DD>
|
||||
Defines the input file to process. qsdt reads from from standard input if this parameter is omitted.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
Sample command line arguments:
|
||||
<P>
|
||||
<BR> -i ' ([a-z0-9]+) [A-Z]+ ' -s 'Received Request' -e 'Received Response'
|
||||
<P>
|
||||
<BR> matching those sample log messages:
|
||||
<BR> 2018-03-12 16:34:08.653 threadid23 INFO Received Request
|
||||
<BR> 2018-03-13 16:35:09.891 threadid23 DEBUG MessageHandler Received Response
|
||||
<P>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>NOTE</H2>
|
||||
|
||||
The four patterns (t,i,s,e) are concatenated into two search patterns:
|
||||
<BR> first (start): [t (HH:MM:SS)(SSS) ].*[i (id) ].*[s ]
|
||||
<BR> second (end): [t (HH:MM:SS)(SSS) ].*[i (id) ].*[e ]
|
||||
<P>
|
||||
And the three sub-expression are used to extract the timestamp and the unique identifier that the start and end message have in common. This means that you could specify the sub-expression for the unique identifier in the start (-s) or end (-e) pattern alternatively, e.g. in case the identifier is at the end of the log line.
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAI"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">NOTE</A><DD>
|
||||
<DT><A HREF="#lbAH">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAI">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
72
doc/qsexec.1.html
Normal file
|
@ -0,0 +1,72 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSEXEC</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSEXEC</H1>
|
||||
Section: qsexec man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsexec - parses the data received via stdin and executes the defined command on a pattern match.
|
||||
<P>
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsexec -e <pattern> [-t <number>:<sec>] [-c <pattern> [<command string>]] [-p] [-u <user>] <command string>
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qsexec reads log lines from stdin and searches for the defined pattern. It executes the defined command string on pattern match.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-e <pattern> <DD>
|
||||
Specifies the search pattern causing an event which shall trigger the command.
|
||||
<DT>-t <number>:<sec> <DD>
|
||||
Defines the number of pattern match within the the defined number of seconds in order to trigger the command execution. By default, every pattern match causes a command execution.
|
||||
<DT>-c <pattern> [<command string>] <DD>
|
||||
Pattern which clears the event counter. Executes optionally a command if an event command has been executed before.
|
||||
<DT>-p <DD>
|
||||
Writes data also to stdout (for piped logging).
|
||||
<DT>-u <name> <DD>
|
||||
Become another user, e.g. www-data.
|
||||
<DT><command string> <DD>
|
||||
Defines the event command string where $0-$9 are substituted by the submatches of the regular expression.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
Executes the deny.sh script providing the IP address of the client causing a mod_qos(031) messages whenever the log message appears 10 times within at most one minute:
|
||||
<BR> ErrorLog "|/usr/bin/qsexec -e \'mod_qos\(031\).*, c=([0-9a-zA-Z:.]*)\' -t 10:60 \'/usr/local/bin/deny.sh $1\'"
|
||||
<P>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAH">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
127
doc/qsfilter2.1.html
Normal file
|
@ -0,0 +1,127 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSFILTER2</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSFILTER2</H1>
|
||||
Section: qsfilter2 man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsfilter2 - an utility to generate mod_qos request line rules out from existing access/audit log data.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsfilter2 -i <path> [-c <path>] [-d <num>] [-h] [-b <num>] [-p|-s|-m|-o] [-l <len>] [-n] [-e] [-u 'uni'] [-k <prefix>] [-t] [-f <path>] [-v 0|1|2]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2><p><img src="qsfilter2_process.gif" alt="overview"></p>
|
||||
|
||||
mod_qos implements a request filter which validates each request line. The module supports both, negative and positive security model. The QS_Deny* directives are used to specify request line patterns which are not allowed to access the server (negative security model / deny list). These rules are used to restrict access to certain resources which should not be available to users or to protect the server from malicious patterns. The QS_Permit* rules implement a positive security model (allow list). These directives are used to define allowed request line patterns. Request which do not match any of these patterns are not allowed to access the server.
|
||||
<P>
|
||||
qsfilter2 is an audit log analyzer used to generate filter rules (perl compatible regular expressions) which may be used by mod_qos to deny access for suspect requests (QS_PermitUri rules). It parses existing audit log files in order to generate request patterns covering all allowed requests.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-i <path> <DD>
|
||||
Input file containing request URIs. The URIs for this file have to be extracted from the servers access logs. Each line of the input file contains a request URI consisting of a path and and query.
|
||||
<BR> Example:
|
||||
<BR> /aaa/index.do
|
||||
<BR> /aaa/edit?image=1.jpg
|
||||
<BR> /aaa/image/1.jpg
|
||||
<BR> /aaa/view?page=1
|
||||
<BR> /aaa/edit?document=1
|
||||
<P>
|
||||
These access log data must include current request URIs but also request lines from previous rule generation steps. It must also include request lines which cover manually generated rules. You may use the 'qos-path' and 'qos-query' variables to create an audit log containing all request data (path and query/body data). Example: 'CustomLog audit_log %{qos-path}n%{qos-query}n'. See also <A HREF="http://mod-qos.sourceforge.net#qsfiltersample">http://mod-qos.sourceforge.net#qsfiltersample</A> about the module settings.
|
||||
<DT>-c <path> <DD>
|
||||
mod_qos configuration file defining QS_DenyRequestLine and QS_PermitUri directives. qsfilter2 generates rules from access log data automatically. Manually generated rules (QS_PermitUri) may be provided from this file. Note: each manual rule must be represented by a request URI in the input data (-i) in order to make sure not to be deleted by the rule optimisation algorithm. QS_Deny* rules from this file are used to filter request lines which should not be used for allow list rule generation.
|
||||
<BR> Example:
|
||||
<BR> # manually defined allow list rule:
|
||||
<BR> QS_PermitUri +view deny "^[/a-zA-Z0-9]+/view\?(page=[0-9]+)?$"
|
||||
<BR> # filter unwanted request line patterns:
|
||||
<BR> QS_DenyRequestLine +printable deny ".*[\x00-\x19].*"
|
||||
<P>
|
||||
<P>
|
||||
<DT>-d <num> <DD>
|
||||
Depth (sub locations) of the path string which is defined as a literal string. Default is 1.
|
||||
<DT>-h <DD>
|
||||
Always use a string representing the handler name in the path even the url does not have a query. See also -d option.
|
||||
<DT>-b <num> <DD>
|
||||
Replaces url pattern by the regular expression when detecting a base64/hex encoded string. Detecting sensibility is defined by a numeric value. You should use values higher than 5 (default) or 0 to disable this function.
|
||||
<DT>-p <DD>
|
||||
Represents query by pcre only (no literal strings).
|
||||
<DT>-s <DD>
|
||||
Uses one single pcre for the whole query string.
|
||||
<DT>-m <DD>
|
||||
Uses one pcre for multiple query values (recommended mode).
|
||||
<DT>-o <DD>
|
||||
Does not care the order of query parameters.
|
||||
<DT>-l <len> <DD>
|
||||
Outsizes the query length by the defined length ({0,size+len}), default is 10.
|
||||
<DT>-n <DD>
|
||||
Disables redundant rules elimination.
|
||||
<DT>-e <DD>
|
||||
Exit on error.
|
||||
<DT>-u 'uni' <DD>
|
||||
Enables additional decoding methods. Use the same settings as you have used for the QS_Decoding directive.
|
||||
<DT>-k <prefix> <DD>
|
||||
Prefix used to generate rule identifiers (QSF by default).
|
||||
<DT>-t <DD>
|
||||
Calculates the maximal latency per request (worst case) using the generated rules.
|
||||
<DT>-f <path> <DD>
|
||||
Filters the input by the provided path (prefix) only processing matching lines.
|
||||
<DT>-v <level> <DD>
|
||||
Verbose mode. (0=silent, 1=rule source, 2=detailed). Default is 1. Don't use rules you haven't checked the request data used to generate it! Level 1 is highly recommended (as long as you don't have created the log data using your own web crawler).
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>OUTPUT</H2>
|
||||
|
||||
The output of qsfilter2 is written to stdout. The output contains the generated QS_PermitUri directives but also information about the source which has been used to generate these rules. It is very important to check the validity of each request line which has been used to calculate the QS_PermitUri rules. Each request line which has been used to generate a new rule is shown in the output prefixed by "ADD line <line number>:". These request lines should be stored and reused at any later rule generation (add them to the URI input file). The subsequent line shows the generated rule. At the end of data processing a list of all generated QS_PermitUri rules is shown. These directives may be used withn the configuration file used by mod_qos.
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
<BR> qsfilter2 -i loc.txt -c httpd.conf -m -e
|
||||
<BR> ...
|
||||
<BR> # ADD line 1: /aaa/index.do
|
||||
<BR> # 003 ^(/[a-zA-Z0-9\-_]+)+[/]?\.?[a-zA-Z]{0,4}$
|
||||
<BR> # ADD line 3: /aaa/view?page=1
|
||||
<BR> # --- ^[/a-zA-Z0-9]+/view\?(page=[0-9]+)?$
|
||||
<BR> # ADD line 4: /aaa/edit?document=1
|
||||
<BR> # 004 ^[/a-zA-Z]+/edit\?((document)(=[0-9]*)*[&]?)*$
|
||||
<BR> # ADD line 5: /aaa/edit?image=1.jpg
|
||||
<BR> # 005 ^[/a-zA-Z]+/edit\?((image)(=[0-9\.a-zA-Z]*)*[&]?)*$
|
||||
<BR> ...
|
||||
<BR> QS_PermitUri +QSF001 deny "^[/a-zA-Z]+/edit\?((document|image)(=[0-9\.a-zA-Z]*)*[&]?)*$"
|
||||
<BR> QS_PermitUri +QSF002 deny "^[/a-zA-Z0-9]+/view\?(page=[0-9]+)?$"
|
||||
<BR> QS_PermitUri +QSF003 deny "^(/[a-zA-Z0-9\-_]+)+[/]?\.?[a-zA-Z]{0,4}$"
|
||||
<P>
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAI"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">OUTPUT</A><DD>
|
||||
<DT><A HREF="#lbAG">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAH">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAI">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
BIN
doc/qsfilter2_process.gif
Normal file
After Width: | Height: | Size: 15 KiB |
77
doc/qsgeo.1.html
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSGEO</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSGEO</H1>
|
||||
Section: qsgeo man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsgeo - an utility to lookup a client's country code.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsgeo -d <path> [-l] [-s] [-ip <ip>]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
Use this utility to resolve the country codes of IP addresses within existing log files. The utility reads the log file data from stdin and writes them, with the injected country code, to stdout.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<P>
|
||||
<DL COMPACT>
|
||||
<DT>-d <path> <DD>
|
||||
Specifies the path to the geographical database files (CSV file containing IP address ranges and country codes).
|
||||
<DT>-s <DD>
|
||||
Writes a summary of the requests per country only.
|
||||
<DT>-l <DD>
|
||||
Writes the database to stdout (ignoring stdin) inserting local (127.*) and private (10.*, 172.16*, 192.168.*) network addresses.
|
||||
<DT>-ip <ip> <DD>
|
||||
Resolves a single IP address instead of processing a log file.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
Reading the file access.log and adding the country code to the IP address field:
|
||||
<P>
|
||||
<BR> cat access.log | qsgeo -d GeoIPCountryWhois.csv
|
||||
<P>
|
||||
Reading the file access.log and showing a summary only:
|
||||
<P>
|
||||
<BR> cat access.log | qsgeo -d GeoIPCountryWhois.csv -s
|
||||
<P>
|
||||
Resolving a single IP address:
|
||||
<P>
|
||||
<BR> qsgeo -d GeoIPCountryWhois.csv -ip 192.84.12.23
|
||||
<P>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAH">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
67
doc/qsgrep.1.html
Normal file
|
@ -0,0 +1,67 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSGREP</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSGREP</H1>
|
||||
Section: qsgrep man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsgrep - prints matching patterns within a file.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsgrep -e <pattern> -o <sub string> [<path>]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qsgrep is a simple tool to search patterns within files. It uses regular expressions to find patterns and prints the submatches within a pre-defined format string.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-e <pattern> <DD>
|
||||
Specifies the search pattern.
|
||||
<DT>-o <string> <DD>
|
||||
Defines the output string where $0-$9 are substituted by the submatches of the regular expression.
|
||||
<DT><path> <DD>
|
||||
Defines the input file to process. qsgrep reads from from standard input if this parameter is omitted.
|
||||
<P>
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
Shows the IP addresses of clients causing mod_qos(031) messages):
|
||||
<P>
|
||||
<BR> qsgrep -e 'mod_qos\(031\).*, c=([a-zA-Z0-9:.]*)' -o 'ip=$1' error_log
|
||||
<P>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAH">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
54
doc/qshead.1.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSHEAD</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSHEAD</H1>
|
||||
Section: qshead man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qshead - an utility reading from stdin and printing all lines to stdout until reaching the defined pattern.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qshead -p <pattern>
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qshead reads lines from stdin and prints them to stdout until a line contains the specified pattern (literal string).
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-p <pattern> <DD>
|
||||
Search pattern (literal string).
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1) <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAG">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
146
doc/qslog.1.html
Normal file
|
@ -0,0 +1,146 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSLOG</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSLOG</H1>
|
||||
Section: qslog man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qslog - collects request statistics from access log data.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qslog -f <format_string> -o <out_file> [-p[c|u[c]] [-v]] [-x [<num>]] [-u <name>] [-m] [-c <path>]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qslog is a real time access log analyzer. It collects the data from stdin. The output is written to the specified file every minute and includes the following entries:
|
||||
<BR> - requests per second (r/s)
|
||||
<BR> - number of requests within measured time (req)
|
||||
<BR> - bytes sent to the client per second (b/s)
|
||||
<BR> - bytes received from the client per second (ib/s)
|
||||
<BR> - response status codes within the last minute (1xx,2xx,3xx,4xx,5xx)
|
||||
<BR> - average response duration (av)
|
||||
<BR> - average response duration in milliseconds (avms)
|
||||
<BR> - distribution of response durations in seconds within the last minute
|
||||
(<1s,1s,2s,3s,4s,5s,>5s)
|
||||
<BR> - distribution of response durations faster than a second within the last minute
|
||||
(0-49ms,50-99ms,100-499ms,500-999ms)
|
||||
<BR> - number of established (new) connections within the measured time (esco)
|
||||
<BR> - average system load (sl)
|
||||
<BR> - free memory (m) (not available for all platforms)
|
||||
<BR> - number of client ip addresses seen withn the last 600 seconds (ip)
|
||||
<BR> - number of different users seen withn the last 600 seconds (usr)
|
||||
<BR> - number of events identified by the 'E' format character
|
||||
<BR> - number of mod_qos events within the last minute (qV=create session,
|
||||
qv=VIP IP,qS=session pass, qD=access denied, qK=connection closed, qT=dynamic keep-alive, qL=request/response slow down, qs=serialized request, qA=connection abort, qU=new user tracking cookie)
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-f <format_string> <DD>
|
||||
Defines the log data format and the positions of data elements processed by this utility. See to the 'LogFormat' directive of the httpd.conf file to see the format definitions of the servers access log data.
|
||||
<BR> qslog knows the following elements:
|
||||
<BR> I defines the client ip address (%h)
|
||||
<BR> R defines the request line (%r)
|
||||
<BR> S defines HTTP response status code (%s)
|
||||
<BR> B defines the transferred bytes (%b or %O)
|
||||
<BR> i defines the received bytes (%I)
|
||||
<BR> D defines the request duration in microseconds (%D)
|
||||
<BR> t defines the request duration in milliseconds (may be used instead of D)
|
||||
<BR> T defines the request duration in seconds (may be used instead of D or t) (%T)
|
||||
<BR> k defines the number of keepalive requests on the connection (%k)
|
||||
<BR> U defines the user tracking id (%{mod_qos_user_id}e)
|
||||
<BR> Q defines the mod_qos_ev event message (%{mod_qos_ev}e)
|
||||
<BR> C defines the element for the detailed log (-c option), e.g. "%U"
|
||||
<BR> s arbitrary counter to add up (sum within a minute)
|
||||
<BR> a arbitrary counter to build an average from (average per request)
|
||||
<BR> A arbitrary counter to build an average from (average per request)
|
||||
<BR> M arbitrary counter to measure the maximum value reached (peak)
|
||||
<BR> E comma separated list of event strings
|
||||
<BR> c content type (%{content-type}o), available in -pc mode only
|
||||
<BR> m request method (GET/POST) (%m), available in -pc mode only
|
||||
<BR> . defines an element to ignore (unknown string)
|
||||
<P>
|
||||
<DT>-o <out_file> <DD>
|
||||
Specifies the file to store the output to. stdout is used if this option is not defined.
|
||||
<DT>-p <DD>
|
||||
Used for post processing when reading the log data from a file (cat/pipe). qslog is started using it's offline mode (extracting the time stamps from the log lines) in order to process existing log files. The option "-pc" may be used alternatively if you want to gather request information per client (identified by IP address (I) or user tracking id (U) showing how many request each client has performed within the captured period of time). "-pc" supports the format characters IURSBTtDkMEcm. The option "-pu" collects statistics on a per URL level (supports format characters RSTtD). "-puc" is very similar to "-pu" but cuts the end (handler) of each URL.
|
||||
<DT>-v <DD>
|
||||
Verbose mode.
|
||||
<DT>-x [<num>] <DD>
|
||||
Rotates the output file once a day (move). You may specify the number of rotated files to keep. Default are 14.
|
||||
<DT>-u <name> <DD>
|
||||
Becomes another user, e.g. www-data.
|
||||
<DT>-m <DD>
|
||||
Calculates free system memory every minute.
|
||||
<DT>-c <path> <DD>
|
||||
Enables the collection of log statistics for different request types. 'path' specifies the necessary rule file. Each rule consists of a rule identifier and a regular expression to identify a request seprarated by a colon, e.g., 01:^(/a)|(/c). The regular expressions are matched against the log data element which has been identified by the 'C' format character.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>VARIABLES</H2>
|
||||
|
||||
The following environment variables are known to qslog:
|
||||
<DL COMPACT>
|
||||
<DT>QSEVENTPATH=<path> <DD>
|
||||
Defines a file containing a comma or new line separated list of known event strings expected within the log filed identified by the 'E' format character.
|
||||
<DT>QSCOUNTERPATH=<path> <DD>
|
||||
Defines a file containing a by new line separated list of rules which reflect possible QS_ClientEventLimitCount directive settings (for simulation purpose / -pc option). The 'E' format character defines the event string in the log to match (literal string) the 'event1' and 'event2' event names against.
|
||||
<P>
|
||||
Rule syntax: <name>:<event1>-<n>*<event2>/<duration>=<limit>
|
||||
<BR> 'name' defines the name you have given to the rule entry and is logged along with
|
||||
with the number of times the 'limit' has been reached within the 'duration'.
|
||||
<BR> 'event1' defines the variable name (if found in 'E') to increment the counter.
|
||||
<BR> 'event2' defines the variable name (if found in 'E') to decrement the counter (and
|
||||
the parameter 'n' defines by how much).
|
||||
<BR> 'duration' defines the measure interval (in seconds) used for the
|
||||
QS_ClientEventLimitCount directive.
|
||||
<BR> 'limit' defines the threshold (number) defined for the QS_ClientEventLimitCount
|
||||
directive.
|
||||
<P>
|
||||
Note: If the 'name' parameter is prefixed by 'STATUS', the rule is applied against the HTTP status code 'S' and the 'event1' string shall contain a list of relevant status codes separated by an underscore (while 'event2' is ignored).
|
||||
</DL>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
Configuration using pipped logging:
|
||||
<P>
|
||||
<BR> CustomLog "|/usr/bin/qslog -f ISBDQ -x -o /var/log/apache/stat.csv" "%h %>s %b %D %{mod_qos_ev}e"
|
||||
<P>
|
||||
Post processing:
|
||||
<P>
|
||||
<BR> LogFormat "%t %h \"%r\" %>s %b \"%{User-Agent}i\" %T"
|
||||
<BR> cat access.log | qslog -f ..IRSB.T -o stat.csv -p
|
||||
<P>
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAI"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">VARIABLES</A><DD>
|
||||
<DT><A HREF="#lbAG">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAH">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAI">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
75
doc/qslogger.1.html
Normal file
|
@ -0,0 +1,75 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSLOGGER</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSLOGGER</H1>
|
||||
Section: qslogger man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qslogger - another shell command interface to the system log module (syslog).
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qslogger [-t <tag>] [-f <facility>] [-l <level>] [-x <prefix>] [-r <expression>] [-d <level>] [-u <name>] [-p]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
Use this utility to forward log messages to the systems syslog facility, e.g., to forward the messages to a remote host. It reads data from stdin.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<P>
|
||||
<DL COMPACT>
|
||||
<DT>-t <tag> <DD>
|
||||
Defines the tag name which shall be used to define the origin of the messages, e.g. 'httpd'.
|
||||
<DT>-f <facility> <DD>
|
||||
Defines the syslog facility. Default is 'daemon'.
|
||||
<DT>-u <name> <DD>
|
||||
Becomes another user, e.g. www-data.
|
||||
<DT>-l <level> <DD>
|
||||
Defines the minimal severity a message must have in order to be forwarded. Default is 'DEBUG' (forwarding everything).
|
||||
<DT>-x <prefix> <DD>
|
||||
Allows you to add a prefix (literal string) to every message.
|
||||
<DT>-r <expression> <DD>
|
||||
Specifies a regular expression which shall be used to determine the severity (syslog level) for each log line. The default pattern '^\[[0-9a-zA-Z :]+\] \[([a-z]+)\] ' can be used for Apache error log messages but you may configure your own pattern matching other log formats. Use brackets to define the pattern enclosing the severity string. Default level (if severity can't be determined) is defined by the option '-d' (see below).
|
||||
<DT>-d <level> <DD>
|
||||
The default severity if the specified pattern (-r) does not match and the message's severity can't be determined. Default is 'NOTICE'.
|
||||
<DT>-p <DD>
|
||||
Writes data also to stdout (for piped logging).
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
<BR> ErrorLog "|/usr/bin/qslogger -t apache -f local7"
|
||||
<P>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAH">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
58
doc/qspng.1.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSPNG</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSPNG</H1>
|
||||
Section: qspng man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qspng - an utility to draw a png graph from <A HREF="qslog.1.html">qslog</A>(1) output data.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qspng -i <stat_log_file> -p <parameter> -o <out_file> [-10]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qspng is a tool to generate png (portable network graphics) raster images files from semicolon separated data generated by the qslog utility. It reads up to the first 1440 entries (24 hours) and prints a graph using the values defined by the 'parameter' name.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-i <stats_log_file> <DD>
|
||||
Input file to read data from.
|
||||
<DT>-p <parameter> <DD>
|
||||
Parameter name, e.g. r/s or usr.
|
||||
<DT>-o <out_file> <DD>
|
||||
Output file name, e.g. stat.png.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAG">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
56
doc/qsre.1.html
Normal file
|
@ -0,0 +1,56 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSRE</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSRE</H1>
|
||||
Section: qsre man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsre matches a regular expression against test strings.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsre <string>|<path> <pcre>|<path>
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
Regular expression test tool. The provided regular expression (pcre, caseless matching, "." matches anything incl. newline) is appplied against the provided test strings to verify if the pattern matches.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT><string>|<path> <DD>
|
||||
The first argument either defines a single test string of a path to a file containing either multiple test strings or a test pattern with newline characters (text).
|
||||
<DT><pcre>|<path> <DD>
|
||||
The second argument either defines a regular expression or a path to a file containing the expression.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAG">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
54
doc/qsrespeed.1.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSRESPEED</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSRESPEED</H1>
|
||||
Section: qsrespeed man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
Tool to compare / estimate the processing time for (Perl-compatible) regular expressions (PCRE).
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsrespeed <path>
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qsrespeed loads regular expressions from the provided file and matches them against a built-in set of strings measuring the time needed to process them. It's a benchmark too to judge the expressions you have defined regarding the potential CPU consumption.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT><path> <DD>
|
||||
Defines the input file to process. The file consists a list of (separated by a newline character) regular expressions to test
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAG">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
86
doc/qsrotate.1.html
Normal file
|
@ -0,0 +1,86 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSROTATE</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSROTATE</H1>
|
||||
Section: qsrotate man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qsrotate - a log rotation tool (similar to Apache's rotatelogs).
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qsrotate -o <file> [-s <sec> [-t <hours>]] [-b <bytes>] [-f] [-z] [-g <num>] [-u <name>] [-m <mask>] [-p] [-d]
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qsrotate reads from stdin (piped log) and writes the data to the provided file rotating the file after the specified time.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-o <file> <DD>
|
||||
Output log file to write the data to (use an absolute path).
|
||||
<DT>-s <sec> <DD>
|
||||
Rotation interval in seconds, default are 86400 seconds.
|
||||
<DT>-t <hours> <DD>
|
||||
Offset to UTC (enables also DST support), default is 0.
|
||||
<DT>-b <bytes> <DD>
|
||||
File size limitation (default/max. are 2147352576 bytes, min. are 1048576 bytes).
|
||||
<DT>-f <DD>
|
||||
Forced log rotation at the specified interval even no data is written.
|
||||
<DT>-z <DD>
|
||||
Compress (gzip) the rotated file.
|
||||
<DT>-g <num> <DD>
|
||||
Generations (number of files to keep).
|
||||
<DT>-u <name> <DD>
|
||||
Become another user, e.g. www-data. -m <mask>
|
||||
File permission which is either 600, 640, 660 (default) or 664.
|
||||
<DT>-p <DD>
|
||||
Writes data also to stdout (for piped logging). -d
|
||||
Line-by-line data reading prefixing every line with a timestamp.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
<BR> TransferLog "|/usr/bin/qsrotate -f -z -g 3 -o /var/log/apache/access.log -s 86400"
|
||||
<P>
|
||||
The name of the rotated file will be /dest/filee.YYYYmmddHHMMSS where YYYYmmddHHMMSS is the system time at which the data has been rotated.
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>NOTE</H2>
|
||||
|
||||
<BR> - Each qsrotate instance must use an individual file.
|
||||
<BR> - You may trigger a file rotation manually by sending the signal USR1
|
||||
to the process.
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qssign.1.html">qssign</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAI"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">NOTE</A><DD>
|
||||
<DT><A HREF="#lbAH">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAI">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
79
doc/qssign.1.html
Normal file
|
@ -0,0 +1,79 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSSIGN</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSSIGN</H1>
|
||||
Section: qssign man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qssign - an utility to sign and verify the integrity of log data.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qssign -s|S <secret> [-e] [-v] [-u <name>] [-f <regex>] [-a 'sha1'|'sha256']
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qssign is a log data integrity check tool. It reads log data from stdin (pipe) and writes the data to stdout adding a sequence number and signature to ever log line.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-s <secret> <DD>
|
||||
Passphrase used to calculate signature.
|
||||
<DT>-S <program> <DD>
|
||||
Specifies a program which writes the passphrase to stdout.
|
||||
<DT>-e <DD>
|
||||
Writes start/end marker when starting/stopping data signing.
|
||||
<DT>-v <DD>
|
||||
Verification mode checking the integrity of signed data.
|
||||
<DT>-u <name> <DD>
|
||||
Becomes another user, e.g. www-data.
|
||||
<DT>-f <regex> <DD>
|
||||
Filter pattern (case sensitive regular expression) for messages which do not need to be signed.
|
||||
<DT>-a 'sha1'|'sha256' <DD>
|
||||
Specifies the algorithm to use. Default is sha1.
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>EXAMPLE</H2>
|
||||
|
||||
Sign:
|
||||
<P>
|
||||
<BR> TransferLog "|/usr/bin/qssign -s password -e |/usr/bin/qsrotate -o /var/log/apache/access.log"
|
||||
<P>
|
||||
<P>
|
||||
Verify:
|
||||
<P>
|
||||
<BR> cat access.log | qssign -s password -v
|
||||
<P>
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qstail.1.html">qstail</A>(1)
|
||||
<A NAME="lbAH"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">EXAMPLE</A><DD>
|
||||
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAH">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
56
doc/qstail.1.html
Normal file
|
@ -0,0 +1,56 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<HTML><HEAD><TITLE>Man page of QSTAIL</TITLE>
|
||||
<META name='KeyWords' content='Quality of Service, QoS, Apache Web Server, Web application security, WAF, Open Source Software, Security, Proxy'/>
|
||||
<META name='author' content='Pascal Buchbinder' />
|
||||
</HEAD><BODY>
|
||||
<H1>QSTAIL</H1>
|
||||
Section: qstail man page (1)<BR>Updated: May 2023<BR><A HREF="#index">Index</A>
|
||||
<A HREF="index.html#utilities">Return to Main Contents</A><HR>
|
||||
|
||||
<P>
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
qstail - an utility printing the end of a log file starting at the specified pattern.
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
qstail -i <path> -p <pattern>
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
qstail shows the end of a log file beginning with the line containing the specified pattern. This may be used to show all lines which has been written after a certain event (e.g., server restart) or time stamp.
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
<DL COMPACT>
|
||||
<DT>-i <path> <DD>
|
||||
Input file to read the data from.
|
||||
<DT>-p <pattern> <DD>
|
||||
Search pattern (literal string).
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<A HREF="qsdt.1.html">qsdt</A>(1), <A HREF="qsexec.1.html">qsexec</A>(1), <A HREF="qsfilter2.1.html">qsfilter2</A>(1), <A HREF="qsgeo.1.html">qsgeo</A>(1), <A HREF="qsgrep.1.html">qsgrep</A>(1), <A HREF="qshead.1.html">qshead</A>(1), <A HREF="qslog.1.html">qslog</A>(1), <A HREF="qslogger.1.html">qslogger</A>(1), <A HREF="qspng.1.html">qspng</A>(1), <A HREF="qsre.1.html">qsre</A>(1), <A HREF="qsrespeed.1.html">qsrespeed</A>(1), <A HREF="qsrotate.1.html">qsrotate</A>(1), <A HREF="qssign.1.html">qssign</A>(1)
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>AUTHOR</H2>
|
||||
|
||||
Pascal Buchbinder, <A HREF="http://mod-qos.sourceforge.net/">http://mod-qos.sourceforge.net/</A>
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">SEE ALSO</A><DD>
|
||||
<DT><A HREF="#lbAG">AUTHOR</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
2
tools/Makefile.am
Normal file
|
@ -0,0 +1,2 @@
|
|||
AUTOMAKE_OPTIONS=foreign
|
||||
SUBDIRS=src
|
766
tools/Makefile.in
Normal file
|
@ -0,0 +1,766 @@
|
|||
# Makefile.in generated by automake 1.15 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
||||
$(am__configure_deps) $(am__DIST_COMMON)
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno config.status.lineno
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
AM_V_P = $(am__v_P_@AM_V@)
|
||||
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
||||
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_@AM_V@)
|
||||
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
SOURCES =
|
||||
DIST_SOURCES =
|
||||
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
||||
ctags-recursive dvi-recursive html-recursive info-recursive \
|
||||
install-data-recursive install-dvi-recursive \
|
||||
install-exec-recursive install-html-recursive \
|
||||
install-info-recursive install-pdf-recursive \
|
||||
install-ps-recursive install-recursive installcheck-recursive \
|
||||
installdirs-recursive pdf-recursive ps-recursive \
|
||||
tags-recursive uninstall-recursive
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
||||
distclean-recursive maintainer-clean-recursive
|
||||
am__recursive_targets = \
|
||||
$(RECURSIVE_TARGETS) \
|
||||
$(RECURSIVE_CLEAN_TARGETS) \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
||||
$(LISP)config.h.in
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
CSCOPE = cscope
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in compile \
|
||||
depcomp install-sh missing
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
am__remove_distdir = \
|
||||
if test -d "$(distdir)"; then \
|
||||
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -rf "$(distdir)" \
|
||||
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
||||
else :; fi
|
||||
am__post_remove_distdir = $(am__remove_distdir)
|
||||
am__relativize = \
|
||||
dir0=`pwd`; \
|
||||
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
||||
sed_rest='s,^[^/]*/*,,'; \
|
||||
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
||||
sed_butlast='s,/*[^/]*$$,,'; \
|
||||
while test -n "$$dir1"; do \
|
||||
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
||||
if test "$$first" != "."; then \
|
||||
if test "$$first" = ".."; then \
|
||||
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
||||
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
||||
else \
|
||||
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
||||
if test "$$first2" = "$$first"; then \
|
||||
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
||||
else \
|
||||
dir2="../$$dir2"; \
|
||||
fi; \
|
||||
dir0="$$dir0"/"$$first"; \
|
||||
fi; \
|
||||
fi; \
|
||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||
done; \
|
||||
reldir="$$dir2"
|
||||
DIST_ARCHIVES = $(distdir).tar.gz
|
||||
GZIP_ENV = --best
|
||||
DIST_TARGETS = dist-gzip
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
||||
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build_alias = @build_alias@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host_alias = @host_alias@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
runstatedir = @runstatedir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
SUBDIRS = src
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
am--refresh: Makefile
|
||||
@:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
||||
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --foreign Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
$(am__cd) $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
$(am__aclocal_m4_deps):
|
||||
|
||||
config.h: stamp-h1
|
||||
@test -f $@ || rm -f stamp-h1
|
||||
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
$(srcdir)/config.h.in: $(am__configure_deps)
|
||||
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
||||
rm -f stamp-h1
|
||||
touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run 'make' without going through this Makefile.
|
||||
# To change the values of 'make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in 'config.status', edit 'config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run 'make');
|
||||
# (2) otherwise, pass the desired values on the 'make' command line.
|
||||
$(am__recursive_targets):
|
||||
@fail=; \
|
||||
if $(am__make_keepgoing); then \
|
||||
failcom='fail=yes'; \
|
||||
else \
|
||||
failcom='exit 1'; \
|
||||
fi; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| eval $$failcom; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-recursive
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
empty_fix=.; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
empty_fix=; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test ! -f $$subdir/TAGS || \
|
||||
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-recursive
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscope: cscope.files
|
||||
test ! -s cscope.files \
|
||||
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
||||
clean-cscope:
|
||||
-rm -f cscope.files
|
||||
cscope.files: clean-cscope cscopelist
|
||||
cscopelist: cscopelist-recursive
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
test -d "$(distdir)" || mkdir "$(distdir)"
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
$(am__make_dryrun) \
|
||||
|| test -d "$(distdir)/$$subdir" \
|
||||
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
||||
|| exit 1; \
|
||||
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
||||
$(am__relativize); \
|
||||
new_distdir=$$reldir; \
|
||||
dir1=$$subdir; dir2="$(top_distdir)"; \
|
||||
$(am__relativize); \
|
||||
new_top_distdir=$$reldir; \
|
||||
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
||||
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
||||
($(am__cd) $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$$new_top_distdir" \
|
||||
distdir="$$new_distdir" \
|
||||
am__remove_distdir=: \
|
||||
am__skip_length_check=: \
|
||||
am__skip_mode_fix=: \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
-test -n "$(am__skip_mode_fix)" \
|
||||
|| find "$(distdir)" -type d ! -perm -755 \
|
||||
-exec chmod u+rwx,go+rx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r "$(distdir)"
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-lzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
@echo WARNING: "Support for distribution archives compressed with" \
|
||||
"legacy program 'compress' is deprecated." >&2
|
||||
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
@echo WARNING: "Support for shar distribution archives is" \
|
||||
"deprecated." >&2
|
||||
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist dist-all:
|
||||
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.lz*) \
|
||||
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
||||
*.tar.xz*) \
|
||||
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir)
|
||||
chmod u+w $(distdir)
|
||||
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
test -d $(distdir)/_build || exit 0; \
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& am__cwd=`pwd` \
|
||||
&& $(am__cd) $(distdir)/_build/sub \
|
||||
&& ../../configure \
|
||||
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
--srcdir=../.. --prefix="$$dc_install_base" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||
&& rm -rf $(DIST_ARCHIVES) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
||||
&& cd "$$am__cwd" \
|
||||
|| exit 1
|
||||
$(am__post_remove_distdir)
|
||||
@(echo "$(distdir) archives ready for distribution: "; \
|
||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
||||
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
||||
distuninstallcheck:
|
||||
@test -n '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: trying to run $@ with an empty' \
|
||||
'$$(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
||||
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile config.h
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-recursive
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-html: install-html-recursive
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-recursive
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-recursive
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am:
|
||||
|
||||
.MAKE: $(am__recursive_targets) all install-am install-strip
|
||||
|
||||
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
||||
am--refresh check check-am clean clean-cscope clean-generic \
|
||||
cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
|
||||
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
|
||||
distcheck distclean distclean-generic distclean-hdr \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-ps install-ps-am install-strip \
|
||||
installcheck installcheck-am installdirs installdirs-am \
|
||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
128
tools/config.h.in
Normal file
|
@ -0,0 +1,128 @@
|
|||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
#undef HAVE_FCNTL_H
|
||||
|
||||
/* Define to 1 if you have the `fork' function. */
|
||||
#undef HAVE_FORK
|
||||
|
||||
/* Define to 1 if you have the `ftruncate' function. */
|
||||
#undef HAVE_FTRUNCATE
|
||||
|
||||
/* Define to 1 if you have the `gethostbyname' function. */
|
||||
#undef HAVE_GETHOSTBYNAME
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
|
||||
to 0 otherwise. */
|
||||
#undef HAVE_MALLOC
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the `memset' function. */
|
||||
#undef HAVE_MEMSET
|
||||
|
||||
/* Define to 1 if you have the <netdb.h> header file. */
|
||||
#undef HAVE_NETDB_H
|
||||
|
||||
/* Define to 1 if you have the `regcomp' function. */
|
||||
#undef HAVE_REGCOMP
|
||||
|
||||
/* Define to 1 if you have the `select' function. */
|
||||
#undef HAVE_SELECT
|
||||
|
||||
/* Define to 1 if you have the `socket' function. */
|
||||
#undef HAVE_SOCKET
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the `strchr' function. */
|
||||
#undef HAVE_STRCHR
|
||||
|
||||
/* Define to 1 if you have the `strerror' function. */
|
||||
#undef HAVE_STRERROR
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the `strrchr' function. */
|
||||
#undef HAVE_STRRCHR
|
||||
|
||||
/* Define to 1 if you have the `strstr' function. */
|
||||
#undef HAVE_STRSTR
|
||||
|
||||
/* Define to 1 if you have the <sys/socket.h> header file. */
|
||||
#undef HAVE_SYS_SOCKET_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Define to 1 if you have the `vfork' function. */
|
||||
#undef HAVE_VFORK
|
||||
|
||||
/* Define to 1 if you have the <vfork.h> header file. */
|
||||
#undef HAVE_VFORK_H
|
||||
|
||||
/* Define to 1 if `fork' works. */
|
||||
#undef HAVE_WORKING_FORK
|
||||
|
||||
/* Define to 1 if `vfork' works. */
|
||||
#undef HAVE_WORKING_VFORK
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define to `int' if <sys/types.h> doesn't define. */
|
||||
#undef gid_t
|
||||
|
||||
/* Define to rpl_malloc if the replacement function should be used. */
|
||||
#undef malloc
|
||||
|
||||
/* Define to `int' if <sys/types.h> does not define. */
|
||||
#undef pid_t
|
||||
|
||||
/* Define to `int' if <sys/types.h> doesn't define. */
|
||||
#undef uid_t
|
||||
|
||||
/* Define as `fork' if `vfork' does not work. */
|
||||
#undef vfork
|
6185
tools/configure
vendored
Executable file
88
tools/configure.ac
Normal file
|
@ -0,0 +1,88 @@
|
|||
# -*- Autoconf -*-
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ([2.50])
|
||||
AC_INIT(mod_qos, 9.0, pbuchbinder@users.sourceforge.net)
|
||||
AC_CONFIG_SRCDIR([src/qscheck.c])
|
||||
AM_INIT_AUTOMAKE
|
||||
AM_CONFIG_HEADER([config.h])
|
||||
|
||||
# Checks for programs.
|
||||
AC_PROG_CC
|
||||
|
||||
# Checks for libraries.
|
||||
|
||||
# Checks for header files.
|
||||
AC_CHECK_HEADERS([fcntl.h netdb.h stdlib.h string.h strings.h sys/socket.h unistd.h])
|
||||
|
||||
# Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_TYPE_PID_T
|
||||
AC_TYPE_UID_T
|
||||
|
||||
# Checks for library functions.
|
||||
AC_FUNC_FORK
|
||||
AC_FUNC_MALLOC
|
||||
AC_CHECK_FUNCS([ftruncate gethostbyname memset regcomp select socket strchr strerror strrchr strstr])
|
||||
|
||||
# START customize settings
|
||||
AC_ARG_ENABLE([use-static], AS_HELP_STRING(--enable-use-static,Try to use archives instead of shared libraries))
|
||||
AC_ARG_ENABLE([full-static], AS_HELP_STRING(--enable-full-static,Try to compile a statical linked executable))
|
||||
AC_ARG_ENABLE([ssl], AS_HELP_STRING(--disable-ssl,Disable ssl support (not supported yet)))
|
||||
|
||||
AC_ARG_WITH(apr,AS_HELP_STRING(--with-apr=PATH,path to apr-1-config script),
|
||||
[if test ! -x $withval/apr-1-config; then AC_MSG_ERROR($withval/apr-1-config do not exist or is not executable); else APR_CONFIG="$withval/apr-1-config"; fi],
|
||||
[APR_CONFIG="apr-1-config"])
|
||||
AC_ARG_WITH(apr-util,AS_HELP_STRING(--with-apr-util=PATH,path to apu-1-config script),
|
||||
[if test ! -x $withval/apu-1-config; then AC_MSG_ERROR($withval/apu-1-config do not exist or is not executable); else APU_CONFIG="$withval/apu-1-config"; fi],
|
||||
[APU_CONFIG="apu-1-config"])
|
||||
AC_ARG_WITH(pcre2,AS_HELP_STRING(--with-pcre2=PATH,path to pcre2-config script),
|
||||
[if test ! -x $withval/pcre2-config; then AC_MSG_ERROR($withval/pcre2-config do not exist or is not executable); else PCRE2_CONFIG="$withval/pcre2-config"; fi],
|
||||
[PCRE2_CONFIG="pcre2-config"])
|
||||
AC_ARG_WITH(png,AS_HELP_STRING(--with-png=PATH,path to libpng-config script),
|
||||
[if test ! -x $withval/libpng-config; then AC_MSG_ERROR($withval/libpng-config do not exist or is not executable); else PNG_CONFIG="$withval/libpng-config"; fi],
|
||||
[PNG_CONFIG="libpng-config"])
|
||||
AC_ARG_WITH(ssl,AS_HELP_STRING(--with-ssl=PATH,path to openssl source),
|
||||
[if test ! -d $withval; then AC_MSG_ERROR($withval is not a directory); else OPENSSL_LIB_PATH="-L${withval}"; OPENSSL_INCLUDES="-I${withval}/include"; fi],
|
||||
[OPENSSL_LIB_PATH=""; OPENSSL_INCLUDES=""])
|
||||
|
||||
APR_VERSION=`$APR_CONFIG --version`
|
||||
if test ! "$?" = "0"; then
|
||||
echo "libapr is missing, use --with-apr=PATH"
|
||||
exit -1
|
||||
fi
|
||||
APU_VERSION=`$APU_CONFIG --version`
|
||||
if test ! "$?" = "0"; then
|
||||
echo "libaprutil is missing, use --with-apr-util=PATH"
|
||||
exit -1
|
||||
fi
|
||||
PCRE2_VERSION=`$PCRE2_CONFIG --version`
|
||||
if test ! "$?" = "0"; then
|
||||
echo "libpcre2 is missing, use --with-pcre2=PATH to specify the location of your pcre2 library"
|
||||
exit -1
|
||||
fi
|
||||
PNG_VERSION=`$PNG_CONFIG --version`
|
||||
if test ! "$?" = "0"; then
|
||||
echo "libpng is missing, use --with-png=PATH to specify the location of your png library"
|
||||
#exit -1
|
||||
fi
|
||||
|
||||
# Store settings for includes, libs and flags
|
||||
INCLUDES="`$APR_CONFIG --includes` `$APU_CONFIG --includes` $OPENSSL_INCLUDES"
|
||||
CFLAGS="`$APR_CONFIG --cflags` `$PCRE2_CONFIG --cflags` `$PNG_CONFIG --cflags` $CFLAGS $INCLUDES"
|
||||
CPPFLAGS="`$APR_CONFIG --cppflags` $CPPFLAGS"
|
||||
LIBS="$OPENSSL_LIB_PATH -lssl -lcrypto `$APR_CONFIG --link-ld` `$APU_CONFIG --link-ld` `$APR_CONFIG --libs` `$APU_CONFIG --libs` `$PCRE2_CONFIG --libs8` `$PNG_CONFIG --libs` -lz"
|
||||
|
||||
# if link static
|
||||
if test "$enable_full_static" = "yes"; then
|
||||
LDFLAGS="-all-static"
|
||||
fi
|
||||
|
||||
# if link static
|
||||
if test "$enable_use_static" = "yes"; then
|
||||
LDFLAGS="-static"
|
||||
fi
|
||||
# END customize settings
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
src/Makefile])
|
||||
AC_OUTPUT
|
791
tools/depcomp
Executable file
|
@ -0,0 +1,791 @@
|
|||
#! /bin/sh
|
||||
# depcomp - compile a program generating dependencies as side-effects
|
||||
|
||||
scriptversion=2013-05-30.07; # UTC
|
||||
|
||||
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||
|
||||
case $1 in
|
||||
'')
|
||||
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||
exit 1;
|
||||
;;
|
||||
-h | --h*)
|
||||
cat <<\EOF
|
||||
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||
|
||||
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||
as side-effects.
|
||||
|
||||
Environment variables:
|
||||
depmode Dependency tracking mode.
|
||||
source Source file read by 'PROGRAMS ARGS'.
|
||||
object Object file output by 'PROGRAMS ARGS'.
|
||||
DEPDIR directory where to store dependencies.
|
||||
depfile Dependency file to output.
|
||||
tmpdepfile Temporary file to use when outputting dependencies.
|
||||
libtool Whether libtool is used (yes/no).
|
||||
|
||||
Report bugs to <bug-automake@gnu.org>.
|
||||
EOF
|
||||
exit $?
|
||||
;;
|
||||
-v | --v*)
|
||||
echo "depcomp $scriptversion"
|
||||
exit $?
|
||||
;;
|
||||
esac
|
||||
|
||||
# Get the directory component of the given path, and save it in the
|
||||
# global variables '$dir'. Note that this directory component will
|
||||
# be either empty or ending with a '/' character. This is deliberate.
|
||||
set_dir_from ()
|
||||
{
|
||||
case $1 in
|
||||
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
|
||||
*) dir=;;
|
||||
esac
|
||||
}
|
||||
|
||||
# Get the suffix-stripped basename of the given path, and save it the
|
||||
# global variable '$base'.
|
||||
set_base_from ()
|
||||
{
|
||||
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
|
||||
}
|
||||
|
||||
# If no dependency file was actually created by the compiler invocation,
|
||||
# we still have to create a dummy depfile, to avoid errors with the
|
||||
# Makefile "include basename.Plo" scheme.
|
||||
make_dummy_depfile ()
|
||||
{
|
||||
echo "#dummy" > "$depfile"
|
||||
}
|
||||
|
||||
# Factor out some common post-processing of the generated depfile.
|
||||
# Requires the auxiliary global variable '$tmpdepfile' to be set.
|
||||
aix_post_process_depfile ()
|
||||
{
|
||||
# If the compiler actually managed to produce a dependency file,
|
||||
# post-process it.
|
||||
if test -f "$tmpdepfile"; then
|
||||
# Each line is of the form 'foo.o: dependency.h'.
|
||||
# Do two passes, one to just change these to
|
||||
# $object: dependency.h
|
||||
# and one to simply output
|
||||
# dependency.h:
|
||||
# which is needed to avoid the deleted-header problem.
|
||||
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
|
||||
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
|
||||
} > "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
else
|
||||
make_dummy_depfile
|
||||
fi
|
||||
}
|
||||
|
||||
# A tabulation character.
|
||||
tab=' '
|
||||
# A newline character.
|
||||
nl='
|
||||
'
|
||||
# Character ranges might be problematic outside the C locale.
|
||||
# These definitions help.
|
||||
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||
lower=abcdefghijklmnopqrstuvwxyz
|
||||
digits=0123456789
|
||||
alpha=${upper}${lower}
|
||||
|
||||
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||
depfile=${depfile-`echo "$object" |
|
||||
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||
|
||||
rm -f "$tmpdepfile"
|
||||
|
||||
# Avoid interferences from the environment.
|
||||
gccflag= dashmflag=
|
||||
|
||||
# Some modes work just like other modes, but use different flags. We
|
||||
# parameterize here, but still list the modes in the big case below,
|
||||
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||
# here, because this file can only contain one case statement.
|
||||
if test "$depmode" = hp; then
|
||||
# HP compiler uses -M and no extra arg.
|
||||
gccflag=-M
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
if test "$depmode" = dashXmstdout; then
|
||||
# This is just like dashmstdout with a different argument.
|
||||
dashmflag=-xM
|
||||
depmode=dashmstdout
|
||||
fi
|
||||
|
||||
cygpath_u="cygpath -u -f -"
|
||||
if test "$depmode" = msvcmsys; then
|
||||
# This is just like msvisualcpp but w/o cygpath translation.
|
||||
# Just convert the backslash-escaped backslashes to single forward
|
||||
# slashes to satisfy depend.m4
|
||||
cygpath_u='sed s,\\\\,/,g'
|
||||
depmode=msvisualcpp
|
||||
fi
|
||||
|
||||
if test "$depmode" = msvc7msys; then
|
||||
# This is just like msvc7 but w/o cygpath translation.
|
||||
# Just convert the backslash-escaped backslashes to single forward
|
||||
# slashes to satisfy depend.m4
|
||||
cygpath_u='sed s,\\\\,/,g'
|
||||
depmode=msvc7
|
||||
fi
|
||||
|
||||
if test "$depmode" = xlc; then
|
||||
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
|
||||
gccflag=-qmakedep=gcc,-MF
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
case "$depmode" in
|
||||
gcc3)
|
||||
## gcc 3 implements dependency tracking that does exactly what
|
||||
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
|
||||
## the command line argument order; so add the flags where they
|
||||
## appear in depend2.am. Note that the slowdown incurred here
|
||||
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
|
||||
*) set fnord "$@" "$arg" ;;
|
||||
esac
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
done
|
||||
"$@"
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
mv "$tmpdepfile" "$depfile"
|
||||
;;
|
||||
|
||||
gcc)
|
||||
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
|
||||
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
|
||||
## (see the conditional assignment to $gccflag above).
|
||||
## There are various ways to get dependency output from gcc. Here's
|
||||
## why we pick this rather obscure method:
|
||||
## - Don't want to use -MD because we'd like the dependencies to end
|
||||
## up in a subdir. Having to rename by hand is ugly.
|
||||
## (We might end up doing this anyway to support other compilers.)
|
||||
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||
## -MM, not -M (despite what the docs say). Also, it might not be
|
||||
## supported by the other compilers which use the 'gcc' depmode.
|
||||
## - Using -M directly means running the compiler twice (even worse
|
||||
## than renaming).
|
||||
if test -z "$gccflag"; then
|
||||
gccflag=-MD,
|
||||
fi
|
||||
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
# The second -e expression handles DOS-style file names with drive
|
||||
# letters.
|
||||
sed -e 's/^[^:]*: / /' \
|
||||
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||
## This next piece of magic avoids the "deleted header file" problem.
|
||||
## The problem is that when a header file which appears in a .P file
|
||||
## is deleted, the dependency causes make to die (because there is
|
||||
## typically no way to rebuild the header). We avoid this by adding
|
||||
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||
## this for us directly.
|
||||
## Some versions of gcc put a space before the ':'. On the theory
|
||||
## that the space means something, we add a space to the output as
|
||||
## well. hp depmode also adds that space, but also prefixes the VPATH
|
||||
## to the object. Take care to not repeat it in the output.
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
sgi)
|
||||
if test "$libtool" = yes; then
|
||||
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||
else
|
||||
"$@" -MDupdate "$tmpdepfile"
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
|
||||
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||
echo "$object : \\" > "$depfile"
|
||||
# Clip off the initial element (the dependent). Don't try to be
|
||||
# clever and replace this with sed code, as IRIX sed won't handle
|
||||
# lines with more than a fixed number of characters (4096 in
|
||||
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||
# the IRIX cc adds comments like '#:fec' to the end of the
|
||||
# dependency line.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
|
||||
| tr "$nl" ' ' >> "$depfile"
|
||||
echo >> "$depfile"
|
||||
# The second pass generates a dummy entry for each header file.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||
>> "$depfile"
|
||||
else
|
||||
make_dummy_depfile
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
xlc)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
aix)
|
||||
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||
# in a .u file. In older versions, this file always lives in the
|
||||
# current directory. Also, the AIX compiler puts '$object:' at the
|
||||
# start of each line; $object doesn't have directory information.
|
||||
# Version 6 uses the directory in both cases.
|
||||
set_dir_from "$object"
|
||||
set_base_from "$object"
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1=$dir$base.u
|
||||
tmpdepfile2=$base.u
|
||||
tmpdepfile3=$dir.libs/$base.u
|
||||
"$@" -Wc,-M
|
||||
else
|
||||
tmpdepfile1=$dir$base.u
|
||||
tmpdepfile2=$dir$base.u
|
||||
tmpdepfile3=$dir$base.u
|
||||
"$@" -M
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
aix_post_process_depfile
|
||||
;;
|
||||
|
||||
tcc)
|
||||
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
|
||||
# FIXME: That version still under development at the moment of writing.
|
||||
# Make that this statement remains true also for stable, released
|
||||
# versions.
|
||||
# It will wrap lines (doesn't matter whether long or short) with a
|
||||
# trailing '\', as in:
|
||||
#
|
||||
# foo.o : \
|
||||
# foo.c \
|
||||
# foo.h \
|
||||
#
|
||||
# It will put a trailing '\' even on the last line, and will use leading
|
||||
# spaces rather than leading tabs (at least since its commit 0394caf7
|
||||
# "Emit spaces for -MD").
|
||||
"$@" -MD -MF "$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
|
||||
# We have to change lines of the first kind to '$object: \'.
|
||||
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
|
||||
# And for each line of the second kind, we have to emit a 'dep.h:'
|
||||
# dummy dependency, to avoid the deleted-header problem.
|
||||
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
## The order of this option in the case statement is important, since the
|
||||
## shell code in configure will try each of these formats in the order
|
||||
## listed in this file. A plain '-MD' option would be understood by many
|
||||
## compilers, so we must ensure this comes after the gcc and icc options.
|
||||
pgcc)
|
||||
# Portland's C compiler understands '-MD'.
|
||||
# Will always output deps to 'file.d' where file is the root name of the
|
||||
# source file under compilation, even if file resides in a subdirectory.
|
||||
# The object file name does not affect the name of the '.d' file.
|
||||
# pgcc 10.2 will output
|
||||
# foo.o: sub/foo.c sub/foo.h
|
||||
# and will wrap long lines using '\' :
|
||||
# foo.o: sub/foo.c ... \
|
||||
# sub/foo.h ... \
|
||||
# ...
|
||||
set_dir_from "$object"
|
||||
# Use the source, not the object, to determine the base name, since
|
||||
# that's sadly what pgcc will do too.
|
||||
set_base_from "$source"
|
||||
tmpdepfile=$base.d
|
||||
|
||||
# For projects that build the same source file twice into different object
|
||||
# files, the pgcc approach of using the *source* file root name can cause
|
||||
# problems in parallel builds. Use a locking strategy to avoid stomping on
|
||||
# the same $tmpdepfile.
|
||||
lockdir=$base.d-lock
|
||||
trap "
|
||||
echo '$0: caught signal, cleaning up...' >&2
|
||||
rmdir '$lockdir'
|
||||
exit 1
|
||||
" 1 2 13 15
|
||||
numtries=100
|
||||
i=$numtries
|
||||
while test $i -gt 0; do
|
||||
# mkdir is a portable test-and-set.
|
||||
if mkdir "$lockdir" 2>/dev/null; then
|
||||
# This process acquired the lock.
|
||||
"$@" -MD
|
||||
stat=$?
|
||||
# Release the lock.
|
||||
rmdir "$lockdir"
|
||||
break
|
||||
else
|
||||
# If the lock is being held by a different process, wait
|
||||
# until the winning process is done or we timeout.
|
||||
while test -d "$lockdir" && test $i -gt 0; do
|
||||
sleep 1
|
||||
i=`expr $i - 1`
|
||||
done
|
||||
fi
|
||||
i=`expr $i - 1`
|
||||
done
|
||||
trap - 1 2 13 15
|
||||
if test $i -le 0; then
|
||||
echo "$0: failed to acquire lock after $numtries attempts" >&2
|
||||
echo "$0: check lockdir '$lockdir'" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
# Each line is of the form `foo.o: dependent.h',
|
||||
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||
# Do two passes, one to just change these to
|
||||
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp2)
|
||||
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
|
||||
# compilers, which have integrated preprocessors. The correct option
|
||||
# to use with these is +Maked; it writes dependencies to a file named
|
||||
# 'foo.d', which lands next to the object file, wherever that
|
||||
# happens to be.
|
||||
# Much of this is similar to the tru64 case; see comments there.
|
||||
set_dir_from "$object"
|
||||
set_base_from "$object"
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir.libs/$base.d
|
||||
"$@" -Wc,+Maked
|
||||
else
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir$base.d
|
||||
"$@" +Maked
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
if test -f "$tmpdepfile"; then
|
||||
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
|
||||
# Add 'dependent.h:' lines.
|
||||
sed -ne '2,${
|
||||
s/^ *//
|
||||
s/ \\*$//
|
||||
s/$/:/
|
||||
p
|
||||
}' "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
make_dummy_depfile
|
||||
fi
|
||||
rm -f "$tmpdepfile" "$tmpdepfile2"
|
||||
;;
|
||||
|
||||
tru64)
|
||||
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
|
||||
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||
# dependencies in 'foo.d' instead, so we check for that too.
|
||||
# Subdirectories are respected.
|
||||
set_dir_from "$object"
|
||||
set_base_from "$object"
|
||||
|
||||
if test "$libtool" = yes; then
|
||||
# Libtool generates 2 separate objects for the 2 libraries. These
|
||||
# two compilations output dependencies in $dir.libs/$base.o.d and
|
||||
# in $dir$base.o.d. We have to check for both files, because
|
||||
# one of the two compilations can be disabled. We should prefer
|
||||
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||
# the former would cause a distcleancheck panic.
|
||||
tmpdepfile1=$dir$base.o.d # libtool 1.5
|
||||
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
|
||||
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||
"$@" -Wc,-MD
|
||||
else
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir$base.d
|
||||
tmpdepfile3=$dir$base.d
|
||||
"$@" -MD
|
||||
fi
|
||||
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
# Same post-processing that is required for AIX mode.
|
||||
aix_post_process_depfile
|
||||
;;
|
||||
|
||||
msvc7)
|
||||
if test "$libtool" = yes; then
|
||||
showIncludes=-Wc,-showIncludes
|
||||
else
|
||||
showIncludes=-showIncludes
|
||||
fi
|
||||
"$@" $showIncludes > "$tmpdepfile"
|
||||
stat=$?
|
||||
grep -v '^Note: including file: ' "$tmpdepfile"
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
# The first sed program below extracts the file names and escapes
|
||||
# backslashes for cygpath. The second sed program outputs the file
|
||||
# name when reading, but also accumulates all include files in the
|
||||
# hold buffer in order to output them again at the end. This only
|
||||
# works with sed implementations that can handle large buffers.
|
||||
sed < "$tmpdepfile" -n '
|
||||
/^Note: including file: *\(.*\)/ {
|
||||
s//\1/
|
||||
s/\\/\\\\/g
|
||||
p
|
||||
}' | $cygpath_u | sort -u | sed -n '
|
||||
s/ /\\ /g
|
||||
s/\(.*\)/'"$tab"'\1 \\/p
|
||||
s/.\(.*\) \\/\1:/
|
||||
H
|
||||
$ {
|
||||
s/.*/'"$tab"'/
|
||||
G
|
||||
p
|
||||
}' >> "$depfile"
|
||||
echo >> "$depfile" # make sure the fragment doesn't end with a backslash
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvc7msys)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
#nosideeffect)
|
||||
# This comment above is used by automake to tell side-effect
|
||||
# dependency tracking mechanisms from slower ones.
|
||||
|
||||
dashmstdout)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout, regardless of -o.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove '-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
test -z "$dashmflag" && dashmflag=-M
|
||||
# Require at least two characters before searching for ':'
|
||||
# in the target name. This is to cope with DOS-style filenames:
|
||||
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
|
||||
"$@" $dashmflag |
|
||||
sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
cat < "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process this sed invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
dashXmstdout)
|
||||
# This case only exists to satisfy depend.m4. It is never actually
|
||||
# run, as this mode is specially recognized in the preamble.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
makedepend)
|
||||
"$@" || exit $?
|
||||
# Remove any Libtool call
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
# X makedepend
|
||||
shift
|
||||
cleared=no eat=no
|
||||
for arg
|
||||
do
|
||||
case $cleared in
|
||||
no)
|
||||
set ""; shift
|
||||
cleared=yes ;;
|
||||
esac
|
||||
if test $eat = yes; then
|
||||
eat=no
|
||||
continue
|
||||
fi
|
||||
case "$arg" in
|
||||
-D*|-I*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
# Strip any option that makedepend may not understand. Remove
|
||||
# the object too, otherwise makedepend will parse it as a source file.
|
||||
-arch)
|
||||
eat=yes ;;
|
||||
-*|$object)
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
esac
|
||||
done
|
||||
obj_suffix=`echo "$object" | sed 's/^.*\././'`
|
||||
touch "$tmpdepfile"
|
||||
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||
rm -f "$depfile"
|
||||
# makedepend may prepend the VPATH from the source file name to the object.
|
||||
# No need to regex-escape $object, excess matching of '.' is harmless.
|
||||
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process the last invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed '1,2d' "$tmpdepfile" \
|
||||
| tr ' ' "$nl" \
|
||||
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||
;;
|
||||
|
||||
cpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove '-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
"$@" -E \
|
||||
| sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||
| sed '$ s: \\$::' > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
cat < "$tmpdepfile" >> "$depfile"
|
||||
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvisualcpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case "$arg" in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||
set fnord "$@"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
done
|
||||
"$@" -E 2>/dev/null |
|
||||
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
|
||||
echo "$tab" >> "$depfile"
|
||||
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvcmsys)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
none)
|
||||
exec "$@"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Unknown depmode $depmode" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
508
tools/install-sh
Executable file
|
@ -0,0 +1,508 @@
|
|||
#!/bin/sh
|
||||
# install - install a program, script, or datafile
|
||||
|
||||
scriptversion=2014-09-12.12; # UTC
|
||||
|
||||
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||
# following copyright and license.
|
||||
#
|
||||
# Copyright (C) 1994 X Consortium
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#
|
||||
# Except as contained in this notice, the name of the X Consortium shall not
|
||||
# be used in advertising or otherwise to promote the sale, use or other deal-
|
||||
# ings in this Software without prior written authorization from the X Consor-
|
||||
# tium.
|
||||
#
|
||||
#
|
||||
# FSF changes to this file are in the public domain.
|
||||
#
|
||||
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||
# 'make' implicit rules from creating a file called install from it
|
||||
# when there is no Makefile.
|
||||
#
|
||||
# This script is compatible with the BSD install script, but was written
|
||||
# from scratch.
|
||||
|
||||
tab=' '
|
||||
nl='
|
||||
'
|
||||
IFS=" $tab$nl"
|
||||
|
||||
# Set DOITPROG to "echo" to test this script.
|
||||
|
||||
doit=${DOITPROG-}
|
||||
doit_exec=${doit:-exec}
|
||||
|
||||
# Put in absolute file names if you don't have them in your path;
|
||||
# or use environment vars.
|
||||
|
||||
chgrpprog=${CHGRPPROG-chgrp}
|
||||
chmodprog=${CHMODPROG-chmod}
|
||||
chownprog=${CHOWNPROG-chown}
|
||||
cmpprog=${CMPPROG-cmp}
|
||||
cpprog=${CPPROG-cp}
|
||||
mkdirprog=${MKDIRPROG-mkdir}
|
||||
mvprog=${MVPROG-mv}
|
||||
rmprog=${RMPROG-rm}
|
||||
stripprog=${STRIPPROG-strip}
|
||||
|
||||
posix_mkdir=
|
||||
|
||||
# Desired mode of installed file.
|
||||
mode=0755
|
||||
|
||||
chgrpcmd=
|
||||
chmodcmd=$chmodprog
|
||||
chowncmd=
|
||||
mvcmd=$mvprog
|
||||
rmcmd="$rmprog -f"
|
||||
stripcmd=
|
||||
|
||||
src=
|
||||
dst=
|
||||
dir_arg=
|
||||
dst_arg=
|
||||
|
||||
copy_on_change=false
|
||||
is_target_a_directory=possibly
|
||||
|
||||
usage="\
|
||||
Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
||||
or: $0 [OPTION]... SRCFILES... DIRECTORY
|
||||
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
||||
or: $0 [OPTION]... -d DIRECTORIES...
|
||||
|
||||
In the 1st form, copy SRCFILE to DSTFILE.
|
||||
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
||||
In the 4th, create DIRECTORIES.
|
||||
|
||||
Options:
|
||||
--help display this help and exit.
|
||||
--version display version info and exit.
|
||||
|
||||
-c (ignored)
|
||||
-C install only if different (preserve the last data modification time)
|
||||
-d create directories instead of installing files.
|
||||
-g GROUP $chgrpprog installed files to GROUP.
|
||||
-m MODE $chmodprog installed files to MODE.
|
||||
-o USER $chownprog installed files to USER.
|
||||
-s $stripprog installed files.
|
||||
-t DIRECTORY install into DIRECTORY.
|
||||
-T report an error if DSTFILE is a directory.
|
||||
|
||||
Environment variables override the default commands:
|
||||
CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
|
||||
RMPROG STRIPPROG
|
||||
"
|
||||
|
||||
while test $# -ne 0; do
|
||||
case $1 in
|
||||
-c) ;;
|
||||
|
||||
-C) copy_on_change=true;;
|
||||
|
||||
-d) dir_arg=true;;
|
||||
|
||||
-g) chgrpcmd="$chgrpprog $2"
|
||||
shift;;
|
||||
|
||||
--help) echo "$usage"; exit $?;;
|
||||
|
||||
-m) mode=$2
|
||||
case $mode in
|
||||
*' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
|
||||
echo "$0: invalid mode: $mode" >&2
|
||||
exit 1;;
|
||||
esac
|
||||
shift;;
|
||||
|
||||
-o) chowncmd="$chownprog $2"
|
||||
shift;;
|
||||
|
||||
-s) stripcmd=$stripprog;;
|
||||
|
||||
-t)
|
||||
is_target_a_directory=always
|
||||
dst_arg=$2
|
||||
# Protect names problematic for 'test' and other utilities.
|
||||
case $dst_arg in
|
||||
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||
esac
|
||||
shift;;
|
||||
|
||||
-T) is_target_a_directory=never;;
|
||||
|
||||
--version) echo "$0 $scriptversion"; exit $?;;
|
||||
|
||||
--) shift
|
||||
break;;
|
||||
|
||||
-*) echo "$0: invalid option: $1" >&2
|
||||
exit 1;;
|
||||
|
||||
*) break;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
# We allow the use of options -d and -T together, by making -d
|
||||
# take the precedence; this is for compatibility with GNU install.
|
||||
|
||||
if test -n "$dir_arg"; then
|
||||
if test -n "$dst_arg"; then
|
||||
echo "$0: target directory not allowed when installing a directory." >&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
|
||||
# When -d is used, all remaining arguments are directories to create.
|
||||
# When -t is used, the destination is already specified.
|
||||
# Otherwise, the last argument is the destination. Remove it from $@.
|
||||
for arg
|
||||
do
|
||||
if test -n "$dst_arg"; then
|
||||
# $@ is not empty: it contains at least $arg.
|
||||
set fnord "$@" "$dst_arg"
|
||||
shift # fnord
|
||||
fi
|
||||
shift # arg
|
||||
dst_arg=$arg
|
||||
# Protect names problematic for 'test' and other utilities.
|
||||
case $dst_arg in
|
||||
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
|
||||
if test $# -eq 0; then
|
||||
if test -z "$dir_arg"; then
|
||||
echo "$0: no input file specified." >&2
|
||||
exit 1
|
||||
fi
|
||||
# It's OK to call 'install-sh -d' without argument.
|
||||
# This can happen when creating conditional directories.
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if test -z "$dir_arg"; then
|
||||
if test $# -gt 1 || test "$is_target_a_directory" = always; then
|
||||
if test ! -d "$dst_arg"; then
|
||||
echo "$0: $dst_arg: Is not a directory." >&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -z "$dir_arg"; then
|
||||
do_exit='(exit $ret); exit $ret'
|
||||
trap "ret=129; $do_exit" 1
|
||||
trap "ret=130; $do_exit" 2
|
||||
trap "ret=141; $do_exit" 13
|
||||
trap "ret=143; $do_exit" 15
|
||||
|
||||
# Set umask so as not to create temps with too-generous modes.
|
||||
# However, 'strip' requires both read and write access to temps.
|
||||
case $mode in
|
||||
# Optimize common cases.
|
||||
*644) cp_umask=133;;
|
||||
*755) cp_umask=22;;
|
||||
|
||||
*[0-7])
|
||||
if test -z "$stripcmd"; then
|
||||
u_plus_rw=
|
||||
else
|
||||
u_plus_rw='% 200'
|
||||
fi
|
||||
cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
|
||||
*)
|
||||
if test -z "$stripcmd"; then
|
||||
u_plus_rw=
|
||||
else
|
||||
u_plus_rw=,u+rw
|
||||
fi
|
||||
cp_umask=$mode$u_plus_rw;;
|
||||
esac
|
||||
fi
|
||||
|
||||
for src
|
||||
do
|
||||
# Protect names problematic for 'test' and other utilities.
|
||||
case $src in
|
||||
-* | [=\(\)!]) src=./$src;;
|
||||
esac
|
||||
|
||||
if test -n "$dir_arg"; then
|
||||
dst=$src
|
||||
dstdir=$dst
|
||||
test -d "$dstdir"
|
||||
dstdir_status=$?
|
||||
else
|
||||
|
||||
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
||||
# might cause directories to be created, which would be especially bad
|
||||
# if $src (and thus $dsttmp) contains '*'.
|
||||
if test ! -f "$src" && test ! -d "$src"; then
|
||||
echo "$0: $src does not exist." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test -z "$dst_arg"; then
|
||||
echo "$0: no destination specified." >&2
|
||||
exit 1
|
||||
fi
|
||||
dst=$dst_arg
|
||||
|
||||
# If destination is a directory, append the input filename; won't work
|
||||
# if double slashes aren't ignored.
|
||||
if test -d "$dst"; then
|
||||
if test "$is_target_a_directory" = never; then
|
||||
echo "$0: $dst_arg: Is a directory" >&2
|
||||
exit 1
|
||||
fi
|
||||
dstdir=$dst
|
||||
dst=$dstdir/`basename "$src"`
|
||||
dstdir_status=0
|
||||
else
|
||||
dstdir=`dirname "$dst"`
|
||||
test -d "$dstdir"
|
||||
dstdir_status=$?
|
||||
fi
|
||||
fi
|
||||
|
||||
obsolete_mkdir_used=false
|
||||
|
||||
if test $dstdir_status != 0; then
|
||||
case $posix_mkdir in
|
||||
'')
|
||||
# Create intermediate dirs using mode 755 as modified by the umask.
|
||||
# This is like FreeBSD 'install' as of 1997-10-28.
|
||||
umask=`umask`
|
||||
case $stripcmd.$umask in
|
||||
# Optimize common cases.
|
||||
*[2367][2367]) mkdir_umask=$umask;;
|
||||
.*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
|
||||
|
||||
*[0-7])
|
||||
mkdir_umask=`expr $umask + 22 \
|
||||
- $umask % 100 % 40 + $umask % 20 \
|
||||
- $umask % 10 % 4 + $umask % 2
|
||||
`;;
|
||||
*) mkdir_umask=$umask,go-w;;
|
||||
esac
|
||||
|
||||
# With -d, create the new directory with the user-specified mode.
|
||||
# Otherwise, rely on $mkdir_umask.
|
||||
if test -n "$dir_arg"; then
|
||||
mkdir_mode=-m$mode
|
||||
else
|
||||
mkdir_mode=
|
||||
fi
|
||||
|
||||
posix_mkdir=false
|
||||
case $umask in
|
||||
*[123567][0-7][0-7])
|
||||
# POSIX mkdir -p sets u+wx bits regardless of umask, which
|
||||
# is incompatible with FreeBSD 'install' when (umask & 300) != 0.
|
||||
;;
|
||||
*)
|
||||
# $RANDOM is not portable (e.g. dash); use it when possible to
|
||||
# lower collision chance
|
||||
tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
|
||||
trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
|
||||
|
||||
# As "mkdir -p" follows symlinks and we work in /tmp possibly; so
|
||||
# create the $tmpdir first (and fail if unsuccessful) to make sure
|
||||
# that nobody tries to guess the $tmpdir name.
|
||||
if (umask $mkdir_umask &&
|
||||
$mkdirprog $mkdir_mode "$tmpdir" &&
|
||||
exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
|
||||
then
|
||||
if test -z "$dir_arg" || {
|
||||
# Check for POSIX incompatibilities with -m.
|
||||
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
|
||||
# other-writable bit of parent directory when it shouldn't.
|
||||
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
|
||||
test_tmpdir="$tmpdir/a"
|
||||
ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
|
||||
case $ls_ld_tmpdir in
|
||||
d????-?r-*) different_mode=700;;
|
||||
d????-?--*) different_mode=755;;
|
||||
*) false;;
|
||||
esac &&
|
||||
$mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
|
||||
ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
|
||||
test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
|
||||
}
|
||||
}
|
||||
then posix_mkdir=:
|
||||
fi
|
||||
rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
|
||||
else
|
||||
# Remove any dirs left behind by ancient mkdir implementations.
|
||||
rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
|
||||
fi
|
||||
trap '' 0;;
|
||||
esac;;
|
||||
esac
|
||||
|
||||
if
|
||||
$posix_mkdir && (
|
||||
umask $mkdir_umask &&
|
||||
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
|
||||
)
|
||||
then :
|
||||
else
|
||||
|
||||
# The umask is ridiculous, or mkdir does not conform to POSIX,
|
||||
# or it failed possibly due to a race condition. Create the
|
||||
# directory the slow way, step by step, checking for races as we go.
|
||||
|
||||
case $dstdir in
|
||||
/*) prefix='/';;
|
||||
[-=\(\)!]*) prefix='./';;
|
||||
*) prefix='';;
|
||||
esac
|
||||
|
||||
oIFS=$IFS
|
||||
IFS=/
|
||||
set -f
|
||||
set fnord $dstdir
|
||||
shift
|
||||
set +f
|
||||
IFS=$oIFS
|
||||
|
||||
prefixes=
|
||||
|
||||
for d
|
||||
do
|
||||
test X"$d" = X && continue
|
||||
|
||||
prefix=$prefix$d
|
||||
if test -d "$prefix"; then
|
||||
prefixes=
|
||||
else
|
||||
if $posix_mkdir; then
|
||||
(umask=$mkdir_umask &&
|
||||
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
|
||||
# Don't fail if two instances are running concurrently.
|
||||
test -d "$prefix" || exit 1
|
||||
else
|
||||
case $prefix in
|
||||
*\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
|
||||
*) qprefix=$prefix;;
|
||||
esac
|
||||
prefixes="$prefixes '$qprefix'"
|
||||
fi
|
||||
fi
|
||||
prefix=$prefix/
|
||||
done
|
||||
|
||||
if test -n "$prefixes"; then
|
||||
# Don't fail if two instances are running concurrently.
|
||||
(umask $mkdir_umask &&
|
||||
eval "\$doit_exec \$mkdirprog $prefixes") ||
|
||||
test -d "$dstdir" || exit 1
|
||||
obsolete_mkdir_used=true
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -n "$dir_arg"; then
|
||||
{ test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
|
||||
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
|
||||
{ test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
|
||||
test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
|
||||
else
|
||||
|
||||
# Make a couple of temp file names in the proper directory.
|
||||
dsttmp=$dstdir/_inst.$$_
|
||||
rmtmp=$dstdir/_rm.$$_
|
||||
|
||||
# Trap to clean up those temp files at exit.
|
||||
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||
|
||||
# Copy the file name to the temp name.
|
||||
(umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
|
||||
|
||||
# and set any options; do chmod last to preserve setuid bits.
|
||||
#
|
||||
# If any of these fail, we abort the whole thing. If we want to
|
||||
# ignore errors from any of these, just make sure not to ignore
|
||||
# errors from the above "$doit $cpprog $src $dsttmp" command.
|
||||
#
|
||||
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
|
||||
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
|
||||
{ test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
|
||||
{ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
|
||||
|
||||
# If -C, don't bother to copy if it wouldn't change the file.
|
||||
if $copy_on_change &&
|
||||
old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
|
||||
new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
|
||||
set -f &&
|
||||
set X $old && old=:$2:$4:$5:$6 &&
|
||||
set X $new && new=:$2:$4:$5:$6 &&
|
||||
set +f &&
|
||||
test "$old" = "$new" &&
|
||||
$cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
|
||||
then
|
||||
rm -f "$dsttmp"
|
||||
else
|
||||
# Rename the file to the real destination.
|
||||
$doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
|
||||
|
||||
# The rename failed, perhaps because mv can't rename something else
|
||||
# to itself, or perhaps because mv is so ancient that it does not
|
||||
# support -f.
|
||||
{
|
||||
# Now remove or move aside any old file at destination location.
|
||||
# We try this two ways since rm can't unlink itself on some
|
||||
# systems and the destination file might be busy for other
|
||||
# reasons. In this case, the final cleanup might fail but the new
|
||||
# file should still install successfully.
|
||||
{
|
||||
test ! -f "$dst" ||
|
||||
$doit $rmcmd -f "$dst" 2>/dev/null ||
|
||||
{ $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
|
||||
{ $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
|
||||
} ||
|
||||
{ echo "$0: cannot unlink or rename $dst" >&2
|
||||
(exit 1); exit 1
|
||||
}
|
||||
} &&
|
||||
|
||||
# Now rename the file to the real destination.
|
||||
$doit $mvcmd "$dsttmp" "$dst"
|
||||
}
|
||||
fi || exit 1
|
||||
|
||||
trap '' 0
|
||||
fi
|
||||
done
|
||||
|
||||
# Local variables:
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
198
tools/man1/mod_qos.1
Normal file
|
@ -0,0 +1,198 @@
|
|||
.TH MOD_QOS 1 "May 2023" "mod_qos Apache Module" "mod_qos"
|
||||
.SH NAME
|
||||
mod_qos \- quality of service module for the Apache Web server
|
||||
.SH DESCRIPTION
|
||||
mod_qos is a quality of service module for the Apache web server implementing control mechanisms that can provide different levels of priority to different HTTP requests.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
QS_LocRequestLimitDefault <number>, defines the default for the QS_LocRequestLimit and QS_LocRequestLimitMatch directive.
|
||||
.TP
|
||||
QS_LocRequestLimit <location> <number>, defines the maximum number of concurrent requests allowed to access the specified location. Default is defined by the QS_LocRequestLimitDefault directive.
|
||||
.TP
|
||||
QS_LocRequestPerSecLimit <location> <number>, defines the allowed number of requests per second to a location. Requests are limited by adding a delay to each requests. This directive should be used in conjunction with QS_LocRequestLimit only.
|
||||
.TP
|
||||
QS_LocKBytesPerSecLimit <location> <kbytes>, defines the allowed download bandwidth to the defined kbytes per second. Responses areslowed by adding a delay to each response (non\-linear, bigger files get longer delay than smaller ones). This directive should be used in conjunction with QS_LocRequestLimit only.
|
||||
.TP
|
||||
QS_LocRequestLimitMatch <regex> <number>, defines the number of concurrent requests to the uri (path and query) pattern. Default is defined by the QS_LocRequestLimitDefault directive.
|
||||
.TP
|
||||
QS_LocRequestPerSecLimitMatch <regex> <number>, defines the allowed number of requests per second to the uri (path and query) pattern. Requests are limited by adding a delay to each requests. This directive should be used in conjunction with QS_LocRequestLimitMatch only.
|
||||
.TP
|
||||
QS_LocKBytesPerSecLimitMatch <regex> <kbytes>, defines the allowed download bandwidth to the location matching the defined URL (path and query) pattern. Responses are slowed down by adding a delay to each response (non\-linear, bigger files get longer delay than smaller ones). This directive should be used in conjunction with QS_LocRequestLimitMatch only.
|
||||
.TP
|
||||
QS_CondLocRequestLimitMatch <regex> <number> <pattern>, defines the number of concurrent requests to the uri (path and query) regex. Rule is only enforced if the QS_Cond variable matches the specified pattern (regex).
|
||||
.TP
|
||||
QS_EventRequestLimit <variable>[=<regex>] <number>, defines the number of concurrent events. Directive works similar to QS_LocRequestLimit, but counts the requests having the same environment variable (and optionally matching its value, too) rather than those that have the same URL pattern.
|
||||
.TP
|
||||
QS_EventPerSecLimit [!]<variable> <number>, defines how often requests may have the defined environment variable (literal string) set. It measures the occurrences of the defined environment variable on a request per seconds level and tries to limit this occurrence to the defined number. It works similar to as QS_LocRequestPerSecLimit, but counts only the requests with the specified variable (or without it if the variable name is prefixed by a '!'). If a request matches multiple events, the rule with the lowest bandwidth is applied. Events are limited by adding a delay to each request causing an event.
|
||||
.TP
|
||||
QS_EventKBytesPerSecLimit [!]<variable> <kbytes>, throttles the download bandwidth of all requests having the defined variable set to the defined kbytes per second. Responses are slowed by adding a delay to each response (non\-linear, bigger files get longer delay than smaller ones). By default, no limitation is active. This directive should be used in conjunction with QS_EventRequestLimit only (you must use the same variable name for both directives).
|
||||
.TP
|
||||
QS_EventLimitCount <env\-variable> <number> <seconds>, defines the maximum number of events allowed within the defined time. Requests are denied when reaching this limitation for the specified time (blocked at request level).
|
||||
.TP
|
||||
QS_CondEventLimitCount <env\-variable> <number> <seconds> <pattern>, same as QS_EventLimitCount but blocks requests only if the QS_Cond variable matches the specified pattern (regex).
|
||||
.TP
|
||||
QS_SrvMaxConn <number>, defines the maximum number of concurrent TCP connections for this server (virtual host).
|
||||
.TP
|
||||
QS_SrvMaxConnClose <number>[%], defines the maximum number of concurrent TCP connections until the server disables keep\-alive for this server (closes the connection after each requests. You may specify the number of connections as a percentage of MaxClients if adding the suffix '%' to the specified value.
|
||||
.TP
|
||||
QS_SrvMaxConnPerIP <number> [<connections>], defines the maximum number of connections per source IP address for this server (virtual host). 'connections' defines the number of busy connections of the server (all virtual hosts) to enable this limitation, default is 0.
|
||||
.TP
|
||||
QS_SrvMaxConnExcludeIP <addr>, excludes an IP address or address range from being limited.
|
||||
.TP
|
||||
QS_SrvMinDataRateIgnoreVIP tells the QS_SrvMaxConnPerIP directive to ignore (if set to "on") the VIP status of clients. Default is "off", which means that QS_SrvMaxConnPerIP is disabled for VIPs.
|
||||
.TP
|
||||
QS_SrvSerialize 'on'|'off' [<seconds>], ensures that not more than one request having the QS_SrvSerialize variable set is processed at the same time by serializing them (process one after each other).
|
||||
.TP
|
||||
QS_SrvDataRateOff, disables the QS_SrvRequestRate and QS_SrvMinDataRate enforcement for a virtual host (only port/address based but not for name based virtual hosts).
|
||||
.TP
|
||||
QS_SrvRequestRate <bytes per seconds> [<max bytes per second>], defines the minimum upload throughput a client must generate. See also QS_SrvMinDataRate.
|
||||
.TP
|
||||
QS_SrvMinDataRate <bytes per seconds> [<max bytes per second> [<connections>]], defines the minimum upload/download throughput a client must generate (the bytes send/received by the client per seconds). This bandwidth is measured while transmitting the data (request line, header fields, request body, or response data). The client connection get closed if the client does not fulfill the required data rate and the IP address of the causing client get marked in order to be handled with low priority (see the QS_ClientPrefer directive). The "max bytes per second" activates dynamic minimum throughput control: The required minimal throughput is increased in parallel to the number of concurrent clients sending/receiving data. The "max bytes per second" setting is reached when the number of sending/receiving clients is equal to the MaxClients setting. The "connections" argument is used to specify the number of busy TCP connections a server must have to enable this feature (0 by default). No limitation is set by default.
|
||||
.TP
|
||||
QS_SrvMinDataRateOffEvent '+'|'\-'<env\-variable>, disables the minimal data rate enfocement (QS_SrvMinDataRate) for a certain connection if the defined environment variable has been set. The '+' prefix is used to add a variable to the configuration while the '\-' prefix is used to remove a variable.
|
||||
.TP
|
||||
QS_SrvMinDataRateIgnoreVIP tells the QS_SrvMinDataRate directive to ignore (if set to "on") the VIP status of clients. Default is "off", which means that QS_SrvMinDataRate is disabled for VIPs.
|
||||
.TP
|
||||
QS_SrvSampleRate <seconds>, defines the sampling rate used by the QS_SrvMinDataRate directive to measure the throughput of a connection.
|
||||
.TP
|
||||
QS_DenyRequestLine '+'|'\-'<id> 'log'|'deny' <regular expression>, generic request line (method, path, query and protocol) filter used to deny access for requests matching the defined regular expression. '+' adds a new rule while '\-' removes a rule for a location. The action is either 'log' (access is granted but rule match is logged) or 'deny' (access is denied).
|
||||
.TP
|
||||
QS_DenyPath, same as QS_DenyRequestLine but applied to the path only.
|
||||
.TP
|
||||
QS_DenyQuery, same as QS_DenyRequestLine but applied to the query only.
|
||||
.TP
|
||||
QS_DenyEvent '+'|'\-'<id> 'log'|'deny' [!]<variable>, matches requests having the defined process environment variable set (or NOT set if prefixed by a '!'). The action taken for matching rules is either 'log' (access is granted but the rule match is logged) or 'deny' (access is denied).
|
||||
.TP
|
||||
QS_PermitUri, '+'|'\-'<id> 'log'|'deny' <regular expression>, generic request filter applied to the request uri (path and query). Only requests matching at least one QS_PermitUri pattern are allowed. If a QS_PermitUri pattern has been defined an the request does not match any rule, the request is denied albeit of any server resource availability (allow list). All rules must define the same action. Regular expression is case sensitive.
|
||||
.TP
|
||||
QS_DenyBody 'on'|'off', enabled body data filter (obsolete).
|
||||
.TP
|
||||
QS_DenyQueryBody 'on'|'off', enabled body data filter for QS_DenyQuery.
|
||||
.TP
|
||||
QS_PermitUriBody 'on'|'off', enabled body data filter for QS_PermitUriBody.
|
||||
.TP
|
||||
QS_InvalidUrlEncoding 'log'|'deny'|'off', enforces correct URL decoding in conjunction with the QS_DenyRequestLine, QS_DenyPath, and QS_DenyQuery directives. Default is "off".
|
||||
.TP
|
||||
QS_LimitRequestBody <bytes>, limits the allowed size of an HTTP request message body.
|
||||
.TP
|
||||
QS_DenyDecoding 'uni', enabled additional string decoding functions which are applied before matching QS_Deny* and QS_Permit* directives. Default is URL decoding (%xx, \xHH, '+').
|
||||
.TP
|
||||
QS_DenyInheritanceOff, disable inheritance of QS_Deny* and QS_Permit* directives to a location.
|
||||
.TP
|
||||
QS_RequestHeaderFilter 'on'|'off'|'size', filters request headers by allowing only these headers which match the request header rules defined by mod_qos. Request headers which do not conform these definitions are either dropped or the whole request is denied. Custom request headers may be added by the QS_RequestHeaderFilterRule directive. Using the 'size' option, the header field max. size is verified only (similar to LimitRequestFieldsize but using individual values for each header type) while the pattern is ignored.
|
||||
.TP
|
||||
QS_ResponseHeaderFilter 'on'|'off', filters response headers by allowing only these headers which match the response header rules defined by mod_qos. Response headers which do not conform these definitions are dropped.
|
||||
.TP
|
||||
QS_RequestHeaderFilterRule <header name> 'drop'|'deny' <regular expression> <size>, used to add custom request header filter rules which override the internal filter rules of mod_qos. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ResponseHeaderFilterRule <header name> <regular expression> <size>, used to add custom response header filter rules which override the internal filter rules of mod_qos. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_MileStone 'log'|'deny' <pattern> [<thinktime>], defines request line patterns a client must access in the defined order as they are defined in the configuration file.
|
||||
.TP
|
||||
QS_MileStoneTimeout <seconds>, defines the time in seconds within a client must reach the next milestone. Default are 3600 seconds.
|
||||
.TP
|
||||
QS_SessionCookieName <name>, defines a custom session cookie name, default is MODQOS.
|
||||
.TP
|
||||
QS_SessionCookiePath <path>, defines the cookie path, default is "/".
|
||||
.TP
|
||||
QS_SessionTimeout <seconds>, defines the session life time for a VIP. It is only used for session based (cookie) VIP identification (not for IP based). Default is 3600 seconds.
|
||||
.TP
|
||||
QS_SessionKey <string>, secret key used for cookie encryption. Used when using the same session cookie for multiple web servers (load balancing) or sessions should survive a server restart. By default, a random key is used which changes every server restart.
|
||||
.TP
|
||||
QS_VipHeaderName <name>[=<regex>] [drop], defines an HTTP response header which marks a user as a VIP. mod_qos creates a session for this user by setting a cookie, e.g., after successful user authentication. Tests optionally its value against the provided regular expression. Specify the action 'drop' if you want mod_qos to remove this control header from the HTTP response.
|
||||
.TP
|
||||
QS_VipIPHeaderName <name>[=<regex>] [drop], defines an HTTP response header which marks a client source IP address as a VIP. Tests optionally its value against the provided regular expression. Specify the action 'drop' if you want mod_qos to remove this control header from the HTTP response.
|
||||
.TP
|
||||
QS_VipUser, creates a VIP session for users which have been authenticated by the Apache server, e.g., by the standard mod_auth* modules. It works similar to the QS_VipHeaderName directive.
|
||||
.TP
|
||||
QS_VipIpUser, marks a source IP address as a VIP if the user has been authenticated by the Apache server, e.g. by the standard mod_auth* modules. It works similar to the QS_VipIPHeaderName directive.
|
||||
.TP
|
||||
QS_UserTrackingCookieName <name> [<path>] [<domain>] ['session'] ['jsredirect'], enables the user tracking cookie by defining a cookie name. The "path" parameter is an option cookie check page which is used to ensure the client accepts cookies. The "domain" option defines the Domain attriibute for the Set\-Cookie header. The option "session" indicates that the cookie shall be a session cookie expiring when the user closes it's browser. User tracking requires mod_unique_id. This feature is disabled by default. Ignores QS_LogOnly.
|
||||
.TP
|
||||
QS_SetEnvIf [!]<variable1>[=<regex>] [[!]<variable2>] [!]<variable=value>, sets (or unsets) the 'variable=value' (literal string) if variable1 (literal string) AND variable2 (literal string) are set in the request environment variable list (not case sensitive). This is used to combine multiple variables to a new event type. Alternatively, a regular expression can be specified for variable1's value and variable2 must be omitted in order to simply set a new variable if the regular expression matches.
|
||||
.TP
|
||||
QS_SetEnvIfCmpP <env\-variable1> eq|ne|gt|lt <env\-variable2> [!]<env\-variable>[=<value>], sets the specified environment variable if the specified env\-variables are alphabetically or numerical equal (eq), not equal (ne), greater (gt), less (lt).
|
||||
.TP
|
||||
QS_SetEnvIfQuery <regex> [!]<variable>[=value], directive works quite similar to the SetEnvIf directive of the Apache module mod_setenvif, but the specified regex is applied against the query string portion of the request line. The directive recognizes the occurrences of $1..$9 within value and replaces them by the sub\-expressions of the defined regex pattern.
|
||||
.TP
|
||||
QS_SetEnvIfParp <regex> [!]<variable>[=value], directive parsing the request payload using the Apache module mod_parp. It matches the request URL query and the HTTP request message body data as well ('application/x\-www\-form\-urlencoded', 'multipart/form\-data', and 'multipart/mixed') and sets the defined process variable (quite similar to the QS_SetEnvIfQuery directive). The directive recognizes the occurrences of $1..$9 within value and replaces them by the sub\-expressions of the defined regex pattern. This directive activates mod_parp for every request to the virtual host. You may deactivate mod_parp for selected requests using the SetEnvIf directive: unset the variable 'parp' to do so. Important: request message body processing requires that the server loads the whole request into its memory (at least twice the length of the message). You should limit the allowed size of the HTTP request message body using the QS_LimitRequestBody directive when using QS_SetEnvIfParp!
|
||||
.TP
|
||||
QS_SetEnvIfBody <regex> [!]<variable>[=value], parses the request body using the Apache module mod_parp. Specify the content types to process using the mod_parp directive PARP_BodyData and ensure that mod_parp is enabled using the SetEnvIf directive of the Apache module mod_setenvif. You should limit the allowed size of HTTP requests message body using the QS_LimitRequestBody directive when using mod_parp. The directive recognizes the occurrence of $1 within the variable value and replaces it by the sub\-expressions of the defined regex pattern.
|
||||
.TP
|
||||
QS_SetEnvStatus (deprecated, use QS_SetEnvIfStatus)
|
||||
.TP
|
||||
QS_SetEnvIfStatus <status code> <variable>, adds the defined request environment variable if the HTTP status code matches the defined value. The value 'QS_SrvMinDataRate' may be used as a special status code to set a QS_Block event in order to handle connection close events caused by QS_SrvMinDataRate rules while the status 'NullConnection' may be used to mark connections which are closed before any HTTP request has ever been received. The 'QS_SrvMaxConnPerIP' value may be used to count QS_Block events for connections closed by the QS_SrvMaxConnPerIP directive. The 'BrokenConnection' value may be used to mark clients not reading the full HTTP response.
|
||||
.TP
|
||||
QS_SetEnvResBody (deprecated, use QS_SetEnvIfResBody)
|
||||
.TP
|
||||
QS_SetEnvIfResBody <string> [!]<variable>, adds the defined request environment variable (e.g. QS_Block) if the HTTP response body contains the defined literal string. Supports only one pattern per location.
|
||||
.TP
|
||||
QS_SetEnv <variable> <value>, sets the defined variable with the value where the value string may contain other environment variables surrounded by "${" and "}". The variable is only set if all defined variables within the value can be resolved.
|
||||
.TP
|
||||
QS_SetReqHeader [!]<header name> <variable> ['late'], sets the defined HTTP request header to the request if the specified environment variable is set.
|
||||
.TP
|
||||
QS_UnsetReqHeader <header name>, Removes the specified header from the request.
|
||||
.TP
|
||||
QS_UnsetResHeader <header name>, Removes the specified header from the response.
|
||||
.TP
|
||||
QS_SetEnvResHeader <header name> [drop], sets the defined HTTP response header (name and value) to the request environment variables Deletes the header if the action 'drop' has been specified.
|
||||
.TP
|
||||
QS_SetEnvResHeaderMatch <header name> <regex>, sets the defined HTTP response header (name and value) to the request environment variables if the specified regular expression matches the header value.
|
||||
.TP
|
||||
QS_SetEnvRes <variable> <regex> <variable2>[=<value>], sets the environment variable2 if the regular expression matches against the value of the environment variable. Occurrences of $1..$9 within the value and replace them by parenthesized subexpressions of the regular expression.
|
||||
.TP
|
||||
QS_RedirectIf <variable> <regex> [<code>:]<url>, redirects the client to the configured url if the regular expression matches the value of the the environment variable.
|
||||
.TP
|
||||
QS_ClientEntries <number>, defines the number of individual clients managed by mod_qos. Default is 50000. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientPrefer [<percent>], prefers known VIP clients when server has less than 80% (or the configured value) of free TCP connections. Preferred clients are VIP clients (or those without any negative penalties), see QS_VipHeaderName directive. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientTolerance <percent>, defines the allowed tolerance (variation) from a "normal" client (average) in percent. Default is 20%. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientContentTypes <html> <css/js> <images> <other> <304>, defines the distribution of HTTP response content types a client normally receives when accessing the server. mod_qos normally learns the average behavior automatically by default but you may specify a static configuration in order to avoid influences by a high number of abnormal clients.
|
||||
.TP
|
||||
QS_ClientEventBlockCount <number> [<seconds>], defines the maximum number of QS_Block allowed within the defined time (default are 10 minutes). Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientEventBlockExcludeIP <addr>, excludes an IP address or address range from being limited by QS_ClientEventBlockCount.
|
||||
.TP
|
||||
QS_ClientEventLimitCount <number> [<seconds> [<variable>]], defines the maximum number of the specified environment variable (QS_Limit by default) allowed within the defined time (default are 10 minutes). Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_CondClientEventLimitCount <number> <seconds> <variable> <pattern>, defines the maximum number of the specified environment variable allowed within the defined time. Directive works similar as QS_ClientEventLimitCount but requests are only blocked if the QS_Cond variable matches the defined pattern (regex). Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientEventPerSecLimit <number>, defines the number events pro seconds on a per client (source IP) basis. Events are identified by requests having the QS_Event variable set. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientEventRequestLimit <number>, defines the allowed number of concurrent requests coming from the same client source IP address having the QS_EventRequest variable set. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_ClientSerialize, serializes requests having the QS_Serialize variable set if they are coming from the same IP address.
|
||||
.TP
|
||||
QS_ClientIpFromHeader <header>, defines a HTTP request header to read the client's source IP address from (instead of taking the IP address of the client opening the TCP connection). This may be used for the QS_ClientEventLimitCount directive and QS_Country variable.
|
||||
.TP
|
||||
QS_ClientGeoCountryDB <path>, path to the geograpical database file.
|
||||
.TP
|
||||
QS_ClientGeoCountryPriv <list> <connections> ['excludeUnknown'], defines a comma separated list of country codes for origin client IP address which are allowed to access the server if the number of busy TCP connections reaches the defined number of connections while others are denied access. Clients whose IP can't be mapped to a country code can be excluded from the limitation by configuring the 'excludeUnknown' argument.
|
||||
.TP
|
||||
QS_ErrorPage <url>, defines a custom error page.
|
||||
.TP
|
||||
QS_ErrorResponseCode <code>, defines the HTTP response code which is used when a request is denied, default is 500.
|
||||
.TP
|
||||
QS_ForcedClose 'on'|'off', defines if mod_qos connection handler shall exit with an error code (on) or not. Default is on (except for Apache 2.4.49).
|
||||
.TP
|
||||
QS_LogOnly 'on'|'off', enables the log only mode of the module where no limitations are enforced. Default is off. Directive is allowed in global server context only.
|
||||
.TP
|
||||
QS_LogEnv 'on'|'off', enables logging of environment variables.
|
||||
.TP
|
||||
QS_SupportIPv6 'on'|'off', enables IPv6 address support. Default is on.
|
||||
.TP
|
||||
QS_SemMemFile <path>, optional path to a directory or file which shall be used for file based semaphores/shared memory usage, e.g. /var/tmp.
|
||||
.TP
|
||||
QS_MaxClients <number>, optional override for mod_qos's MaxClients/MaxRequestWorkers calculation which defines the maximum number of TCP connections the server can handle.
|
||||
.TP
|
||||
QS_DisableHandler 'on'|'off', disables the qos\-viewer and qos\-console for a virtual host
|
||||
.TP
|
||||
QS_Status 'on'|'off', writes a log message containing server statistics once every minute. Default is off.
|
||||
.TP
|
||||
QS_EventCount 'on'|'off', enables error event counting (counters are shown in the machine\-readable version of the status viewer). Default is off.
|
||||
.TP
|
||||
QSLog <arg>, used to configure a global (per Apache instance) 'qslog' logger.
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod\-qos.sourceforge.net/
|
46
tools/man1/qsdt.1
Normal file
|
@ -0,0 +1,46 @@
|
|||
.TH QSDT 1 "May 2023" "mod_qos utilities 11.74" "qsdt man page"
|
||||
|
||||
.SH NAME
|
||||
qsdt calculates the elapsed time between two related log messages.
|
||||
.SH SYNOPSIS
|
||||
qsdt [\-t <regex>] \-i <regex> \-s <regex> \-e <regex> [\-v] [<path>]
|
||||
.SH DESCRIPTION
|
||||
qsdt is a simple tool to search two different messages in a log file and calculates the elapsed time between these lines. The two log messages need a common identifier such an unique request id (UNIQUE_ID), a thread id, or a transaction code.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-t <regex>
|
||||
Defines a pattern (regular expression) matching the log line's timestamp. The pattern must include two sub\-expressions, one matching hours, minutes and seconds the other matching the milliseconds. Default pattern is ([0\-9]{2}:[0\-9]{2}:[0\-9]{2})[.,]([0\-9]{3})
|
||||
.TP
|
||||
\-i <regex>
|
||||
Pattern (regular expression) matching the identifier which the two messages have in common. The sub\-expression defines the part which needs to be extracted from the matching string. Note: You can also use the start (\-s) and end (\-e) pattern to define the sub\-expression matching this identifier.
|
||||
.TP
|
||||
\-s <regex>
|
||||
Defines the pattern (regular expression or literal string) identifying the first (start) of the two messages.
|
||||
.TP
|
||||
\-e <regex>
|
||||
Defines the pattern (regular expression or literal string) identifying the second (end) of the two messages.
|
||||
.TP
|
||||
\-v
|
||||
Verbose mode.
|
||||
.TP
|
||||
<path>
|
||||
Defines the input file to process. qsdt reads from from standard input if this parameter is omitted.
|
||||
.SH EXAMPLE
|
||||
Sample command line arguments:
|
||||
|
||||
\-i ' ([a\-z0\-9]+) [A\-Z]+ ' \-s 'Received Request' \-e 'Received Response'
|
||||
|
||||
matching those sample log messages:
|
||||
2018\-03\-12 16:34:08.653 threadid23 INFO Received Request
|
||||
2018\-03\-13 16:35:09.891 threadid23 DEBUG MessageHandler Received Response
|
||||
|
||||
.SH NOTE
|
||||
The four patterns (t,i,s,e) are concatenated into two search patterns:
|
||||
first (start): [t (HH:MM:SS)(SSS) ].*[i (id) ].*[s ]
|
||||
second (end): [t (HH:MM:SS)(SSS) ].*[i (id) ].*[e ]
|
||||
|
||||
And the three sub\-expression are used to extract the timestamp and the unique identifier that the start and end message have in common. This means that you could specify the sub\-expression for the unique identifier in the start (\-s) or end (\-e) pattern alternatively, e.g. in case the identifier is at the end of the log line.
|
||||
.SH SEE ALSO
|
||||
qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
36
tools/man1/qsexec.1
Normal file
|
@ -0,0 +1,36 @@
|
|||
.TH QSEXEC 1 "May 2023" "mod_qos utilities 11.74" "qsexec man page
|
||||
|
||||
.SH NAME
|
||||
qsexec \- parses the data received via stdin and executes the defined command on a pattern match.
|
||||
|
||||
.SH SYNOPSIS
|
||||
qsexec \-e <pattern> [\-t <number>:<sec>] [\-c <pattern> [<command string>]] [\-p] [\-u <user>] <command string>
|
||||
.SH DESCRIPTION
|
||||
qsexec reads log lines from stdin and searches for the defined pattern. It executes the defined command string on pattern match.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-e <pattern>
|
||||
Specifies the search pattern causing an event which shall trigger the command.
|
||||
.TP
|
||||
\-t <number>:<sec>
|
||||
Defines the number of pattern match within the the defined number of seconds in order to trigger the command execution. By default, every pattern match causes a command execution.
|
||||
.TP
|
||||
\-c <pattern> [<command string>]
|
||||
Pattern which clears the event counter. Executes optionally a command if an event command has been executed before.
|
||||
.TP
|
||||
\-p
|
||||
Writes data also to stdout (for piped logging).
|
||||
.TP
|
||||
\-u <name>
|
||||
Become another user, e.g. www\-data.
|
||||
.TP
|
||||
<command string>
|
||||
Defines the event command string where $0\-$9 are substituted by the submatches of the regular expression.
|
||||
.SH EXAMPLE
|
||||
Executes the deny.sh script providing the IP address of the client causing a mod_qos(031) messages whenever the log message appears 10 times within at most one minute:
|
||||
ErrorLog "|/usr/bin/qsexec \-e \\'mod_qos\\(031\\).*, c=([0\-9a\-zA\-Z:.]*)\\' \-t 10:60 \\'/usr/local/bin/deny.sh $1\\'"
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
99
tools/man1/qsfilter2.1
Normal file
|
@ -0,0 +1,99 @@
|
|||
.TH QSFILTER2 1 "May 2023" "mod_qos utilities 11.74" "qsfilter2 man page"
|
||||
|
||||
.SH NAME
|
||||
qsfilter2 \- an utility to generate mod_qos request line rules out from existing access/audit log data.
|
||||
.SH SYNOPSIS
|
||||
qsfilter2 \-i <path> [\-c <path>] [\-d <num>] [\-h] [\-b <num>] [\-p|\-s|\-m|\-o] [\-l <len>] [\-n] [\-e] [\-u 'uni'] [\-k <prefix>] [\-t] [\-f <path>] [\-v 0|1|2]
|
||||
.SH DESCRIPTION
|
||||
mod_qos implements a request filter which validates each request line. The module supports both, negative and positive security model. The QS_Deny* directives are used to specify request line patterns which are not allowed to access the server (negative security model / deny list). These rules are used to restrict access to certain resources which should not be available to users or to protect the server from malicious patterns. The QS_Permit* rules implement a positive security model (allow list). These directives are used to define allowed request line patterns. Request which do not match any of these patterns are not allowed to access the server.
|
||||
|
||||
qsfilter2 is an audit log analyzer used to generate filter rules (perl compatible regular expressions) which may be used by mod_qos to deny access for suspect requests (QS_PermitUri rules). It parses existing audit log files in order to generate request patterns covering all allowed requests.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-i <path>
|
||||
Input file containing request URIs. The URIs for this file have to be extracted from the servers access logs. Each line of the input file contains a request URI consisting of a path and and query.
|
||||
Example:
|
||||
/aaa/index.do
|
||||
/aaa/edit?image=1.jpg
|
||||
/aaa/image/1.jpg
|
||||
/aaa/view?page=1
|
||||
/aaa/edit?document=1
|
||||
|
||||
These access log data must include current request URIs but also request lines from previous rule generation steps. It must also include request lines which cover manually generated rules. You may use the 'qos\-path' and 'qos\-query' variables to create an audit log containing all request data (path and query/body data). Example: 'CustomLog audit_log %{qos\-path}n%{qos\-query}n'. See also http://mod\-qos.sourceforge.net#qsfiltersample about the module settings.
|
||||
.TP
|
||||
\-c <path>
|
||||
mod_qos configuration file defining QS_DenyRequestLine and QS_PermitUri directives. qsfilter2 generates rules from access log data automatically. Manually generated rules (QS_PermitUri) may be provided from this file. Note: each manual rule must be represented by a request URI in the input data (\-i) in order to make sure not to be deleted by the rule optimisation algorithm. QS_Deny* rules from this file are used to filter request lines which should not be used for allow list rule generation.
|
||||
Example:
|
||||
# manually defined allow list rule:
|
||||
QS_PermitUri +view deny "^[/a\-zA\-Z0\-9]+/view\\?(page=[0\-9]+)?$"
|
||||
# filter unwanted request line patterns:
|
||||
QS_DenyRequestLine +printable deny ".*[\\x00\-\\x19].*"
|
||||
|
||||
|
||||
.TP
|
||||
\-d <num>
|
||||
Depth (sub locations) of the path string which is defined as a literal string. Default is 1.
|
||||
.TP
|
||||
\-h
|
||||
Always use a string representing the handler name in the path even the url does not have a query. See also \-d option.
|
||||
.TP
|
||||
\-b <num>
|
||||
Replaces url pattern by the regular expression when detecting a base64/hex encoded string. Detecting sensibility is defined by a numeric value. You should use values higher than 5 (default) or 0 to disable this function.
|
||||
.TP
|
||||
\-p
|
||||
Represents query by pcre only (no literal strings).
|
||||
.TP
|
||||
\-s
|
||||
Uses one single pcre for the whole query string.
|
||||
.TP
|
||||
\-m
|
||||
Uses one pcre for multiple query values (recommended mode).
|
||||
.TP
|
||||
\-o
|
||||
Does not care the order of query parameters.
|
||||
.TP
|
||||
\-l <len>
|
||||
Outsizes the query length by the defined length ({0,size+len}), default is 10.
|
||||
.TP
|
||||
\-n
|
||||
Disables redundant rules elimination.
|
||||
.TP
|
||||
\-e
|
||||
Exit on error.
|
||||
.TP
|
||||
\-u 'uni'
|
||||
Enables additional decoding methods. Use the same settings as you have used for the QS_Decoding directive.
|
||||
.TP
|
||||
\-k <prefix>
|
||||
Prefix used to generate rule identifiers (QSF by default).
|
||||
.TP
|
||||
\-t
|
||||
Calculates the maximal latency per request (worst case) using the generated rules.
|
||||
.TP
|
||||
\-f <path>
|
||||
Filters the input by the provided path (prefix) only processing matching lines.
|
||||
.TP
|
||||
\-v <level>
|
||||
Verbose mode. (0=silent, 1=rule source, 2=detailed). Default is 1. Don't use rules you haven't checked the request data used to generate it! Level 1 is highly recommended (as long as you don't have created the log data using your own web crawler).
|
||||
.SH OUTPUT
|
||||
The output of qsfilter2 is written to stdout. The output contains the generated QS_PermitUri directives but also information about the source which has been used to generate these rules. It is very important to check the validity of each request line which has been used to calculate the QS_PermitUri rules. Each request line which has been used to generate a new rule is shown in the output prefixed by "ADD line <line number>:". These request lines should be stored and reused at any later rule generation (add them to the URI input file). The subsequent line shows the generated rule. At the end of data processing a list of all generated QS_PermitUri rules is shown. These directives may be used withn the configuration file used by mod_qos.
|
||||
.SH EXAMPLE
|
||||
qsfilter2 \-i loc.txt \-c httpd.conf \-m \-e
|
||||
...
|
||||
# ADD line 1: /aaa/index.do
|
||||
# 003 ^(/[a\-zA\-Z0\-9\\\-_]+)+[/]?\\.?[a\-zA\-Z]{0,4}$
|
||||
# ADD line 3: /aaa/view?page=1
|
||||
# \-\-\- ^[/a\-zA\-Z0\-9]+/view\\?(page=[0\-9]+)?$
|
||||
# ADD line 4: /aaa/edit?document=1
|
||||
# 004 ^[/a\-zA\-Z]+/edit\\?((document)(=[0\-9]*)*[&]?)*$
|
||||
# ADD line 5: /aaa/edit?image=1.jpg
|
||||
# 005 ^[/a\-zA\-Z]+/edit\\?((image)(=[0\-9\\.a\-zA\-Z]*)*[&]?)*$
|
||||
...
|
||||
QS_PermitUri +QSF001 deny "^[/a\-zA\-Z]+/edit\\?((document|image)(=[0\-9\\.a\-zA\-Z]*)*[&]?)*$"
|
||||
QS_PermitUri +QSF002 deny "^[/a\-zA\-Z0\-9]+/view\\?(page=[0\-9]+)?$"
|
||||
QS_PermitUri +QSF003 deny "^(/[a\-zA\-Z0\-9\\\-_]+)+[/]?\\.?[a\-zA\-Z]{0,4}$"
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
39
tools/man1/qsgeo.1
Normal file
|
@ -0,0 +1,39 @@
|
|||
.TH QSGEO 1 "May 2023" "mod_qos utilities 11.74" "qsgeo man page"
|
||||
|
||||
.SH NAME
|
||||
qsgeo \- an utility to lookup a client's country code.
|
||||
.SH SYNOPSIS
|
||||
qsgeo \-d <path> [\-l] [\-s] [\-ip <ip>]
|
||||
.SH DESCRIPTION
|
||||
Use this utility to resolve the country codes of IP addresses within existing log files. The utility reads the log file data from stdin and writes them, with the injected country code, to stdout.
|
||||
.SH OPTIONS
|
||||
|
||||
.TP
|
||||
\-d <path>
|
||||
Specifies the path to the geographical database files (CSV file containing IP address ranges and country codes).
|
||||
.TP
|
||||
\-s
|
||||
Writes a summary of the requests per country only.
|
||||
.TP
|
||||
\-l
|
||||
Writes the database to stdout (ignoring stdin) inserting local (127.*) and private (10.*, 172.16*, 192.168.*) network addresses.
|
||||
.TP
|
||||
\-ip <ip>
|
||||
Resolves a single IP address instead of processing a log file.
|
||||
.SH EXAMPLE
|
||||
Reading the file access.log and adding the country code to the IP address field:
|
||||
|
||||
cat access.log | qsgeo \-d GeoIPCountryWhois.csv
|
||||
|
||||
Reading the file access.log and showing a summary only:
|
||||
|
||||
cat access.log | qsgeo \-d GeoIPCountryWhois.csv \-s
|
||||
|
||||
Resolving a single IP address:
|
||||
|
||||
qsgeo \-d GeoIPCountryWhois.csv \-ip 192.84.12.23
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
28
tools/man1/qsgrep.1
Normal file
|
@ -0,0 +1,28 @@
|
|||
.TH QSGREP 1 "May 2023" "mod_qos utilities 11.74" "qsgrep man page"
|
||||
|
||||
.SH NAME
|
||||
qsgrep \- prints matching patterns within a file.
|
||||
.SH SYNOPSIS
|
||||
qsgrep \-e <pattern> \-o <sub string> [<path>]
|
||||
.SH DESCRIPTION
|
||||
qsgrep is a simple tool to search patterns within files. It uses regular expressions to find patterns and prints the submatches within a pre\-defined format string.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-e <pattern>
|
||||
Specifies the search pattern.
|
||||
.TP
|
||||
\-o <string>
|
||||
Defines the output string where $0\-$9 are substituted by the submatches of the regular expression.
|
||||
.TP
|
||||
<path>
|
||||
Defines the input file to process. qsgrep reads from from standard input if this parameter is omitted.
|
||||
|
||||
.SH EXAMPLE
|
||||
Shows the IP addresses of clients causing mod_qos(031) messages):
|
||||
|
||||
qsgrep \-e 'mod_qos\\(031\\).*, c=([a\-zA\-Z0\-9:.]*)' \-o 'ip=$1' error_log
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
16
tools/man1/qshead.1
Normal file
|
@ -0,0 +1,16 @@
|
|||
.TH QSHEAD 1 "May 2023" "mod_qos utilities 11.74" "qshead man page"
|
||||
|
||||
.SH NAME
|
||||
qshead \- an utility reading from stdin and printing all lines to stdout until reaching the defined pattern.
|
||||
.SH SYNOPSIS
|
||||
qshead \-p <pattern>
|
||||
.SH DESCRIPTION
|
||||
qshead reads lines from stdin and prints them to stdout until a line contains the specified pattern (literal string).
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-p <pattern>
|
||||
Search pattern (literal string).
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1) qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
109
tools/man1/qslog.1
Normal file
|
@ -0,0 +1,109 @@
|
|||
.TH QSLOG 1 "May 2023" "mod_qos utilities 11.74" "qslog man page"
|
||||
|
||||
.SH NAME
|
||||
qslog \- collects request statistics from access log data.
|
||||
.SH SYNOPSIS
|
||||
qslog \-f <format_string> \-o <out_file> [\-p[c|u[c]] [\-v]] [\-x [<num>]] [\-u <name>] [\-m] [\-c <path>]
|
||||
.SH DESCRIPTION
|
||||
qslog is a real time access log analyzer. It collects the data from stdin. The output is written to the specified file every minute and includes the following entries:
|
||||
\- requests per second (r/s)
|
||||
\- number of requests within measured time (req)
|
||||
\- bytes sent to the client per second (b/s)
|
||||
\- bytes received from the client per second (ib/s)
|
||||
\- response status codes within the last minute (1xx,2xx,3xx,4xx,5xx)
|
||||
\- average response duration (av)
|
||||
\- average response duration in milliseconds (avms)
|
||||
\- distribution of response durations in seconds within the last minute
|
||||
(<1s,1s,2s,3s,4s,5s,>5s)
|
||||
\- distribution of response durations faster than a second within the last minute
|
||||
(0\-49ms,50\-99ms,100\-499ms,500\-999ms)
|
||||
\- number of established (new) connections within the measured time (esco)
|
||||
\- average system load (sl)
|
||||
\- free memory (m) (not available for all platforms)
|
||||
\- number of client ip addresses seen withn the last 600 seconds (ip)
|
||||
\- number of different users seen withn the last 600 seconds (usr)
|
||||
\- number of events identified by the 'E' format character
|
||||
\- number of mod_qos events within the last minute (qV=create session,
|
||||
qv=VIP IP,qS=session pass, qD=access denied, qK=connection closed, qT=dynamic keep\-alive, qL=request/response slow down, qs=serialized request, qA=connection abort, qU=new user tracking cookie)
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-f <format_string>
|
||||
Defines the log data format and the positions of data elements processed by this utility. See to the 'LogFormat' directive of the httpd.conf file to see the format definitions of the servers access log data.
|
||||
qslog knows the following elements:
|
||||
I defines the client ip address (%h)
|
||||
R defines the request line (%r)
|
||||
S defines HTTP response status code (%s)
|
||||
B defines the transferred bytes (%b or %O)
|
||||
i defines the received bytes (%I)
|
||||
D defines the request duration in microseconds (%D)
|
||||
t defines the request duration in milliseconds (may be used instead of D)
|
||||
T defines the request duration in seconds (may be used instead of D or t) (%T)
|
||||
k defines the number of keepalive requests on the connection (%k)
|
||||
U defines the user tracking id (%{mod_qos_user_id}e)
|
||||
Q defines the mod_qos_ev event message (%{mod_qos_ev}e)
|
||||
C defines the element for the detailed log (\-c option), e.g. "%U"
|
||||
s arbitrary counter to add up (sum within a minute)
|
||||
a arbitrary counter to build an average from (average per request)
|
||||
A arbitrary counter to build an average from (average per request)
|
||||
M arbitrary counter to measure the maximum value reached (peak)
|
||||
E comma separated list of event strings
|
||||
c content type (%{content\-type}o), available in \-pc mode only
|
||||
m request method (GET/POST) (%m), available in \-pc mode only
|
||||
. defines an element to ignore (unknown string)
|
||||
|
||||
.TP
|
||||
\-o <out_file>
|
||||
Specifies the file to store the output to. stdout is used if this option is not defined.
|
||||
.TP
|
||||
\-p
|
||||
Used for post processing when reading the log data from a file (cat/pipe). qslog is started using it's offline mode (extracting the time stamps from the log lines) in order to process existing log files. The option "\-pc" may be used alternatively if you want to gather request information per client (identified by IP address (I) or user tracking id (U) showing how many request each client has performed within the captured period of time). "\-pc" supports the format characters IURSBTtDkMEcm. The option "\-pu" collects statistics on a per URL level (supports format characters RSTtD). "\-puc" is very similar to "\-pu" but cuts the end (handler) of each URL.
|
||||
.TP
|
||||
\-v
|
||||
Verbose mode.
|
||||
.TP
|
||||
\-x [<num>]
|
||||
Rotates the output file once a day (move). You may specify the number of rotated files to keep. Default are 14.
|
||||
.TP
|
||||
\-u <name>
|
||||
Becomes another user, e.g. www\-data.
|
||||
.TP
|
||||
\-m
|
||||
Calculates free system memory every minute.
|
||||
.TP
|
||||
\-c <path>
|
||||
Enables the collection of log statistics for different request types. 'path' specifies the necessary rule file. Each rule consists of a rule identifier and a regular expression to identify a request seprarated by a colon, e.g., 01:^(/a)|(/c). The regular expressions are matched against the log data element which has been identified by the 'C' format character.
|
||||
.SH VARIABLES
|
||||
The following environment variables are known to qslog:
|
||||
.TP
|
||||
QSEVENTPATH=<path>
|
||||
Defines a file containing a comma or new line separated list of known event strings expected within the log filed identified by the 'E' format character.
|
||||
.TP
|
||||
QSCOUNTERPATH=<path>
|
||||
Defines a file containing a by new line separated list of rules which reflect possible QS_ClientEventLimitCount directive settings (for simulation purpose / \-pc option). The 'E' format character defines the event string in the log to match (literal string) the 'event1' and 'event2' event names against.
|
||||
|
||||
Rule syntax: <name>:<event1>\-<n>*<event2>/<duration>=<limit>
|
||||
'name' defines the name you have given to the rule entry and is logged along with
|
||||
with the number of times the 'limit' has been reached within the 'duration'.
|
||||
'event1' defines the variable name (if found in 'E') to increment the counter.
|
||||
'event2' defines the variable name (if found in 'E') to decrement the counter (and
|
||||
the parameter 'n' defines by how much).
|
||||
'duration' defines the measure interval (in seconds) used for the
|
||||
QS_ClientEventLimitCount directive.
|
||||
'limit' defines the threshold (number) defined for the QS_ClientEventLimitCount
|
||||
directive.
|
||||
|
||||
Note: If the 'name' parameter is prefixed by 'STATUS', the rule is applied against the HTTP status code 'S' and the 'event1' string shall contain a list of relevant status codes separated by an underscore (while 'event2' is ignored).
|
||||
.SH EXAMPLE
|
||||
Configuration using pipped logging:
|
||||
|
||||
CustomLog "|/usr/bin/qslog \-f ISBDQ \-x \-o /var/log/apache/stat.csv" "%h %>s %b %D %{mod_qos_ev}e"
|
||||
|
||||
Post processing:
|
||||
|
||||
LogFormat "%t %h \\"%r\\" %>s %b \\"%{User\-Agent}i\\" %T"
|
||||
cat access.log | qslog \-f ..IRSB.T \-o stat.csv \-p
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
41
tools/man1/qslogger.1
Normal file
|
@ -0,0 +1,41 @@
|
|||
.TH QSLOGGER 1 "May 2023" "mod_qos utilities 11.74" "qslogger man page"
|
||||
|
||||
.SH NAME
|
||||
qslogger \- another shell command interface to the system log module (syslog).
|
||||
.SH SYNOPSIS
|
||||
qslogger [\-t <tag>] [\-f <facility>] [\-l <level>] [\-x <prefix>] [\-r <expression>] [\-d <level>] [\-u <name>] [\-p]
|
||||
.SH DESCRIPTION
|
||||
Use this utility to forward log messages to the systems syslog facility, e.g., to forward the messages to a remote host. It reads data from stdin.
|
||||
.SH OPTIONS
|
||||
|
||||
.TP
|
||||
\-t <tag>
|
||||
Defines the tag name which shall be used to define the origin of the messages, e.g. 'httpd'.
|
||||
.TP
|
||||
\-f <facility>
|
||||
Defines the syslog facility. Default is 'daemon'.
|
||||
.TP
|
||||
\-u <name>
|
||||
Becomes another user, e.g. www\-data.
|
||||
.TP
|
||||
\-l <level>
|
||||
Defines the minimal severity a message must have in order to be forwarded. Default is 'DEBUG' (forwarding everything).
|
||||
.TP
|
||||
\-x <prefix>
|
||||
Allows you to add a prefix (literal string) to every message.
|
||||
.TP
|
||||
\-r <expression>
|
||||
Specifies a regular expression which shall be used to determine the severity (syslog level) for each log line. The default pattern '^\\[[0\-9a\-zA\-Z :]+\\] \\[([a\-z]+)\\] ' can be used for Apache error log messages but you may configure your own pattern matching other log formats. Use brackets to define the pattern enclosing the severity string. Default level (if severity can't be determined) is defined by the option '\-d' (see below).
|
||||
.TP
|
||||
\-d <level>
|
||||
The default severity if the specified pattern (\-r) does not match and the message's severity can't be determined. Default is 'NOTICE'.
|
||||
.TP
|
||||
\-p
|
||||
Writes data also to stdout (for piped logging).
|
||||
.SH EXAMPLE
|
||||
ErrorLog "|/usr/bin/qslogger \-t apache \-f local7"
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
22
tools/man1/qspng.1
Normal file
|
@ -0,0 +1,22 @@
|
|||
.TH QSPNG 1 "May 2023" "mod_qos utilities 11.74" "qspng man page"
|
||||
|
||||
.SH NAME
|
||||
qspng \- an utility to draw a png graph from qslog(1) output data.
|
||||
.SH SYNOPSIS
|
||||
qspng \-i <stat_log_file> \-p <parameter> \-o <out_file> [\-10]
|
||||
.SH DESCRIPTION
|
||||
qspng is a tool to generate png (portable network graphics) raster images files from semicolon separated data generated by the qslog utility. It reads up to the first 1440 entries (24 hours) and prints a graph using the values defined by the 'parameter' name.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-i <stats_log_file>
|
||||
Input file to read data from.
|
||||
.TP
|
||||
\-p <parameter>
|
||||
Parameter name, e.g. r/s or usr.
|
||||
.TP
|
||||
\-o <out_file>
|
||||
Output file name, e.g. stat.png.
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslogger(1), qslog(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
19
tools/man1/qsre.1
Normal file
|
@ -0,0 +1,19 @@
|
|||
.TH QSRE 1 "May 2023" "mod_qos utilities 11.74" "qsre man page"
|
||||
|
||||
.SH NAME
|
||||
qsre matches a regular expression against test strings.
|
||||
.SH SYNOPSIS
|
||||
qsre <string>|<path> <pcre>|<path>
|
||||
.SH DESCRIPTION
|
||||
Regular expression test tool. The provided regular expression (pcre, caseless matching, "." matches anything incl. newline) is appplied against the provided test strings to verify if the pattern matches.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
<string>|<path>
|
||||
The first argument either defines a single test string of a path to a file containing either multiple test strings or a test pattern with newline characters (text).
|
||||
.TP
|
||||
<pcre>|<path>
|
||||
The second argument either defines a regular expression or a path to a file containing the expression.
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
16
tools/man1/qsrespeed.1
Normal file
|
@ -0,0 +1,16 @@
|
|||
.TH QSRESPEED 1 "May 2023" "mod_qos utilities 11.74" "qsrespeed man page"
|
||||
|
||||
.SH NAME
|
||||
Tool to compare / estimate the processing time for (Perl\-compatible) regular expressions (PCRE).
|
||||
.SH SYNOPSIS
|
||||
qsrespeed <path>
|
||||
.SH DESCRIPTION
|
||||
qsrespeed loads regular expressions from the provided file and matches them against a built\-in set of strings measuring the time needed to process them. It's a benchmark too to judge the expressions you have defined regarding the potential CPU consumption.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
<path>
|
||||
Defines the input file to process. The file consists a list of (separated by a newline character) regular expressions to test
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrotate(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
50
tools/man1/qsrotate.1
Normal file
|
@ -0,0 +1,50 @@
|
|||
.TH QSROTATE 1 "May 2023" "mod_qos utilities 11.74" "qsrotate man page"
|
||||
|
||||
.SH NAME
|
||||
qsrotate \- a log rotation tool (similar to Apache's rotatelogs).
|
||||
.SH SYNOPSIS
|
||||
qsrotate \-o <file> [\-s <sec> [\-t <hours>]] [\-b <bytes>] [\-f] [\-z] [\-g <num>] [\-u <name>] [\-m <mask>] [\-p] [\-d]
|
||||
.SH DESCRIPTION
|
||||
qsrotate reads from stdin (piped log) and writes the data to the provided file rotating the file after the specified time.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-o <file>
|
||||
Output log file to write the data to (use an absolute path).
|
||||
.TP
|
||||
\-s <sec>
|
||||
Rotation interval in seconds, default are 86400 seconds.
|
||||
.TP
|
||||
\-t <hours>
|
||||
Offset to UTC (enables also DST support), default is 0.
|
||||
.TP
|
||||
\-b <bytes>
|
||||
File size limitation (default/max. are 2147352576 bytes, min. are 1048576 bytes).
|
||||
.TP
|
||||
\-f
|
||||
Forced log rotation at the specified interval even no data is written.
|
||||
.TP
|
||||
\-z
|
||||
Compress (gzip) the rotated file.
|
||||
.TP
|
||||
\-g <num>
|
||||
Generations (number of files to keep).
|
||||
.TP
|
||||
\-u <name>
|
||||
Become another user, e.g. www\-data. \-m <mask>
|
||||
File permission which is either 600, 640, 660 (default) or 664.
|
||||
.TP
|
||||
\-p
|
||||
Writes data also to stdout (for piped logging). \-d
|
||||
Line\-by\-line data reading prefixing every line with a timestamp.
|
||||
.SH EXAMPLE
|
||||
TransferLog "|/usr/bin/qsrotate \-f \-z \-g 3 \-o /var/log/apache/access.log \-s 86400"
|
||||
|
||||
The name of the rotated file will be /dest/filee.YYYYmmddHHMMSS where YYYYmmddHHMMSS is the system time at which the data has been rotated.
|
||||
.SH NOTE
|
||||
\- Each qsrotate instance must use an individual file.
|
||||
\- You may trigger a file rotation manually by sending the signal USR1
|
||||
to the process.
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qsre(1), qsrespeed(1), qspng(1), qssign(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
44
tools/man1/qssign.1
Normal file
|
@ -0,0 +1,44 @@
|
|||
.TH QSSIGN 1 "May 2023" "mod_qos utilities 11.74" "qssign man page"
|
||||
|
||||
.SH NAME
|
||||
qssign \- an utility to sign and verify the integrity of log data.
|
||||
.SH SYNOPSIS
|
||||
qssign \-s|S <secret> [\-e] [\-v] [\-u <name>] [\-f <regex>] [\-a 'sha1'|'sha256']
|
||||
.SH DESCRIPTION
|
||||
qssign is a log data integrity check tool. It reads log data from stdin (pipe) and writes the data to stdout adding a sequence number and signature to ever log line.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-s <secret>
|
||||
Passphrase used to calculate signature.
|
||||
.TP
|
||||
\-S <program>
|
||||
Specifies a program which writes the passphrase to stdout.
|
||||
.TP
|
||||
\-e
|
||||
Writes start/end marker when starting/stopping data signing.
|
||||
.TP
|
||||
\-v
|
||||
Verification mode checking the integrity of signed data.
|
||||
.TP
|
||||
\-u <name>
|
||||
Becomes another user, e.g. www\-data.
|
||||
.TP
|
||||
\-f <regex>
|
||||
Filter pattern (case sensitive regular expression) for messages which do not need to be signed.
|
||||
.TP
|
||||
\-a 'sha1'|'sha256'
|
||||
Specifies the algorithm to use. Default is sha1.
|
||||
.SH EXAMPLE
|
||||
Sign:
|
||||
|
||||
TransferLog "|/usr/bin/qssign \-s password \-e |/usr/bin/qsrotate \-o /var/log/apache/access.log"
|
||||
|
||||
|
||||
Verify:
|
||||
|
||||
cat access.log | qssign \-s password \-v
|
||||
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qstail(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
19
tools/man1/qstail.1
Normal file
|
@ -0,0 +1,19 @@
|
|||
.TH QSTAIL 1 "May 2023" "mod_qos utilities 11.74" "qstail man page"
|
||||
|
||||
.SH NAME
|
||||
qstail \- an utility printing the end of a log file starting at the specified pattern.
|
||||
.SH SYNOPSIS
|
||||
qstail \-i <path> \-p <pattern>
|
||||
.SH DESCRIPTION
|
||||
qstail shows the end of a log file beginning with the line containing the specified pattern. This may be used to show all lines which has been written after a certain event (e.g., server restart) or time stamp.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
\-i <path>
|
||||
Input file to read the data from.
|
||||
.TP
|
||||
\-p <pattern>
|
||||
Search pattern (literal string).
|
||||
.SH SEE ALSO
|
||||
qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1)
|
||||
.SH AUTHOR
|
||||
Pascal Buchbinder, http://mod-qos.sourceforge.net/
|
215
tools/missing
Executable file
|
@ -0,0 +1,215 @@
|
|||
#! /bin/sh
|
||||
# Common wrapper for a few potentially missing GNU programs.
|
||||
|
||||
scriptversion=2013-10-28.13; # UTC
|
||||
|
||||
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
|
||||
# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
if test $# -eq 0; then
|
||||
echo 1>&2 "Try '$0 --help' for more information"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case $1 in
|
||||
|
||||
--is-lightweight)
|
||||
# Used by our autoconf macros to check whether the available missing
|
||||
# script is modern enough.
|
||||
exit 0
|
||||
;;
|
||||
|
||||
--run)
|
||||
# Back-compat with the calling convention used by older automake.
|
||||
shift
|
||||
;;
|
||||
|
||||
-h|--h|--he|--hel|--help)
|
||||
echo "\
|
||||
$0 [OPTION]... PROGRAM [ARGUMENT]...
|
||||
|
||||
Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
|
||||
to PROGRAM being missing or too old.
|
||||
|
||||
Options:
|
||||
-h, --help display this help and exit
|
||||
-v, --version output version information and exit
|
||||
|
||||
Supported PROGRAM values:
|
||||
aclocal autoconf autoheader autom4te automake makeinfo
|
||||
bison yacc flex lex help2man
|
||||
|
||||
Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
|
||||
'g' are ignored when checking the name.
|
||||
|
||||
Send bug reports to <bug-automake@gnu.org>."
|
||||
exit $?
|
||||
;;
|
||||
|
||||
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
||||
echo "missing $scriptversion (GNU Automake)"
|
||||
exit $?
|
||||
;;
|
||||
|
||||
-*)
|
||||
echo 1>&2 "$0: unknown '$1' option"
|
||||
echo 1>&2 "Try '$0 --help' for more information"
|
||||
exit 1
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
# Run the given program, remember its exit status.
|
||||
"$@"; st=$?
|
||||
|
||||
# If it succeeded, we are done.
|
||||
test $st -eq 0 && exit 0
|
||||
|
||||
# Also exit now if we it failed (or wasn't found), and '--version' was
|
||||
# passed; such an option is passed most likely to detect whether the
|
||||
# program is present and works.
|
||||
case $2 in --version|--help) exit $st;; esac
|
||||
|
||||
# Exit code 63 means version mismatch. This often happens when the user
|
||||
# tries to use an ancient version of a tool on a file that requires a
|
||||
# minimum version.
|
||||
if test $st -eq 63; then
|
||||
msg="probably too old"
|
||||
elif test $st -eq 127; then
|
||||
# Program was missing.
|
||||
msg="missing on your system"
|
||||
else
|
||||
# Program was found and executed, but failed. Give up.
|
||||
exit $st
|
||||
fi
|
||||
|
||||
perl_URL=http://www.perl.org/
|
||||
flex_URL=http://flex.sourceforge.net/
|
||||
gnu_software_URL=http://www.gnu.org/software
|
||||
|
||||
program_details ()
|
||||
{
|
||||
case $1 in
|
||||
aclocal|automake)
|
||||
echo "The '$1' program is part of the GNU Automake package:"
|
||||
echo "<$gnu_software_URL/automake>"
|
||||
echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
|
||||
echo "<$gnu_software_URL/autoconf>"
|
||||
echo "<$gnu_software_URL/m4/>"
|
||||
echo "<$perl_URL>"
|
||||
;;
|
||||
autoconf|autom4te|autoheader)
|
||||
echo "The '$1' program is part of the GNU Autoconf package:"
|
||||
echo "<$gnu_software_URL/autoconf/>"
|
||||
echo "It also requires GNU m4 and Perl in order to run:"
|
||||
echo "<$gnu_software_URL/m4/>"
|
||||
echo "<$perl_URL>"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
give_advice ()
|
||||
{
|
||||
# Normalize program name to check for.
|
||||
normalized_program=`echo "$1" | sed '
|
||||
s/^gnu-//; t
|
||||
s/^gnu//; t
|
||||
s/^g//; t'`
|
||||
|
||||
printf '%s\n' "'$1' is $msg."
|
||||
|
||||
configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
|
||||
case $normalized_program in
|
||||
autoconf*)
|
||||
echo "You should only need it if you modified 'configure.ac',"
|
||||
echo "or m4 files included by it."
|
||||
program_details 'autoconf'
|
||||
;;
|
||||
autoheader*)
|
||||
echo "You should only need it if you modified 'acconfig.h' or"
|
||||
echo "$configure_deps."
|
||||
program_details 'autoheader'
|
||||
;;
|
||||
automake*)
|
||||
echo "You should only need it if you modified 'Makefile.am' or"
|
||||
echo "$configure_deps."
|
||||
program_details 'automake'
|
||||
;;
|
||||
aclocal*)
|
||||
echo "You should only need it if you modified 'acinclude.m4' or"
|
||||
echo "$configure_deps."
|
||||
program_details 'aclocal'
|
||||
;;
|
||||
autom4te*)
|
||||
echo "You might have modified some maintainer files that require"
|
||||
echo "the 'autom4te' program to be rebuilt."
|
||||
program_details 'autom4te'
|
||||
;;
|
||||
bison*|yacc*)
|
||||
echo "You should only need it if you modified a '.y' file."
|
||||
echo "You may want to install the GNU Bison package:"
|
||||
echo "<$gnu_software_URL/bison/>"
|
||||
;;
|
||||
lex*|flex*)
|
||||
echo "You should only need it if you modified a '.l' file."
|
||||
echo "You may want to install the Fast Lexical Analyzer package:"
|
||||
echo "<$flex_URL>"
|
||||
;;
|
||||
help2man*)
|
||||
echo "You should only need it if you modified a dependency" \
|
||||
"of a man page."
|
||||
echo "You may want to install the GNU Help2man package:"
|
||||
echo "<$gnu_software_URL/help2man/>"
|
||||
;;
|
||||
makeinfo*)
|
||||
echo "You should only need it if you modified a '.texi' file, or"
|
||||
echo "any other file indirectly affecting the aspect of the manual."
|
||||
echo "You might want to install the Texinfo package:"
|
||||
echo "<$gnu_software_URL/texinfo/>"
|
||||
echo "The spurious makeinfo call might also be the consequence of"
|
||||
echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
|
||||
echo "want to install GNU make:"
|
||||
echo "<$gnu_software_URL/make/>"
|
||||
;;
|
||||
*)
|
||||
echo "You might have modified some files without having the proper"
|
||||
echo "tools for further handling them. Check the 'README' file, it"
|
||||
echo "often tells you about the needed prerequisites for installing"
|
||||
echo "this package. You may also peek at any GNU archive site, in"
|
||||
echo "case some other package contains this missing '$1' program."
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
give_advice "$1" | sed -e '1s/^/WARNING: /' \
|
||||
-e '2,$s/^/ /' >&2
|
||||
|
||||
# Propagate the correct exit status (expected to be 127 for a program
|
||||
# not found, 63 for a program that failed due to version mismatch).
|
||||
exit $st
|
||||
|
||||
# Local variables:
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
49
tools/src/Makefile.am
Normal file
|
@ -0,0 +1,49 @@
|
|||
# $Id: Makefile.am 2486 2018-09-03 20:22:17Z pbuchbinder $
|
||||
|
||||
bin_PROGRAMS=qsfilter2 qslog qspng qsrotate qssign qstail qshead qsgrep qsexec qscheck qsgeo qslogger qsdt qsrespeed qsre
|
||||
|
||||
qsfilter2_SOURCES= \
|
||||
qsfilter2.c qs_util.c
|
||||
|
||||
qslog_SOURCES= \
|
||||
qslog.c qs_util.c
|
||||
|
||||
qspng_SOURCES= \
|
||||
qspng.c qs_util.c
|
||||
|
||||
qsrotate_SOURCES= \
|
||||
qsrotate.c qs_util.c
|
||||
|
||||
qssign_SOURCES= \
|
||||
qssign.c qs_util.c qs_apo.c
|
||||
|
||||
qstail_SOURCES= \
|
||||
qstail.c qs_util.c
|
||||
|
||||
qshead_SOURCES= \
|
||||
qshead.c qs_util.c
|
||||
|
||||
qsgrep_SOURCES= \
|
||||
qsgrep.c qs_util.c
|
||||
|
||||
qsexec_SOURCES= \
|
||||
qsexec.c qs_util.c
|
||||
|
||||
qscheck_SOURCES= \
|
||||
qscheck.c qs_util.c
|
||||
|
||||
qsgeo_SOURCES= \
|
||||
qsgeo.c qs_util.c
|
||||
|
||||
qslogger_SOURCES= \
|
||||
qslogger.c qs_util.c
|
||||
|
||||
qsdt_SOURCES= \
|
||||
qsdt.c qs_util.c
|
||||
|
||||
qsrespeed_SOURCES= \
|
||||
qsrespeed.c qs_util.c
|
||||
|
||||
qsre_SOURCES= \
|
||||
qsre.c qs_util.c
|
||||
|
734
tools/src/Makefile.in
Normal file
|
@ -0,0 +1,734 @@
|
|||
# Makefile.in generated by automake 1.15 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
# $Id: Makefile.am 2486 2018-09-03 20:22:17Z pbuchbinder $
|
||||
|
||||
VPATH = @srcdir@
|
||||
am__is_gnu_make = { \
|
||||
if test -z '$(MAKELEVEL)'; then \
|
||||
false; \
|
||||
elif test -n '$(MAKE_HOST)'; then \
|
||||
true; \
|
||||
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
||||
true; \
|
||||
else \
|
||||
false; \
|
||||
fi; \
|
||||
}
|
||||
am__make_running_with_option = \
|
||||
case $${target_option-} in \
|
||||
?) ;; \
|
||||
*) echo "am__make_running_with_option: internal error: invalid" \
|
||||
"target option '$${target_option-}' specified" >&2; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
has_opt=no; \
|
||||
sane_makeflags=$$MAKEFLAGS; \
|
||||
if $(am__is_gnu_make); then \
|
||||
sane_makeflags=$$MFLAGS; \
|
||||
else \
|
||||
case $$MAKEFLAGS in \
|
||||
*\\[\ \ ]*) \
|
||||
bs=\\; \
|
||||
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
||||
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
||||
esac; \
|
||||
fi; \
|
||||
skip_next=no; \
|
||||
strip_trailopt () \
|
||||
{ \
|
||||
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
||||
}; \
|
||||
for flg in $$sane_makeflags; do \
|
||||
test $$skip_next = yes && { skip_next=no; continue; }; \
|
||||
case $$flg in \
|
||||
*=*|--*) continue;; \
|
||||
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
||||
-*I?*) strip_trailopt 'I';; \
|
||||
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
||||
-*O?*) strip_trailopt 'O';; \
|
||||
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
||||
-*l?*) strip_trailopt 'l';; \
|
||||
-[dEDm]) skip_next=yes;; \
|
||||
-[JT]) skip_next=yes;; \
|
||||
esac; \
|
||||
case $$flg in \
|
||||
*$$target_option*) has_opt=yes; break;; \
|
||||
esac; \
|
||||
done; \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
bin_PROGRAMS = qsfilter2$(EXEEXT) qslog$(EXEEXT) qspng$(EXEEXT) \
|
||||
qsrotate$(EXEEXT) qssign$(EXEEXT) qstail$(EXEEXT) \
|
||||
qshead$(EXEEXT) qsgrep$(EXEEXT) qsexec$(EXEEXT) \
|
||||
qscheck$(EXEEXT) qsgeo$(EXEEXT) qslogger$(EXEEXT) \
|
||||
qsdt$(EXEEXT) qsrespeed$(EXEEXT) qsre$(EXEEXT)
|
||||
subdir = src
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
||||
mkinstalldirs = $(install_sh) -d
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
CONFIG_CLEAN_VPATH_FILES =
|
||||
am__installdirs = "$(DESTDIR)$(bindir)"
|
||||
PROGRAMS = $(bin_PROGRAMS)
|
||||
am_qscheck_OBJECTS = qscheck.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qscheck_OBJECTS = $(am_qscheck_OBJECTS)
|
||||
qscheck_LDADD = $(LDADD)
|
||||
am_qsdt_OBJECTS = qsdt.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsdt_OBJECTS = $(am_qsdt_OBJECTS)
|
||||
qsdt_LDADD = $(LDADD)
|
||||
am_qsexec_OBJECTS = qsexec.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsexec_OBJECTS = $(am_qsexec_OBJECTS)
|
||||
qsexec_LDADD = $(LDADD)
|
||||
am_qsfilter2_OBJECTS = qsfilter2.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsfilter2_OBJECTS = $(am_qsfilter2_OBJECTS)
|
||||
qsfilter2_LDADD = $(LDADD)
|
||||
am_qsgeo_OBJECTS = qsgeo.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsgeo_OBJECTS = $(am_qsgeo_OBJECTS)
|
||||
qsgeo_LDADD = $(LDADD)
|
||||
am_qsgrep_OBJECTS = qsgrep.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsgrep_OBJECTS = $(am_qsgrep_OBJECTS)
|
||||
qsgrep_LDADD = $(LDADD)
|
||||
am_qshead_OBJECTS = qshead.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qshead_OBJECTS = $(am_qshead_OBJECTS)
|
||||
qshead_LDADD = $(LDADD)
|
||||
am_qslog_OBJECTS = qslog.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qslog_OBJECTS = $(am_qslog_OBJECTS)
|
||||
qslog_LDADD = $(LDADD)
|
||||
am_qslogger_OBJECTS = qslogger.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qslogger_OBJECTS = $(am_qslogger_OBJECTS)
|
||||
qslogger_LDADD = $(LDADD)
|
||||
am_qspng_OBJECTS = qspng.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qspng_OBJECTS = $(am_qspng_OBJECTS)
|
||||
qspng_LDADD = $(LDADD)
|
||||
am_qsre_OBJECTS = qsre.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsre_OBJECTS = $(am_qsre_OBJECTS)
|
||||
qsre_LDADD = $(LDADD)
|
||||
am_qsrespeed_OBJECTS = qsrespeed.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsrespeed_OBJECTS = $(am_qsrespeed_OBJECTS)
|
||||
qsrespeed_LDADD = $(LDADD)
|
||||
am_qsrotate_OBJECTS = qsrotate.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qsrotate_OBJECTS = $(am_qsrotate_OBJECTS)
|
||||
qsrotate_LDADD = $(LDADD)
|
||||
am_qssign_OBJECTS = qssign.$(OBJEXT) qs_util.$(OBJEXT) \
|
||||
qs_apo.$(OBJEXT)
|
||||
qssign_OBJECTS = $(am_qssign_OBJECTS)
|
||||
qssign_LDADD = $(LDADD)
|
||||
am_qstail_OBJECTS = qstail.$(OBJEXT) qs_util.$(OBJEXT)
|
||||
qstail_OBJECTS = $(am_qstail_OBJECTS)
|
||||
qstail_LDADD = $(LDADD)
|
||||
AM_V_P = $(am__v_P_@AM_V@)
|
||||
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
||||
am__v_P_0 = false
|
||||
am__v_P_1 = :
|
||||
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
||||
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
AM_V_at = $(am__v_at_@AM_V@)
|
||||
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
am__mv = mv -f
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
AM_V_CC = $(am__v_CC_@AM_V@)
|
||||
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
||||
am__v_CC_0 = @echo " CC " $@;
|
||||
am__v_CC_1 =
|
||||
CCLD = $(CC)
|
||||
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
||||
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
||||
am__v_CCLD_0 = @echo " CCLD " $@;
|
||||
am__v_CCLD_1 =
|
||||
SOURCES = $(qscheck_SOURCES) $(qsdt_SOURCES) $(qsexec_SOURCES) \
|
||||
$(qsfilter2_SOURCES) $(qsgeo_SOURCES) $(qsgrep_SOURCES) \
|
||||
$(qshead_SOURCES) $(qslog_SOURCES) $(qslogger_SOURCES) \
|
||||
$(qspng_SOURCES) $(qsre_SOURCES) $(qsrespeed_SOURCES) \
|
||||
$(qsrotate_SOURCES) $(qssign_SOURCES) $(qstail_SOURCES)
|
||||
DIST_SOURCES = $(qscheck_SOURCES) $(qsdt_SOURCES) $(qsexec_SOURCES) \
|
||||
$(qsfilter2_SOURCES) $(qsgeo_SOURCES) $(qsgrep_SOURCES) \
|
||||
$(qshead_SOURCES) $(qslog_SOURCES) $(qslogger_SOURCES) \
|
||||
$(qspng_SOURCES) $(qsre_SOURCES) $(qsrespeed_SOURCES) \
|
||||
$(qsrotate_SOURCES) $(qssign_SOURCES) $(qstail_SOURCES)
|
||||
am__can_run_installinfo = \
|
||||
case $$AM_UPDATE_INFO_DIR in \
|
||||
n|no|NO) false;; \
|
||||
*) (install-info --version) >/dev/null 2>&1;; \
|
||||
esac
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
am__uniquify_input = $(AWK) '\
|
||||
BEGIN { nonempty = 0; } \
|
||||
{ items[$$0] = 1; nonempty = 1; } \
|
||||
END { if (nonempty) { for (i in items) print i; }; } \
|
||||
'
|
||||
# Make sure the list of sources is unique. This is necessary because,
|
||||
# e.g., the same source file might be shared among _SOURCES variables
|
||||
# for different programs/libraries.
|
||||
am__define_uniq_tagged_files = \
|
||||
list='$(am__tagged_files)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | $(am__uniquify_input)`
|
||||
ETAGS = etags
|
||||
CTAGS = ctags
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMTAR = @AMTAR@
|
||||
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
GREP = @GREP@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKDIR_P = @MKDIR_P@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
abs_builddir = @abs_builddir@
|
||||
abs_srcdir = @abs_srcdir@
|
||||
abs_top_builddir = @abs_top_builddir@
|
||||
abs_top_srcdir = @abs_top_srcdir@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
am__tar = @am__tar@
|
||||
am__untar = @am__untar@
|
||||
bindir = @bindir@
|
||||
build_alias = @build_alias@
|
||||
builddir = @builddir@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host_alias = @host_alias@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
runstatedir = @runstatedir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
qsfilter2_SOURCES = \
|
||||
qsfilter2.c qs_util.c
|
||||
|
||||
qslog_SOURCES = \
|
||||
qslog.c qs_util.c
|
||||
|
||||
qspng_SOURCES = \
|
||||
qspng.c qs_util.c
|
||||
|
||||
qsrotate_SOURCES = \
|
||||
qsrotate.c qs_util.c
|
||||
|
||||
qssign_SOURCES = \
|
||||
qssign.c qs_util.c qs_apo.c
|
||||
|
||||
qstail_SOURCES = \
|
||||
qstail.c qs_util.c
|
||||
|
||||
qshead_SOURCES = \
|
||||
qshead.c qs_util.c
|
||||
|
||||
qsgrep_SOURCES = \
|
||||
qsgrep.c qs_util.c
|
||||
|
||||
qsexec_SOURCES = \
|
||||
qsexec.c qs_util.c
|
||||
|
||||
qscheck_SOURCES = \
|
||||
qscheck.c qs_util.c
|
||||
|
||||
qsgeo_SOURCES = \
|
||||
qsgeo.c qs_util.c
|
||||
|
||||
qslogger_SOURCES = \
|
||||
qslogger.c qs_util.c
|
||||
|
||||
qsdt_SOURCES = \
|
||||
qsdt.c qs_util.c
|
||||
|
||||
qsrespeed_SOURCES = \
|
||||
qsrespeed.c qs_util.c
|
||||
|
||||
qsre_SOURCES = \
|
||||
qsre.c qs_util.c
|
||||
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .o .obj
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
||||
&& { if test -f $@; then exit 0; else break; fi; }; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu src/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
|
||||
$(top_srcdir)/configure: $(am__configure_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||
$(am__aclocal_m4_deps):
|
||||
install-binPROGRAMS: $(bin_PROGRAMS)
|
||||
@$(NORMAL_INSTALL)
|
||||
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
||||
if test -n "$$list"; then \
|
||||
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
|
||||
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
|
||||
fi; \
|
||||
for p in $$list; do echo "$$p $$p"; done | \
|
||||
sed 's/$(EXEEXT)$$//' | \
|
||||
while read p p1; do if test -f $$p \
|
||||
; then echo "$$p"; echo "$$p"; else :; fi; \
|
||||
done | \
|
||||
sed -e 'p;s,.*/,,;n;h' \
|
||||
-e 's|.*|.|' \
|
||||
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
|
||||
sed 'N;N;N;s,\n, ,g' | \
|
||||
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
|
||||
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
||||
if ($$2 == $$4) files[d] = files[d] " " $$1; \
|
||||
else { print "f", $$3 "/" $$4, $$1; } } \
|
||||
END { for (d in files) print "f", d, files[d] }' | \
|
||||
while read type dir files; do \
|
||||
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
||||
test -z "$$files" || { \
|
||||
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
||||
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
||||
} \
|
||||
; done
|
||||
|
||||
uninstall-binPROGRAMS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
||||
files=`for p in $$list; do echo "$$p"; done | \
|
||||
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
|
||||
-e 's/$$/$(EXEEXT)/' \
|
||||
`; \
|
||||
test -n "$$list" || exit 0; \
|
||||
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
|
||||
cd "$(DESTDIR)$(bindir)" && rm -f $$files
|
||||
|
||||
clean-binPROGRAMS:
|
||||
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
|
||||
|
||||
qscheck$(EXEEXT): $(qscheck_OBJECTS) $(qscheck_DEPENDENCIES) $(EXTRA_qscheck_DEPENDENCIES)
|
||||
@rm -f qscheck$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qscheck_OBJECTS) $(qscheck_LDADD) $(LIBS)
|
||||
|
||||
qsdt$(EXEEXT): $(qsdt_OBJECTS) $(qsdt_DEPENDENCIES) $(EXTRA_qsdt_DEPENDENCIES)
|
||||
@rm -f qsdt$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsdt_OBJECTS) $(qsdt_LDADD) $(LIBS)
|
||||
|
||||
qsexec$(EXEEXT): $(qsexec_OBJECTS) $(qsexec_DEPENDENCIES) $(EXTRA_qsexec_DEPENDENCIES)
|
||||
@rm -f qsexec$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsexec_OBJECTS) $(qsexec_LDADD) $(LIBS)
|
||||
|
||||
qsfilter2$(EXEEXT): $(qsfilter2_OBJECTS) $(qsfilter2_DEPENDENCIES) $(EXTRA_qsfilter2_DEPENDENCIES)
|
||||
@rm -f qsfilter2$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsfilter2_OBJECTS) $(qsfilter2_LDADD) $(LIBS)
|
||||
|
||||
qsgeo$(EXEEXT): $(qsgeo_OBJECTS) $(qsgeo_DEPENDENCIES) $(EXTRA_qsgeo_DEPENDENCIES)
|
||||
@rm -f qsgeo$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsgeo_OBJECTS) $(qsgeo_LDADD) $(LIBS)
|
||||
|
||||
qsgrep$(EXEEXT): $(qsgrep_OBJECTS) $(qsgrep_DEPENDENCIES) $(EXTRA_qsgrep_DEPENDENCIES)
|
||||
@rm -f qsgrep$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsgrep_OBJECTS) $(qsgrep_LDADD) $(LIBS)
|
||||
|
||||
qshead$(EXEEXT): $(qshead_OBJECTS) $(qshead_DEPENDENCIES) $(EXTRA_qshead_DEPENDENCIES)
|
||||
@rm -f qshead$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qshead_OBJECTS) $(qshead_LDADD) $(LIBS)
|
||||
|
||||
qslog$(EXEEXT): $(qslog_OBJECTS) $(qslog_DEPENDENCIES) $(EXTRA_qslog_DEPENDENCIES)
|
||||
@rm -f qslog$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qslog_OBJECTS) $(qslog_LDADD) $(LIBS)
|
||||
|
||||
qslogger$(EXEEXT): $(qslogger_OBJECTS) $(qslogger_DEPENDENCIES) $(EXTRA_qslogger_DEPENDENCIES)
|
||||
@rm -f qslogger$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qslogger_OBJECTS) $(qslogger_LDADD) $(LIBS)
|
||||
|
||||
qspng$(EXEEXT): $(qspng_OBJECTS) $(qspng_DEPENDENCIES) $(EXTRA_qspng_DEPENDENCIES)
|
||||
@rm -f qspng$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qspng_OBJECTS) $(qspng_LDADD) $(LIBS)
|
||||
|
||||
qsre$(EXEEXT): $(qsre_OBJECTS) $(qsre_DEPENDENCIES) $(EXTRA_qsre_DEPENDENCIES)
|
||||
@rm -f qsre$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsre_OBJECTS) $(qsre_LDADD) $(LIBS)
|
||||
|
||||
qsrespeed$(EXEEXT): $(qsrespeed_OBJECTS) $(qsrespeed_DEPENDENCIES) $(EXTRA_qsrespeed_DEPENDENCIES)
|
||||
@rm -f qsrespeed$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsrespeed_OBJECTS) $(qsrespeed_LDADD) $(LIBS)
|
||||
|
||||
qsrotate$(EXEEXT): $(qsrotate_OBJECTS) $(qsrotate_DEPENDENCIES) $(EXTRA_qsrotate_DEPENDENCIES)
|
||||
@rm -f qsrotate$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qsrotate_OBJECTS) $(qsrotate_LDADD) $(LIBS)
|
||||
|
||||
qssign$(EXEEXT): $(qssign_OBJECTS) $(qssign_DEPENDENCIES) $(EXTRA_qssign_DEPENDENCIES)
|
||||
@rm -f qssign$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qssign_OBJECTS) $(qssign_LDADD) $(LIBS)
|
||||
|
||||
qstail$(EXEEXT): $(qstail_OBJECTS) $(qstail_DEPENDENCIES) $(EXTRA_qstail_DEPENDENCIES)
|
||||
@rm -f qstail$(EXEEXT)
|
||||
$(AM_V_CCLD)$(LINK) $(qstail_OBJECTS) $(qstail_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qs_apo.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qs_util.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qscheck.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsdt.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsexec.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsfilter2.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsgeo.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsgrep.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qshead.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qslog.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qslogger.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qspng.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsre.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsrespeed.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qsrotate.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qssign.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/qstail.Po@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
||||
|
||||
ID: $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
||||
tags: tags-am
|
||||
TAGS: tags
|
||||
|
||||
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
set x; \
|
||||
here=`pwd`; \
|
||||
$(am__define_uniq_tagged_files); \
|
||||
shift; \
|
||||
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
if test $$# -gt 0; then \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
"$$@" $$unique; \
|
||||
else \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$unique; \
|
||||
fi; \
|
||||
fi
|
||||
ctags: ctags-am
|
||||
|
||||
CTAGS: ctags
|
||||
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
||||
$(am__define_uniq_tagged_files); \
|
||||
test -z "$(CTAGS_ARGS)$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& $(am__cd) $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) "$$here"
|
||||
cscopelist: cscopelist-am
|
||||
|
||||
cscopelist-am: $(am__tagged_files)
|
||||
list='$(am__tagged_files)'; \
|
||||
case "$(srcdir)" in \
|
||||
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
||||
*) sdir=$(subdir)/$(srcdir) ;; \
|
||||
esac; \
|
||||
for i in $$list; do \
|
||||
if test -f "$$i"; then \
|
||||
echo "$(subdir)/$$i"; \
|
||||
else \
|
||||
echo "$$sdir/$$i"; \
|
||||
fi; \
|
||||
done >> $(top_builddir)/cscope.files
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
||||
list='$(DISTFILES)'; \
|
||||
dist_files=`for file in $$list; do echo $$file; done | \
|
||||
sed -e "s|^$$srcdirstrip/||;t" \
|
||||
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
||||
case $$dist_files in \
|
||||
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
||||
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
||||
sort -u` ;; \
|
||||
esac; \
|
||||
for file in $$dist_files; do \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test -d "$(distdir)/$$file"; then \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
||||
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
||||
fi; \
|
||||
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
||||
else \
|
||||
test -f "$(distdir)/$$file" \
|
||||
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(bindir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
if test -z '$(STRIP)'; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
install; \
|
||||
else \
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
||||
fi
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-tags
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
html: html-am
|
||||
|
||||
html-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am:
|
||||
|
||||
install-dvi: install-dvi-am
|
||||
|
||||
install-dvi-am:
|
||||
|
||||
install-exec-am: install-binPROGRAMS
|
||||
|
||||
install-html: install-html-am
|
||||
|
||||
install-html-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-info-am:
|
||||
|
||||
install-man:
|
||||
|
||||
install-pdf: install-pdf-am
|
||||
|
||||
install-pdf-am:
|
||||
|
||||
install-ps: install-ps-am
|
||||
|
||||
install-ps-am:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-binPROGRAMS
|
||||
|
||||
.MAKE: install-am install-strip
|
||||
|
||||
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
|
||||
clean-binPROGRAMS clean-generic cscopelist-am ctags ctags-am \
|
||||
distclean distclean-compile distclean-generic distclean-tags \
|
||||
distdir dvi dvi-am html html-am info info-am install \
|
||||
install-am install-binPROGRAMS install-data install-data-am \
|
||||
install-dvi install-dvi-am install-exec install-exec-am \
|
||||
install-html install-html-am install-info install-info-am \
|
||||
install-man install-pdf install-pdf-am install-ps \
|
||||
install-ps-am install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
|
||||
ps ps-am tags tags-am uninstall uninstall-am \
|
||||
uninstall-binPROGRAMS
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
539
tools/src/char.h
Normal file
|
@ -0,0 +1,539 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
#define S_W_MAX 6
|
||||
#define S_H_MAX 7
|
||||
|
||||
static int s_0[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_1[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,1,0,0},
|
||||
{ 0,1,0,1,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_2[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_3[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,1,1,0,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_4[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 1,0,0,1,0,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_5[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_6[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,1,1,0,0},
|
||||
{ 1,1,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_7[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_8[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_9[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
/* ----------------------------------------------- */
|
||||
static int s_a[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_b[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_c[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_d[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_e[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_f[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,1,1,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 1,1,1,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_g[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0}
|
||||
};
|
||||
|
||||
static int s_h[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,1,1,0,0},
|
||||
{ 1,1,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_i[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_j[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,1,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,1,1,0,0}
|
||||
};
|
||||
|
||||
static int s_k[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,1,1,0,0},
|
||||
{ 1,1,0,0,0,0},
|
||||
{ 1,0,1,0,0,0},
|
||||
{ 1,0,0,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_l[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,1,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_m[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,1,0,1,0,0},
|
||||
{ 1,0,1,0,1,0},
|
||||
{ 1,0,1,0,1,0},
|
||||
{ 1,0,1,0,1,0},
|
||||
{ 1,0,1,0,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_n[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,1,1,0,0},
|
||||
{ 1,1,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_o[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_p[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_q[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0}
|
||||
};
|
||||
|
||||
static int s_r[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,1,1,0,0},
|
||||
{ 1,1,0,0,1,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_s[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 1,1,1,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_t[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,1,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,1,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_u[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_v[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_w[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,1,0,1,0},
|
||||
{ 1,1,0,1,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_x[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,1,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_y[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,1,1,1,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 1,1,1,1,0,0}
|
||||
};
|
||||
|
||||
static int s_z[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,1,1,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 1,1,0,0,0,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_BRO[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_BRC[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_MI[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_LT[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,1,1,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 0,1,1,0,0,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_GT[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,0,1,1,0,0},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,1,1,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_SP[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_US[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_M[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,1,0,1,1,0},
|
||||
{ 1,0,1,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 1,0,0,0,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_DT[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_CM[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_SC[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_CO[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_SL[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,0,0,0,1},
|
||||
{ 0,0,0,0,1,0},
|
||||
{ 0,0,0,1,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,1,0,0,0,0},
|
||||
{ 1,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_SQ[S_H_MAX][S_W_MAX] = {
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,1,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
static int s_X[S_H_MAX][S_W_MAX] = {
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 1,1,1,1,1,0},
|
||||
{ 0,0,0,0,0,0}
|
||||
};
|
||||
|
135
tools/src/qs_apo.c
Normal file
|
@ -0,0 +1,135 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qs_apo.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <pthread.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <stdarg.h>
|
||||
#include <fcntl.h>
|
||||
#include <dirent.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <pwd.h>
|
||||
|
||||
/* apr/apr-util */
|
||||
#include <apr.h>
|
||||
#include <apr_base64.h>
|
||||
#include <apr_pools.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_thread_proc.h>
|
||||
#include <apr_file_io.h>
|
||||
#include <apr_time.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
#include "qs_apo.h"
|
||||
|
||||
static apr_table_t *qs_args(apr_pool_t *pool, const char *line) {
|
||||
char *last = apr_pstrdup(pool, line);
|
||||
apr_table_t* table = apr_table_make(pool, 10);
|
||||
char *val;
|
||||
while((val = apr_strtok(NULL, " ", &last))) {
|
||||
apr_table_addn(table, val, "");
|
||||
}
|
||||
return table;
|
||||
}
|
||||
|
||||
static void qs_failedexec(const char *msg, const char *cmd, apr_status_t status) {
|
||||
char buf[MAX_LINE];
|
||||
apr_strerror(status, buf, sizeof(buf));
|
||||
fprintf(stderr, "ERROR %s '%s': '%s'\n", msg, cmd, buf);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reads a passphrase using the defined passphrase getter (executes
|
||||
* the program and reads the passphras from stdout).
|
||||
*
|
||||
* @param pool To allocate memory
|
||||
* @param prg Path of the program to exectue
|
||||
* @return The passphrase
|
||||
*/
|
||||
char *qs_readpwd(apr_pool_t *pool, const char *prg) {
|
||||
apr_status_t status;
|
||||
apr_proc_t proc;
|
||||
const char **args;
|
||||
apr_table_entry_t *entry;
|
||||
char *last;
|
||||
char *copy = apr_pstrdup(pool, prg);
|
||||
char *cmd = apr_strtok(copy, " ", &last);
|
||||
apr_table_t *a = qs_args(pool, prg);
|
||||
int i;
|
||||
apr_procattr_t *attr;
|
||||
apr_size_t len = MAX_LINE;
|
||||
char *buf = apr_pcalloc(pool, len);
|
||||
|
||||
args = apr_pcalloc(pool, (apr_table_elts(a)->nelts + 1) * sizeof(const char *));
|
||||
entry = (apr_table_entry_t *) apr_table_elts(a)->elts;
|
||||
for(i = 0; i < apr_table_elts(a)->nelts; i++) {
|
||||
args[i] = entry[i].key;
|
||||
}
|
||||
args[i] = NULL;
|
||||
|
||||
if(cmd == NULL) {
|
||||
qs_failedexec("can't read password, invalid executable", prg, APR_EGENERAL);
|
||||
}
|
||||
if((status = apr_procattr_create(&attr, pool)) != APR_SUCCESS) {
|
||||
qs_failedexec("while reading password from executable", prg, status);
|
||||
}
|
||||
if((status = apr_procattr_cmdtype_set(attr, APR_PROGRAM_PATH)) != APR_SUCCESS) {
|
||||
qs_failedexec("while reading password from executable", prg, status);
|
||||
}
|
||||
if((status = apr_procattr_detach_set(attr, 0)) != APR_SUCCESS) {
|
||||
qs_failedexec("while reading password from executable", prg, status);
|
||||
}
|
||||
if((status = apr_procattr_io_set(attr, APR_FULL_BLOCK, APR_FULL_BLOCK, APR_NO_PIPE)) != APR_SUCCESS) {
|
||||
qs_failedexec("while reading password from executable", prg, status);
|
||||
}
|
||||
if((status = apr_proc_create(&proc, cmd, args, NULL, attr, pool)) != APR_SUCCESS) {
|
||||
qs_failedexec("could not execute program", prg, status);
|
||||
} else {
|
||||
char *e;
|
||||
status = apr_proc_wait(&proc, NULL, NULL, APR_WAIT);
|
||||
if(status != APR_CHILD_DONE && status != APR_SUCCESS) {
|
||||
qs_failedexec("while reading password from executable", prg, status);
|
||||
}
|
||||
status = apr_file_read(proc.out, buf, &len);
|
||||
if(status != APR_SUCCESS) {
|
||||
qs_failedexec("failed to read password from program", prg, status);
|
||||
}
|
||||
e = buf;
|
||||
while(e && e[0]) {
|
||||
if((e[0] == LF) || (e[0] == CR)) {
|
||||
e[0] = '\0';
|
||||
} else {
|
||||
e++;
|
||||
}
|
||||
}
|
||||
}
|
||||
return buf;
|
||||
}
|
31
tools/src/qs_apo.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef QS_APO_H
|
||||
#define QS_APO_H
|
||||
|
||||
char *qs_readpwd(apr_pool_t *pool, const char *prg);
|
||||
|
||||
#endif
|
409
tools/src/qs_util.c
Normal file
|
@ -0,0 +1,409 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qs_util.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <pthread.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <stdarg.h>
|
||||
#include <fcntl.h>
|
||||
#include <dirent.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <pwd.h>
|
||||
|
||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||
#include <pcre2.h>
|
||||
typedef pcre2_match_data* match_data_pt;
|
||||
typedef size_t* match_vector_pt;
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
/* mutex for counter access */
|
||||
static pthread_mutex_t m_qs_lock_cs;
|
||||
/* online/offline mode */
|
||||
static int m_qs_offline = 0;
|
||||
/* internal clock for offline analysis
|
||||
* stores time in seconds */
|
||||
static time_t m_qs_virtualSystemTime = 0;
|
||||
|
||||
/* ----------------------------------
|
||||
* functions
|
||||
* ---------------------------------- */
|
||||
|
||||
/**
|
||||
* man:
|
||||
* - escape special chars, like "\" and "-"
|
||||
* - wipe leading spaces
|
||||
* - wipe tailing LF
|
||||
*/
|
||||
void qs_man_print(int man, const char *fmt, ...) {
|
||||
char bufin[4096];
|
||||
char bufout[4096];
|
||||
va_list args;
|
||||
int i = 0;
|
||||
int j = 0;
|
||||
memset(bufin, 0, 4096);
|
||||
va_start(args, fmt);
|
||||
vsprintf(bufin, fmt, args);
|
||||
if(man) {
|
||||
// wipe leading spaces
|
||||
// while(bufin[i] == ' ' && bufin[i+1] == ' ') {
|
||||
while(bufin[i] == ' ') {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
while(bufin[i] && j < 4000) {
|
||||
// escape "\\" and "-" for man page
|
||||
if(man && (bufin[i] == '\\' || bufin[i] == '-')) {
|
||||
bufout[j] = '\\';
|
||||
j++;
|
||||
}
|
||||
if(bufin[i] == '\n') {
|
||||
if(man) {
|
||||
// skip LF for man page
|
||||
i++;
|
||||
} else {
|
||||
// keep LF
|
||||
bufout[j] = bufin[i];
|
||||
i++;
|
||||
j++;
|
||||
}
|
||||
} else {
|
||||
// standard char
|
||||
bufout[j] = bufin[i];
|
||||
i++;
|
||||
j++;
|
||||
}
|
||||
}
|
||||
bufout[j] = '\0';
|
||||
printf("%s", bufout);
|
||||
if(man) {
|
||||
printf(" ");
|
||||
}
|
||||
}
|
||||
|
||||
// escape only
|
||||
void qs_man_println(int man, const char *fmt, ...) {
|
||||
char bufin[4096];
|
||||
char bufout[4096];
|
||||
va_list args;
|
||||
int i = 0;
|
||||
int j = 0;
|
||||
memset(bufin, 0, 4096);
|
||||
va_start(args, fmt);
|
||||
vsprintf(bufin, fmt, args);
|
||||
while(bufin[i] && j < 4000) {
|
||||
// escape "\\" and "-" for man page
|
||||
if(man && (bufin[i] == '\\' || bufin[i] == '-')) {
|
||||
bufout[j] = '\\';
|
||||
j++;
|
||||
}
|
||||
// standard char
|
||||
bufout[j] = bufin[i];
|
||||
i++;
|
||||
j++;
|
||||
}
|
||||
bufout[j] = '\0';
|
||||
printf("%s", bufout);
|
||||
}
|
||||
|
||||
char *qs_CMD(const char *cmd) {
|
||||
char *buf = calloc(1024, 1);
|
||||
int i = 0;
|
||||
while(cmd[i] && i < 1023) {
|
||||
buf[i] = toupper(cmd[i]);
|
||||
i++;
|
||||
}
|
||||
buf[i] = '\0';
|
||||
return buf;
|
||||
}
|
||||
|
||||
/* io --------------------------------------------------------- */
|
||||
/*
|
||||
* reads a line from stdin
|
||||
*
|
||||
* @param s Buffer to write line to
|
||||
* @param n Length of the buffer
|
||||
* @return 0 on EOF, or 1 if there is more data to read
|
||||
*/
|
||||
int qs_getLine(char *s, int n) {
|
||||
int i = 0;
|
||||
while (1) {
|
||||
s[i] = (char)getchar();
|
||||
if(s[i] == EOF) return 0;
|
||||
if (s[i] == CR) {
|
||||
s[i] = getchar();
|
||||
}
|
||||
if ((s[i] == 0x4) || (s[i] == LF) || (i == (n - 1))) {
|
||||
s[i] = '\0';
|
||||
return 1;
|
||||
}
|
||||
++i;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* reads a line from file
|
||||
*
|
||||
* @param s Buffer to write line to
|
||||
* @param n Length of the buffer
|
||||
* @return 0 on EOF, or 1 if there is more data to read
|
||||
*/
|
||||
int qs_getLinef(char *s, int n, FILE *f) {
|
||||
register int i = 0;
|
||||
while (1) {
|
||||
s[i] = (char) fgetc(f);
|
||||
if (s[i] == CR) {
|
||||
s[i] = fgetc(f);
|
||||
}
|
||||
if ((s[i] == 0x4) || (s[i] == LF) || (i == (n - 1))) {
|
||||
s[i] = '\0';
|
||||
return (feof(f) ? 1 : 0);
|
||||
}
|
||||
++i;
|
||||
}
|
||||
}
|
||||
|
||||
/* time ------------------------------------------------------- */
|
||||
/*
|
||||
* We implement our own time which is either
|
||||
* the system time (real time) or the time from
|
||||
* the access log lines (offline) if m_qs_offline
|
||||
* has been set (use qs_set2OfflineMode() to enable
|
||||
* the offline mode).
|
||||
*
|
||||
* @param tme Set to the time since the Epoch in seconds.
|
||||
*/
|
||||
void qs_time(time_t *tme) {
|
||||
if(m_qs_offline) {
|
||||
/* use virtual time from the access log */
|
||||
*tme = m_qs_virtualSystemTime;
|
||||
} else {
|
||||
time(tme);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets time measurement (qs_time()) to offline mode.
|
||||
*/
|
||||
void qs_set2OfflineMode() {
|
||||
m_qs_offline = 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Updates the virtual time.
|
||||
*/
|
||||
void qs_setTime(time_t tme) {
|
||||
m_qs_virtualSystemTime = tme;
|
||||
}
|
||||
|
||||
/* synchronisation -------------------------------------------- */
|
||||
/*
|
||||
* locks all counter
|
||||
*/
|
||||
void qs_csLock() {
|
||||
pthread_mutex_lock(&m_qs_lock_cs);
|
||||
}
|
||||
|
||||
/*
|
||||
* unlocks all counter
|
||||
*/
|
||||
void qs_csUnLock() {
|
||||
pthread_mutex_unlock(&m_qs_lock_cs);
|
||||
}
|
||||
|
||||
/*
|
||||
* init locks
|
||||
*/
|
||||
void qs_csInitLock() {
|
||||
pthread_mutex_init(&m_qs_lock_cs, NULL);
|
||||
}
|
||||
|
||||
/* logs ------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Keeps only the specified number of files
|
||||
*
|
||||
* @param file_name Absolute file name
|
||||
* @param generations Number of files to keep
|
||||
*/
|
||||
void qs_deleteOldFiles(const char *file_name, int generations) {
|
||||
DIR *dir;
|
||||
char dirname[QS_HUGE_STR];
|
||||
char *p;
|
||||
memset(dirname, 0, QS_HUGE_STR);
|
||||
if(strlen(file_name) > (QS_HUGE_STR - 12)) {
|
||||
// invalid file length
|
||||
return;
|
||||
}
|
||||
if(strrchr(file_name, '/') == NULL) {
|
||||
sprintf(dirname, "./%s", file_name);
|
||||
} else {
|
||||
strcpy(dirname, file_name);
|
||||
}
|
||||
p = strrchr(dirname, '/');
|
||||
p[0] = '\0'; p++;
|
||||
dir = opendir(dirname);
|
||||
if(dir) {
|
||||
int num = 0;
|
||||
struct dirent *de;
|
||||
char filename[QS_HUGE_STR];
|
||||
snprintf(filename, sizeof(filename), "%s.20", p);
|
||||
/* determine how many files to delete */
|
||||
while((de = readdir(dir)) != 0) {
|
||||
if(de->d_name && (strncmp(de->d_name, filename, strlen(filename)) == 0)) {
|
||||
num++;
|
||||
}
|
||||
}
|
||||
/* delete the oldest files (assumes they are ordered by their creation date) */
|
||||
while(num > generations) {
|
||||
char old[QS_HUGE_STR];
|
||||
old[0] = '\0';
|
||||
rewinddir(dir);
|
||||
while((de = readdir(dir)) != 0) {
|
||||
if(de->d_name && (strncmp(de->d_name, filename, strlen(filename)) == 0)) {
|
||||
if(strcmp(old, de->d_name) > 0) {
|
||||
snprintf(old, sizeof(old), "%s", de->d_name);
|
||||
} else {
|
||||
if(old[0] == '\0') {
|
||||
snprintf(old, sizeof(old), "%s", de->d_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
{
|
||||
/* build abs path and delete it */
|
||||
char unl[QS_HUGE_STR];
|
||||
snprintf(unl, sizeof(unl), "%s/%s", dirname, old);
|
||||
unlink(unl);
|
||||
}
|
||||
num--;
|
||||
}
|
||||
closedir(dir);
|
||||
}
|
||||
}
|
||||
|
||||
/* user ------------------------------------------------------- */
|
||||
void qs_setuid(const char *username, const char *cmd) {
|
||||
if(username && getuid() == 0) {
|
||||
struct passwd *pwd = getpwnam(username);
|
||||
uid_t uid, gid;
|
||||
if(pwd == NULL) {
|
||||
fprintf(stderr, "[%s] failed to switch user: unknown user id '%s'\n", cmd, username);
|
||||
exit(1);
|
||||
}
|
||||
uid = pwd->pw_uid;
|
||||
gid = pwd->pw_gid;
|
||||
setgid(gid);
|
||||
setuid(uid);
|
||||
if(getuid() != uid) {
|
||||
fprintf(stderr, "[%s] setuid failed (%s,%d)\n", cmd, username, uid);
|
||||
exit(1);
|
||||
}
|
||||
if(getgid() != gid) {
|
||||
fprintf(stderr, "[%s] setgid failed (%d)\n", cmd, gid);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
/* pcre ------------------------------------------------------- */
|
||||
int qs_pregfree(void *p) {
|
||||
qs_regfree((qs_regex_t *)p);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void qs_regfree(qs_regex_t *preg) {
|
||||
if(preg->state == 1) {
|
||||
pcre2_code_free(preg->re_pcre);
|
||||
}
|
||||
}
|
||||
|
||||
int qs_regcomp(qs_regex_t *preg, const char *pattern, int cflags) {
|
||||
unsigned int capcount;
|
||||
size_t erroffset;
|
||||
int errcode = 0;
|
||||
int options = cflags;
|
||||
preg->state = 0;
|
||||
|
||||
preg->re_pcre = pcre2_compile((const unsigned char *)pattern,
|
||||
PCRE2_ZERO_TERMINATED, options, &errcode,
|
||||
&erroffset, NULL);
|
||||
|
||||
if (preg->re_pcre == NULL) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
pcre2_pattern_info((const pcre2_code *)preg->re_pcre,
|
||||
PCRE2_INFO_CAPTURECOUNT, &capcount);
|
||||
preg->re_nsub = capcount;
|
||||
|
||||
preg->state = 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int qs_regexec_len(const qs_regex_t *preg, const char *buff,
|
||||
unsigned int len, unsigned int nmatch,
|
||||
qs_regmatch_t *pmatch, int eflags) {
|
||||
int rc;
|
||||
int options = 0;
|
||||
match_vector_pt ovector = NULL;
|
||||
unsigned int ncaps = (unsigned int)preg->re_nsub + 1;
|
||||
match_data_pt data = pcre2_match_data_create(ncaps, NULL);
|
||||
|
||||
if (!data) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
options = eflags;
|
||||
|
||||
rc = pcre2_match((const pcre2_code *)preg->re_pcre,
|
||||
(const unsigned char *)buff, len,
|
||||
0, options, data, NULL);
|
||||
ovector = pcre2_get_ovector_pointer(data);
|
||||
|
||||
if (rc >= 0) {
|
||||
unsigned int n = rc, i;
|
||||
if (n == 0 || n > nmatch)
|
||||
rc = n = nmatch; /* All capture slots were filled in */
|
||||
for (i = 0; i < n; i++) {
|
||||
pmatch[i].rm_so = ovector[i * 2];
|
||||
pmatch[i].rm_eo = ovector[i * 2 + 1];
|
||||
}
|
||||
for (; i < nmatch; i++) {
|
||||
pmatch[i].rm_so = pmatch[i].rm_eo = -1;
|
||||
}
|
||||
pcre2_match_data_free(data);
|
||||
return rc;
|
||||
}
|
||||
else {
|
||||
pcre2_match_data_free(data);
|
||||
|
||||
return -1;
|
||||
}
|
||||
}
|
98
tools/src/qs_util.h
Normal file
|
@ -0,0 +1,98 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef QS_UTIL_H
|
||||
#define QS_UTIL_H
|
||||
|
||||
/* ----------------------------------
|
||||
* version info
|
||||
* ---------------------------------- */
|
||||
static const char man_version[] = "11.74";
|
||||
static const char man_date[] = "May 2023";
|
||||
|
||||
/* ----------------------------------
|
||||
* definitions
|
||||
* ---------------------------------- */
|
||||
/* huge (128kb) buffer supporting very long lines (twice as
|
||||
much as Apache's rotatelogs uses */
|
||||
#define MAX_LINE_BUFFER 131072
|
||||
/* smaller buffer, e.g. for qslog */
|
||||
#define MAX_LINE 32768
|
||||
#define QS_HUGE_STR 2048
|
||||
#define CR 13
|
||||
#define LF 10
|
||||
|
||||
/* ----------------------------------
|
||||
* functions
|
||||
* ---------------------------------- */
|
||||
char *qs_CMD(const char *cmd);
|
||||
void qs_man_print(int man, const char *fmt, ...);
|
||||
void qs_man_println(int man, const char *fmt, ...);
|
||||
|
||||
/* io */
|
||||
int qs_getLine(char *s, int n);
|
||||
int qs_getLinef(char *s, int n, FILE *f);
|
||||
|
||||
/* time */
|
||||
void qs_time(time_t *tme);
|
||||
void qs_set2OfflineMode();
|
||||
void qs_setTime(time_t tme);
|
||||
|
||||
/* synchronisation */
|
||||
void qs_csInitLock();
|
||||
void qs_csLock();
|
||||
void qs_csUnLock();
|
||||
|
||||
/* log */
|
||||
void qs_deleteOldFiles(const char *file_name, int generations);
|
||||
|
||||
/* user */
|
||||
void qs_setuid(const char *username, const char *cmd);
|
||||
|
||||
/* pcre */
|
||||
#define QS_MAX_REG_MATCH 10
|
||||
|
||||
typedef struct {
|
||||
int rm_so;
|
||||
int rm_eo;
|
||||
} qs_regmatch_t;
|
||||
|
||||
typedef struct {
|
||||
void *re_pcre;
|
||||
int re_nsub;
|
||||
int state;
|
||||
} qs_regex_t;
|
||||
|
||||
int qs_pregfree(void *p);
|
||||
|
||||
void qs_regfree(qs_regex_t *preg);
|
||||
|
||||
int qs_regcomp(qs_regex_t *preg, const char *regex, int cflags);
|
||||
|
||||
int qs_regexec_len(const qs_regex_t *preg, const char *buff,
|
||||
unsigned int len, unsigned int nmatch,
|
||||
qs_regmatch_t *pmatch, int eflags);
|
||||
|
||||
#endif
|
413
tools/src/qscheck.c
Normal file
|
@ -0,0 +1,413 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qscheck.c: Monitor testing tcp connectivity to servers used by mod_proxy.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qscheck.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <netdb.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <ctype.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
//#include <config.h>
|
||||
|
||||
#define CR 13
|
||||
#define LF 10
|
||||
#define QS_TIMEOUT 2
|
||||
#define QS_PROXYP "proxypass "
|
||||
#define QS_PROXYP_TAB "proxypass\t"
|
||||
#define QS_PROXYPR "proxypassreverse "
|
||||
#define QS_PROXYPR_TAB "proxypassreverse\t"
|
||||
#define QS_PROXYR "proxyremote "
|
||||
#define QS_PROXYR_TAB "proxyremote\t"
|
||||
#define QS_INCLUDE "nclude "
|
||||
#define QS_INCLUDE_TAB "nclude\t"
|
||||
#define QS_SERVERROOT "ServerRoot "
|
||||
#define QS_SERVERROOT_TAB "ServerRoot\t"
|
||||
|
||||
static int m_verbose = 0;
|
||||
static char ServerRoot[1024];
|
||||
static char *checkedHosts = NULL;
|
||||
|
||||
/**
|
||||
* Prints usage text
|
||||
*/
|
||||
static void usage(char *cmd) {
|
||||
printf("\n");
|
||||
printf("Monitor program testing the TCP connectivity to servers.\n");
|
||||
printf("\n");
|
||||
printf("Usage: %s -c <httpd.conf> [-v]\n", cmd);
|
||||
printf("\n");
|
||||
printf("Verifies the connectivity to the server referred either\n");
|
||||
printf("by the ProxyPass, ProxyPassReverse, or ProxyReverse\n");
|
||||
printf("directive used by mod_proxy.\n");
|
||||
printf("\n");
|
||||
printf("You may alternatively use \"%s -i <hostname>:<port>\" if\n", cmd);
|
||||
printf("you want to check the TCP connectivity to a single host.\n");
|
||||
printf("\n");
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Opens a tcp connection
|
||||
*/
|
||||
static int ping(unsigned long address, int port) {
|
||||
int status = 0;
|
||||
struct sockaddr_in addr;
|
||||
int skt;
|
||||
addr.sin_addr.s_addr = address;
|
||||
addr.sin_port = htons(port);
|
||||
addr.sin_family = PF_INET;
|
||||
skt = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
|
||||
if(skt != -1) {
|
||||
int sflags = fcntl(skt,F_GETFL,0);
|
||||
if(sflags >=0) {
|
||||
/* set non blocking socket */
|
||||
if(fcntl(skt,F_SETFL,sflags|O_NONBLOCK) >=0) {
|
||||
/* this connect returns immediately */
|
||||
int ret = connect(skt, (struct sockaddr*)&addr, sizeof(struct sockaddr_in));
|
||||
if(fcntl(skt,F_SETFL,sflags) >=0) {
|
||||
socklen_t lon = sizeof(int);
|
||||
int valopt;
|
||||
fd_set fd_w;
|
||||
struct timeval tme;
|
||||
tme.tv_sec = QS_TIMEOUT;
|
||||
tme.tv_usec = 0;
|
||||
FD_ZERO(&fd_w);
|
||||
FD_SET(skt, &fd_w);
|
||||
/* select returns -1 on timeout, else 1 (connected or refused) */
|
||||
if(select(FD_SETSIZE, NULL, &fd_w, NULL, &tme) > 0) {
|
||||
/* check the status of the socket in order to distinguish between
|
||||
connected or refused */
|
||||
if(getsockopt(skt, SOL_SOCKET, SO_ERROR, (void*)(&valopt), &lon) >= 0) {
|
||||
if(!valopt) {
|
||||
/* UP ! */
|
||||
status = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* resolves host address
|
||||
*/
|
||||
static unsigned long getAddress(const char *hostname) {
|
||||
int ip = 1;
|
||||
int i = 0;
|
||||
unsigned long address = 0L;
|
||||
struct hostent *hoste;
|
||||
for(i = 0; i < (int) strlen(hostname); i++) {
|
||||
if((!isdigit((int) hostname[i])) && (hostname[i] != '.')) {
|
||||
ip = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (ip) {
|
||||
address = inet_addr(hostname);
|
||||
if(address == -1) {
|
||||
return 0L;
|
||||
}
|
||||
} else {
|
||||
hoste = gethostbyname(hostname);
|
||||
if (!hoste || !hoste->h_addr_list[ 0 ]) {
|
||||
/* can't resolve host name */
|
||||
return 0L;
|
||||
}
|
||||
address = ((struct in_addr*)hoste->h_addr_list[ 0 ])->s_addr;
|
||||
}
|
||||
return address;
|
||||
}
|
||||
|
||||
/*
|
||||
* Checks a single host (parse host string, resolve address, ping).
|
||||
*/
|
||||
static int checkHost(const char *cmd, const char *filename, int ln, char *abs_url) {
|
||||
int status = 1;
|
||||
char *schema = abs_url;
|
||||
char *host = NULL;
|
||||
char *ports = NULL;
|
||||
int port = 0;
|
||||
char hp[1024];
|
||||
unsigned long address;
|
||||
char *x = strstr(abs_url, "://");
|
||||
if(x == NULL) {
|
||||
if(m_verbose) {
|
||||
fprintf(stderr,"[%s]: ERROR, wrong syntax <%s> in %s on line %d\n",
|
||||
cmd, abs_url, filename, ln);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
x[0] = '\0'; x = x + strlen("://");
|
||||
host = x;
|
||||
ports = strchr(x, ':');
|
||||
if(ports != NULL) {
|
||||
ports[0] = '\0'; ports++;
|
||||
x = strchr(ports, '/');
|
||||
if(x == NULL) {
|
||||
int i;
|
||||
x = ports;
|
||||
for(i=0;(x[i] != ' ') && (x[i] != '\t') && (x[i] != '\0'); i++);
|
||||
x[i] = '\0';
|
||||
} else {
|
||||
x[0] = '\0';
|
||||
}
|
||||
port = atoi(ports);
|
||||
} else {
|
||||
ports = strchr(x, '/');
|
||||
if(ports == NULL) {
|
||||
int i;
|
||||
for(i=0;(x[i] != ' ') && (x[i] != '\t') && (x[i] != '\0'); i++);
|
||||
x[i] = '\0';
|
||||
} else {
|
||||
ports[0] = '\0';
|
||||
}
|
||||
if(strcmp(schema, "http") == 0) {
|
||||
port = 80;
|
||||
} else {
|
||||
port = 443;
|
||||
}
|
||||
}
|
||||
/* check each host only once */
|
||||
snprintf(hp, sizeof(hp), "#%s:%d#", host, port);
|
||||
if(checkedHosts && strstr(checkedHosts, hp) != NULL) {
|
||||
/* already checked */
|
||||
return 1;
|
||||
}
|
||||
if(checkedHosts == NULL) {
|
||||
checkedHosts = calloc(1, strlen(hp) + 1);
|
||||
strcpy(checkedHosts, hp);
|
||||
} else {
|
||||
int pl = strlen(checkedHosts) +strlen(hp) + 1;
|
||||
char *p = calloc(1, pl);
|
||||
snprintf(p, pl, "%s%s", checkedHosts, hp);
|
||||
free(checkedHosts);
|
||||
checkedHosts = p;
|
||||
}
|
||||
/* resolve address */
|
||||
address = getAddress(host);
|
||||
if(address == 0L) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not resolve hostname %s\n", cmd, host);
|
||||
return -1;
|
||||
}
|
||||
/* check connection */
|
||||
if(ping(address, port)) {
|
||||
if(m_verbose) {
|
||||
printf("[%s]: %s:%d Up\n", cmd, host, port);
|
||||
}
|
||||
return 1;
|
||||
} else {
|
||||
printf("[%s]: %s:%d Down\n", cmd, host, port);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Open file and check every ProxyPass* or ProxyR* entry.
|
||||
* - follows include ... directive
|
||||
* - determines serverroot
|
||||
*/
|
||||
static int checkFile(const char *cmd, const char *filename) {
|
||||
int status = 1;
|
||||
int ln = 0;
|
||||
char line[1024];
|
||||
FILE *f = fopen(filename, "r");
|
||||
if(f == NULL) {
|
||||
if(ServerRoot[0] != '\0') {
|
||||
char fqfile[2048];
|
||||
snprintf(fqfile, sizeof(fqfile), "%s/%s", ServerRoot, filename);
|
||||
f = fopen(fqfile, "r");
|
||||
}
|
||||
}
|
||||
if(f == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not open file %s\n", cmd, filename);
|
||||
return 0;
|
||||
}
|
||||
|
||||
while(!qs_getLinef(line, sizeof(line), f)) {
|
||||
char *command = NULL;
|
||||
int cmd_len = 0;
|
||||
int to = 0;
|
||||
while(line[to]) {
|
||||
line[to] = tolower(line[to]);
|
||||
to++;
|
||||
}
|
||||
ln++;
|
||||
command = strstr(line, QS_PROXYP);
|
||||
cmd_len = strlen(QS_PROXYP);
|
||||
if(command == NULL) command = strstr(line, QS_PROXYP_TAB);
|
||||
if(command == NULL) {
|
||||
command = strstr(line, QS_PROXYPR);
|
||||
cmd_len = strlen(QS_PROXYPR);
|
||||
}
|
||||
if(command == NULL) command = strstr(line, QS_PROXYPR_TAB);
|
||||
if(command == NULL) {
|
||||
command = strstr(line, QS_PROXYR);
|
||||
cmd_len = strlen(QS_PROXYR);
|
||||
}
|
||||
if(command == NULL) command = strstr(line, QS_PROXYR_TAB);
|
||||
if(command && strchr(line, '#') == 0) {
|
||||
/* command = cmd url schema://host[:port]/url */
|
||||
char *abs_url = &command[cmd_len];
|
||||
int i, j;
|
||||
|
||||
/* get the url */
|
||||
for(i=0;(abs_url[i] == ' ') || (abs_url[i] == '\t'); i++);
|
||||
abs_url = &abs_url[i];
|
||||
|
||||
/* skip url */
|
||||
for(i=0;(abs_url[i] != ' ') && (abs_url[i] != '\t') && (abs_url[i] != '\0'); i++);
|
||||
abs_url = &abs_url[i];
|
||||
|
||||
/* get schema://host[:port]/url */
|
||||
for(i=0;(abs_url[i] == ' ') || (abs_url[i] == '\t'); i++);
|
||||
abs_url = &abs_url[i];
|
||||
|
||||
/* ping */
|
||||
if(abs_url && abs_url[0] != '\0' && abs_url[0] != '!') {
|
||||
status = status & checkHost(cmd, filename, ln, abs_url);
|
||||
}
|
||||
} else {
|
||||
/* include commands */
|
||||
command = strstr(line, QS_INCLUDE);
|
||||
if(command == NULL) command = strstr(line, QS_INCLUDE_TAB);
|
||||
if(command && strchr(line, '#') == 0) {
|
||||
char *file = &command[strlen(QS_INCLUDE)];
|
||||
int i, j;
|
||||
/* get the value */
|
||||
for(i=0;(file[i] == ' ') || (file[i] == '\t'); i++);
|
||||
/* delete spaces at the end of the value */
|
||||
if(&file[i] != '\0') {
|
||||
for(j=i+1;(file[j] != ' ') && (file[j] != '\t') && (file[j] != '\0'); j++);
|
||||
file[j] = '\0';
|
||||
}
|
||||
file = &file[i];
|
||||
status = status & checkFile(cmd, file);
|
||||
} else {
|
||||
/* server root */
|
||||
command = strstr(line, QS_SERVERROOT);
|
||||
if(command == NULL) command = strstr(line, QS_SERVERROOT_TAB);
|
||||
if(command && strchr(line, '#') == 0) {
|
||||
char *sr = &command[strlen(QS_SERVERROOT)];
|
||||
int i, j;
|
||||
/* get the value */
|
||||
for(i=0;(sr[i] == ' ') || (sr[i] == '\t'); i++);
|
||||
/* delete spaces at the end of the value */
|
||||
if(&sr[i] != '\0') {
|
||||
for(j=i+1;(sr[j] != ' ') && (sr[j] != '\t') && (sr[j] != '\0'); j++);
|
||||
sr[j] = '\0';
|
||||
}
|
||||
strcpy(ServerRoot, &sr[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(f);
|
||||
return status;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
char *config = NULL;
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
char *single = NULL;
|
||||
int status = 1;
|
||||
if(cmd == NULL) {
|
||||
cmd = argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
ServerRoot[0] = '\0';
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-c") == 0) {
|
||||
if (--argc >= 1) {
|
||||
config = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-i") == 0) {
|
||||
if (--argc >= 1) {
|
||||
single = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-v") == 0) {
|
||||
m_verbose = 1;
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
if(single) {
|
||||
char *hostName = single;
|
||||
char *portNumber = strchr(single, ':');
|
||||
if(portNumber) {
|
||||
unsigned long addr;
|
||||
int prt;
|
||||
portNumber[0] = '\0';
|
||||
portNumber++;
|
||||
addr = getAddress(hostName);
|
||||
prt = atoi(portNumber);
|
||||
if(addr && prt) {
|
||||
if(ping(addr, prt)) {
|
||||
if(m_verbose) {
|
||||
printf("[%s]: %s:%d Up\n", cmd, hostName, prt);
|
||||
}
|
||||
status = 1;
|
||||
} else {
|
||||
printf("[%s]: %s:%d Down\n", cmd, hostName, prt);
|
||||
status = 0;
|
||||
}
|
||||
} else {
|
||||
// could not resolve
|
||||
fprintf(stderr,"[%s]: ERROR, unknown host/port\n", cmd);
|
||||
status = 0;
|
||||
}
|
||||
} else {
|
||||
// invalid input
|
||||
fprintf(stderr,"[%s]: ERROR, invalid format\n", cmd);
|
||||
status = 0;
|
||||
}
|
||||
} else {
|
||||
if(config == NULL) {
|
||||
usage(cmd);
|
||||
}
|
||||
status = checkFile(cmd, config);
|
||||
}
|
||||
if(status == 0) {
|
||||
fprintf(stderr,"[%s]: ERROR, check failed\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
printf("[%s]: OK, check successful\n", cmd);
|
||||
return 0;
|
||||
}
|
336
tools/src/qsdt.c
Normal file
|
@ -0,0 +1,336 @@
|
|||
/**
|
||||
* Utility for the quality of service module mod_qos.
|
||||
*
|
||||
* qsdt.c: simple tool to measure the elapse time between
|
||||
* related log messages
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <regex.h>
|
||||
|
||||
#include <apr.h>
|
||||
#include <apr_portable.h>
|
||||
#include <apr_strings.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#define MAX_REG_MATCH 10
|
||||
|
||||
#define TIMESTR "%H:%M:%S"
|
||||
#define TIMEEX "([0-9]{2}:[0-9]{2}:[0-9]{2})[.,]([0-9]{3})"
|
||||
|
||||
typedef struct {
|
||||
time_t seconds;
|
||||
int milliseconds;
|
||||
char *id;
|
||||
} entry_t;
|
||||
|
||||
|
||||
static void usage(const char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s calculates the elapsed time between two related log messages.\n", cmd);
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s [-t <regex>] -i <regex> -s <regex> -e <regex> [-v] [<path>]\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s is a simple tool to search two different messages\n", cmd);
|
||||
qs_man_print(man, "in a log file and calculates the elapsed time between these\n");
|
||||
qs_man_print(man, "lines. The two log messages need a common identifier such an\n");
|
||||
qs_man_print(man, "unique request id (UNIQUE_ID), a thread id, or a transaction\n");
|
||||
qs_man_print(man, "code.\n");
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -t <regex>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines a pattern (regular expression) matching the log line's\n");
|
||||
qs_man_print(man, " timestamp. The pattern must include two sub-expressions, one matching\n");
|
||||
qs_man_print(man, " hours, minutes and seconds the other matching the milliseconds.\n");
|
||||
qs_man_print(man, " Default pattern is "TIMEEX"\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -i <regex>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Pattern (regular expression) matching the identifier which the two\n");
|
||||
qs_man_print(man, " messages have in common. The sub-expression defines the part which\n");
|
||||
qs_man_print(man, " needs to be extracted from the matching string. Note: You can also\n");
|
||||
qs_man_print(man, " use the start (-s) and end (-e) pattern to define the sub-expression\n");
|
||||
qs_man_print(man, " matching this identifier.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -s <regex>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the pattern (regular expression or literal string)\n");
|
||||
qs_man_print(man, " identifying the first (start) of the two messages.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -e <regex>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the pattern (regular expression or literal string)\n");
|
||||
qs_man_print(man, " identifying the second (end) of the two messages.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -v\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Verbose mode.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " <path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the input file to process. %s reads from\n", cmd);
|
||||
qs_man_print(man, " from standard input if this parameter is omitted.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
printf("Sample command line arguments:\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
printf(" Sample arguments:\n");
|
||||
}
|
||||
qs_man_println(man, " -i ' ([a-z0-9]+) [A-Z]+ ' -s 'Received Request' -e 'Received Response'\n");
|
||||
printf("\n");
|
||||
qs_man_println(man, " matching those sample log messages:\n");
|
||||
qs_man_println(man, " 2018-03-12 16:34:08.653 threadid23 INFO Received Request\n");
|
||||
qs_man_println(man, " 2018-03-13 16:35:09.891 threadid23 DEBUG MessageHandler Received Response\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NOTE\n");
|
||||
} else {
|
||||
printf("Notes:\n");
|
||||
}
|
||||
qs_man_println(man, "The four patterns (t,i,s,e) are concatenated into two search patterns:\n");
|
||||
qs_man_println(man, " first (start): [t (HH:MM:SS)(SSS) ].*[i (id) ].*[s ]\n");
|
||||
qs_man_println(man, " second (end): [t (HH:MM:SS)(SSS) ].*[i (id) ].*[e ]\n");
|
||||
printf("\n");
|
||||
qs_man_print(man, "And the three sub-expression are used to extract the timestamp and the\n");
|
||||
qs_man_print(man, "unique identifier that the start and end message have in common.\n");
|
||||
qs_man_print(man, "This means that you could specify the sub-expression for the unique\n");
|
||||
qs_man_print(man, "identifier in the start (-s) or end (-e) pattern alternatively, e.g. in\n");
|
||||
qs_man_print(man, "case the identifier is at the end of the log line.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
int main(int argc, const char *const argv[]) {
|
||||
FILE *file;
|
||||
char line[MAX_LINE];
|
||||
int verbose = 0;
|
||||
|
||||
const char *cmd = strrchr(argv[0], '/');
|
||||
|
||||
apr_pool_t *pool;
|
||||
apr_table_t *inmsg;
|
||||
|
||||
regmatch_t ma[MAX_REG_MATCH];
|
||||
regex_t pregstart;
|
||||
regex_t pregend;
|
||||
|
||||
const char *timeex = TIMEEX;
|
||||
const char *idex = NULL;
|
||||
const char *startex = NULL;
|
||||
const char *endex = NULL;
|
||||
const char *filename = NULL;
|
||||
|
||||
char *regexStr;
|
||||
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
inmsg = apr_table_make(pool, 100);
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-t") == 0) {
|
||||
if (--argc >= 1) {
|
||||
timeex = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-i") == 0) {
|
||||
if (--argc >= 1) {
|
||||
idex = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-s") == 0) {
|
||||
if (--argc >= 1) {
|
||||
startex = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-e") == 0) {
|
||||
if (--argc >= 1) {
|
||||
endex = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-v") == 0) {
|
||||
verbose = 1;
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
filename = *argv;
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(idex == NULL || startex == NULL || endex == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
if(filename) {
|
||||
file = fopen(filename, "r");
|
||||
if(!file) {
|
||||
fprintf(stderr, "ERROR, failed to open the log file '%s'\n", filename);
|
||||
exit(1);
|
||||
}
|
||||
} else {
|
||||
file = stdin;
|
||||
}
|
||||
|
||||
|
||||
regexStr = apr_psprintf(pool, "%s.*%s.*%s", timeex, idex, startex);
|
||||
if(verbose) {
|
||||
fprintf(stderr, "start pattern: %s\n", regexStr);
|
||||
}
|
||||
if(regcomp(&pregstart, regexStr, REG_EXTENDED)) {
|
||||
fprintf(stderr, "ERROR, could not compile %s\n", regexStr);
|
||||
exit(1);
|
||||
};
|
||||
regexStr = apr_psprintf(pool, "%s.*%s.*%s", timeex, idex, endex);
|
||||
if(verbose) {
|
||||
fprintf(stderr, "end pattern: %s\n", regexStr);
|
||||
}
|
||||
if(regcomp(&pregend, regexStr, REG_EXTENDED)) {
|
||||
fprintf(stderr, "ERROR, could not compile %s\n", regexStr);
|
||||
exit(1);
|
||||
};
|
||||
|
||||
while(fgets(line, MAX_LINE-1, file) != NULL) {
|
||||
char *hms;
|
||||
char *ms;
|
||||
char *id;
|
||||
if(regexec(&pregstart, line, MAX_REG_MATCH, ma, 0) == 0) {
|
||||
entry_t *entry = calloc(1, sizeof(entry_t));
|
||||
struct tm tm;
|
||||
if(ma[3].rm_so == -1) {
|
||||
fprintf(stderr, "ERROR, invalid regular expression (missing sub-expression in pattern)\n");
|
||||
exit(1);
|
||||
}
|
||||
hms = &line[ma[1].rm_so];
|
||||
ms = &line[ma[2].rm_so];
|
||||
id = &line[ma[3].rm_so];
|
||||
line[ma[1].rm_eo] = '\0';
|
||||
line[ma[2].rm_eo] = '\0';
|
||||
line[ma[3].rm_eo] = '\0';
|
||||
strptime(hms, TIMESTR, &tm);
|
||||
entry->seconds = mktime(&tm);
|
||||
entry->milliseconds = atoi(ms);
|
||||
entry->id = calloc(strlen(id)+1, sizeof(char));
|
||||
sprintf(entry->id, "%s", id);
|
||||
if(verbose) {
|
||||
fprintf(stderr, "START [%s][%s][%s] %lu %d\n",
|
||||
hms, ms, id, entry->seconds, entry->milliseconds);
|
||||
}
|
||||
apr_table_setn(inmsg, entry->id, (char *)entry);
|
||||
} else if(regexec(&pregend, line, MAX_REG_MATCH, ma, 0) == 0) {
|
||||
entry_t entry;
|
||||
entry_t *start;
|
||||
struct tm tm;
|
||||
if(ma[3].rm_so == -1) {
|
||||
fprintf(stderr, "ERROR, invalid regular expression (missing sub-expression in pattern)\n");
|
||||
exit(1);
|
||||
}
|
||||
hms = &line[ma[1].rm_so];
|
||||
ms = &line[ma[2].rm_so];
|
||||
id = &line[ma[3].rm_so];
|
||||
line[ma[1].rm_eo] = '\0';
|
||||
line[ma[2].rm_eo] = '\0';
|
||||
line[ma[3].rm_eo] = '\0';
|
||||
strptime(hms, TIMESTR, &tm);
|
||||
entry.seconds = mktime(&tm);
|
||||
entry.milliseconds = atoi(ms);
|
||||
if(verbose) {
|
||||
fprintf(stderr, "END [%s][%s][%s] %lu %d\n",
|
||||
hms, ms, id, entry.seconds, entry.milliseconds);
|
||||
}
|
||||
start = (entry_t *)apr_table_get(inmsg, id);
|
||||
if(start) {
|
||||
printf("@%s %s %10lu [ms]\n",
|
||||
line,
|
||||
id,
|
||||
(entry.seconds-start->seconds)*1000 + entry.milliseconds-start->milliseconds);
|
||||
apr_table_unset(inmsg, id);
|
||||
free(start->id);
|
||||
free(start);
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(file);
|
||||
|
||||
return 0;
|
||||
}
|
376
tools/src/qsexec.c
Normal file
|
@ -0,0 +1,376 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
/**
|
||||
* Command line execution utility for the quality of service module mod_qos.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qsexec.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
/* system */
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
|
||||
/* apr */
|
||||
#include <apr.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_file_io.h>
|
||||
#include <apr_time.h>
|
||||
#include <apr_getopt.h>
|
||||
#include <apr_general.h>
|
||||
#include <apr_lib.h>
|
||||
#include <apr_portable.h>
|
||||
#include <apr_support.h>
|
||||
|
||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||
#include <pcre2.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#ifndef POSIX_MALLOC_THRESHOLD
|
||||
#define POSIX_MALLOC_THRESHOLD (10)
|
||||
#endif
|
||||
|
||||
/* same as APR_SIZE_MAX which doesn't appear until APR 1.3 */
|
||||
#define QSUTIL_SIZE_MAX (~((apr_size_t)0))
|
||||
|
||||
typedef struct {
|
||||
int rm_so;
|
||||
int rm_eo;
|
||||
} regmatch_t;
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\n", qs_CMD(cmd), man_date, man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
printf("%s %s- parses the data received via stdin and executes the defined command on a pattern match.\n",
|
||||
cmd, man ? "\\" : "");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -e <pattern> [-t <number>:<sec>] [-c <pattern> [<command string>]]\n", man ? "" : "Usage: ", cmd);
|
||||
qs_man_print(man, " [-p] [-u <user>] <command string>\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s reads log lines from stdin and searches for the defined pattern.\n", cmd);
|
||||
qs_man_print(man, "It executes the defined command string on pattern match.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -e <pattern>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Specifies the search pattern causing an event which shall trigger the\n");
|
||||
qs_man_print(man, " command.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -t <number>:<sec>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the number of pattern match within the the defined number of\n");
|
||||
qs_man_print(man, " seconds in order to trigger the command execution. By default, every\n");
|
||||
qs_man_print(man, " pattern match causes a command execution.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -c <pattern> [<command string>]\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Pattern which clears the event counter. Executes optionally a command\n");
|
||||
qs_man_print(man, " if an event command has been executed before.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -p\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Writes data also to stdout (for piped logging).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -u <name>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Become another user, e.g. www-data.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " <command string>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the event command string where $0-$9 are substituted by the\n");
|
||||
qs_man_print(man, " submatches of the regular expression.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
} else {
|
||||
printf("Example:\n");
|
||||
}
|
||||
qs_man_print(man, "Executes the deny.sh script providing the IP address of the\n");
|
||||
qs_man_print(man, "client causing a mod_qos(031) messages whenever the log message\n");
|
||||
qs_man_print(man, "appears 10 times within at most one minute:\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_println(man, " ErrorLog \"|/usr/bin/%s -e \\'mod_qos\\(031\\).*, c=([0-9a-zA-Z:.]*)\\' -t 10:60 \\'/usr/local/bin/deny.sh $1\\'\"\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Substitutes for $0-$9 within the matching string.
|
||||
* See ap_pregsub().
|
||||
*/
|
||||
char *qs_pregsub(apr_pool_t *pool, const char *input,
|
||||
const char *source, size_t nmatch,
|
||||
qs_regmatch_t pmatch[]) {
|
||||
const char *src = input;
|
||||
char *dest, *dst;
|
||||
char c;
|
||||
size_t no;
|
||||
int len;
|
||||
if(!source) {
|
||||
return NULL;
|
||||
}
|
||||
if(!nmatch) {
|
||||
return apr_pstrdup(pool, src);
|
||||
}
|
||||
/* First pass, find the size */
|
||||
len = 0;
|
||||
while((c = *src++) != '\0') {
|
||||
if(c == '&')
|
||||
no = 0;
|
||||
else if (c == '$' && apr_isdigit(*src))
|
||||
no = *src++ - '0';
|
||||
else
|
||||
no = 10;
|
||||
|
||||
if (no > 9) { /* Ordinary character. */
|
||||
if (c == '\\' && (*src == '$' || *src == '&'))
|
||||
src++;
|
||||
len++;
|
||||
}
|
||||
else if (no < nmatch && pmatch[no].rm_so < pmatch[no].rm_eo) {
|
||||
if(QSUTIL_SIZE_MAX - len <= pmatch[no].rm_eo - pmatch[no].rm_so) {
|
||||
fprintf(stderr, "ERROR, integer overflow or out of memory condition");
|
||||
return NULL;
|
||||
}
|
||||
len += pmatch[no].rm_eo - pmatch[no].rm_so;
|
||||
}
|
||||
|
||||
}
|
||||
dest = dst = apr_pcalloc(pool, len + 1);
|
||||
/* Now actually fill in the string */
|
||||
src = input;
|
||||
while ((c = *src++) != '\0') {
|
||||
if (c == '&')
|
||||
no = 0;
|
||||
else if (c == '$' && apr_isdigit(*src))
|
||||
no = *src++ - '0';
|
||||
else
|
||||
no = 10;
|
||||
|
||||
if (no > 9) { /* Ordinary character. */
|
||||
if (c == '\\' && (*src == '$' || *src == '&'))
|
||||
c = *src++;
|
||||
*dst++ = c;
|
||||
}
|
||||
else if (no < nmatch && pmatch[no].rm_so < pmatch[no].rm_eo) {
|
||||
len = pmatch[no].rm_eo - pmatch[no].rm_so;
|
||||
memcpy(dst, source + pmatch[no].rm_so, len);
|
||||
dst += len;
|
||||
}
|
||||
}
|
||||
*dst = '\0';
|
||||
return dest;
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
const char *username = NULL;
|
||||
int nr = 0;
|
||||
char *line = calloc(1, MAX_LINE_BUFFER+1);
|
||||
apr_pool_t *pool;
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
const char *command = NULL;
|
||||
const char *pattern = NULL;
|
||||
const char *clearcommand = NULL;
|
||||
const char *clearpattern = NULL;
|
||||
int executed = 0;
|
||||
qs_regex_t *preg;
|
||||
qs_regex_t *clearpreg;
|
||||
qs_regmatch_t regm[QS_MAX_REG_MATCH];
|
||||
time_t sec = 0;
|
||||
int threshold = 0;
|
||||
int counter = 0;
|
||||
time_t countertime;
|
||||
static int pass = 0;
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-e") == 0) {
|
||||
if (--argc >= 1) {
|
||||
pattern = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-u") == 0) {
|
||||
if (--argc >= 1) {
|
||||
username = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-c") == 0) {
|
||||
if (--argc >= 1) {
|
||||
clearpattern = *(++argv);
|
||||
if (argc >=1 && *argv[0] != '-') {
|
||||
clearcommand = *(++argv);
|
||||
argc--;
|
||||
}
|
||||
}
|
||||
} else if(argc >= 1 && strcmp(*argv,"-t") == 0) {
|
||||
if (--argc >= 1) {
|
||||
char *str = apr_pstrdup(pool, *(++argv));
|
||||
char *tme = strchr(str, ':');
|
||||
if(tme == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, invalid number:sec format\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
tme[0] = '\0';
|
||||
tme++;
|
||||
threshold = atoi(str);
|
||||
sec = atol(tme);
|
||||
if(threshold == 0 || sec == 0) {
|
||||
fprintf(stderr,"[%s]: ERROR, invalid number:sec format\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
} else if(argc >= 1 && strcmp(*argv,"-p") == 0) {
|
||||
pass = 1;
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
command = *argv;
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(pattern == NULL || command == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
qs_setuid(username, cmd);
|
||||
|
||||
preg = apr_palloc(pool, sizeof(qs_regex_t));
|
||||
if(qs_regcomp(preg, pattern, PCRE2_DOTALL) != 0) {
|
||||
fprintf(stderr, "ERROR, could not compile '%s'\n", pattern);
|
||||
exit(1);
|
||||
}
|
||||
apr_pool_pre_cleanup_register(pool, preg, qs_pregfree);
|
||||
if(clearpattern) {
|
||||
clearpreg = apr_palloc(pool, sizeof(qs_regex_t));
|
||||
if(qs_regcomp(clearpreg, clearpattern, PCRE2_DOTALL) != 0) {
|
||||
fprintf(stderr, "ERROR, could not compile '%s'\n", clearpattern);
|
||||
exit(1);
|
||||
}
|
||||
apr_pool_pre_cleanup_register(pool, clearpattern, qs_pregfree);
|
||||
}
|
||||
|
||||
while(fgets(line, MAX_LINE_BUFFER, stdin) != NULL) {
|
||||
size_t len;
|
||||
nr++;
|
||||
if(pass) {
|
||||
printf("%s", line);
|
||||
fflush(stdout);
|
||||
}
|
||||
len = strlen(line);
|
||||
if(clearpattern && (qs_regexec_len(clearpreg, line, len, QS_MAX_REG_MATCH, regm, 0) >= 0)) {
|
||||
apr_pool_t *subpool;
|
||||
apr_pool_create(&subpool, pool);
|
||||
counter = 0;
|
||||
countertime = 0;
|
||||
if(clearcommand && executed) {
|
||||
char *replaced = qs_pregsub(subpool, clearcommand, line, QS_MAX_REG_MATCH, regm);
|
||||
if(!replaced) {
|
||||
fprintf(stderr, "[%s]: ERROR, failed to substitute"
|
||||
" submatches '%s' in (%s)\n", cmd, clearcommand, line);
|
||||
} else {
|
||||
int rc = system(replaced);
|
||||
}
|
||||
executed = 0;
|
||||
}
|
||||
apr_pool_destroy(subpool);
|
||||
} else if(qs_regexec_len(preg, line, len, QS_MAX_REG_MATCH, regm, 0) >= 0) {
|
||||
apr_pool_t *subpool;
|
||||
char *replaced;
|
||||
apr_pool_create(&subpool, pool);
|
||||
replaced = qs_pregsub(subpool, command, line, QS_MAX_REG_MATCH, regm);
|
||||
if(!replaced) {
|
||||
fprintf(stderr, "[%s]: ERROR, failed to substitute"
|
||||
" submatches '%s' in (%s)\n", cmd, command, line);
|
||||
} else {
|
||||
counter++;
|
||||
if(counter == 1) {
|
||||
countertime = time(NULL);
|
||||
}
|
||||
if(counter >= threshold) {
|
||||
if(countertime + sec >= time(NULL)) {
|
||||
int rc = system(replaced);
|
||||
executed = 1;
|
||||
}
|
||||
countertime = 0;
|
||||
counter = 0;
|
||||
}
|
||||
}
|
||||
apr_pool_destroy(subpool);
|
||||
}
|
||||
}
|
||||
|
||||
apr_pool_destroy(pool);
|
||||
return 0;
|
||||
}
|
1826
tools/src/qsfilter2.c
Normal file
607
tools/src/qsgeo.c
Normal file
|
@ -0,0 +1,607 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qsgeo.c: resolves the country codes of IP addresses
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qsgeo.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
#include <regex.h>
|
||||
|
||||
/* apr */
|
||||
#include <apr.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_file_io.h>
|
||||
#include <apr_time.h>
|
||||
#include <apr_lib.h>
|
||||
#include <apr_portable.h>
|
||||
#include <apr_support.h>
|
||||
#include <apr_base64.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#define MAX_REG_MATCH 10
|
||||
|
||||
// "3758096128","3758096383","AU"
|
||||
#define QS_GEO_PATTERN "\"([0-9]+)\",\"([0-9]+)\",\"([A-Z0-9]{2}|-)\""
|
||||
// "3758096128","3758096383","AU","Australia"
|
||||
#define QS_GEO_PATTERN_D "\"([0-9]+)\",\"([0-9]+)\",\"([A-Z0-9]{2})\",\"(.*)\""
|
||||
// "192.83.198.0","192.83.198.255","3226715648","3226715903","AU","Australia"
|
||||
#define QS_GEO_PATTERN_EXT "\"[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\",\"[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\",\"([0-9]+)\",\"([0-9]+)\",\"([A-Z0-9]{2})\""
|
||||
// 182.12.34.23
|
||||
#define IPPATTERN "([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3})[\"'\x0d\x0a, ]+"
|
||||
#define IPPATTERN2 "([0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3})[\"'\x0d\x0a,; ]+"
|
||||
|
||||
static int m_inject = 0;
|
||||
static int m_verbose = 0;
|
||||
|
||||
typedef struct {
|
||||
unsigned long start;
|
||||
char *c;
|
||||
} qos_inj_t;
|
||||
|
||||
static const qos_inj_t m_inj[] = {
|
||||
{ 167772160, "\"10.0.0.0\",\"10.255.255.255\",\"167772160\",\"184549375\",\"PV\",\"private network\"" },
|
||||
{ 2130706432, "\"127.0.0.0\",\"127.255.255.255\",\"2130706432\",\"2147483647\",\"LO\",\"local loopback\"" },
|
||||
{ 2886729728, "\"172.16.0.0\",\"172.31.255.255\",\"2886729728\",\"2887778303\",\"PV\",\"private network\"" },
|
||||
{ 3232235520, "\"192.168.0.0\",\"192.168.255.255\",\"3232235520\",\"3232301055\",\"PV\",\"private network\"" },
|
||||
{ 0, NULL }
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
unsigned long start;
|
||||
unsigned long end;
|
||||
char country[3];
|
||||
char c[500];
|
||||
} qos_geo_t;
|
||||
|
||||
typedef struct {
|
||||
int num;
|
||||
char *c;
|
||||
} qos_geo_stat_t;
|
||||
|
||||
static int qos_is_num(const char *num) {
|
||||
int i = 0;
|
||||
while(num[i]) {
|
||||
if(!isdigit(num[i])) {
|
||||
return 0;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts an IPv4 address string to it's numeric value.
|
||||
* w.x.y.z results in 16777216*w + 65536*x + 256*y + z
|
||||
*
|
||||
* @param pool To make a copy of the address to parse
|
||||
* @param ip
|
||||
* @return The address or 0 on error
|
||||
*/
|
||||
static unsigned long qos_geo_str2long(apr_pool_t *pool, const char *ip) {
|
||||
char *p;
|
||||
char *i = apr_pstrdup(pool, ip);
|
||||
unsigned long addr = 0;
|
||||
|
||||
p = strchr(i, '.');
|
||||
if(!p) return 0;
|
||||
p[0] = '\0';
|
||||
if(!qos_is_num(i)) return 0;
|
||||
addr += (atol(i) * 16777216);
|
||||
i = p;
|
||||
i++;
|
||||
|
||||
p = strchr(i, '.');
|
||||
if(!p) return 0;
|
||||
p[0] = '\0';
|
||||
if(!qos_is_num(i)) return 0;
|
||||
addr += (atol(i) * 65536);
|
||||
i = p;
|
||||
i++;
|
||||
|
||||
p = strchr(i, '.');
|
||||
if(!p) return 0;
|
||||
p[0] = '\0';
|
||||
if(!qos_is_num(i)) return 0;
|
||||
addr += (atol(i) * 256);
|
||||
i = p;
|
||||
i++;
|
||||
|
||||
if(!qos_is_num(i)) return 0;
|
||||
addr += (atol(i));
|
||||
|
||||
return addr;
|
||||
}
|
||||
|
||||
static void qos_geo_long2str(char *buf, unsigned long ip) {
|
||||
int a,b,c,d;
|
||||
a = ip % 256;
|
||||
ip = ip / 256;
|
||||
b = ip % 256;
|
||||
ip = ip / 256;
|
||||
c = ip % 256;
|
||||
ip = ip / 256;
|
||||
d = ip % 256;
|
||||
sprintf(buf, "%d.%d.%d.%d", d, c, b, a);
|
||||
}
|
||||
|
||||
/**
|
||||
* Usage message (text or manpage format).
|
||||
*/
|
||||
static void usage(const char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - an utility to lookup a client's country code.\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -d <path> [-l] [-s] [-ip <ip>]\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "Use this utility to resolve the country codes of IP addresses\n");
|
||||
qs_man_print(man, "within existing log files. The utility reads the log file data\n");
|
||||
qs_man_print(man, "from stdin and writes them, with the injected country code, to\n");
|
||||
qs_man_print(man, "stdout.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -d <path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Specifies the path to the geographical database files (CSV\n");
|
||||
qs_man_print(man, " file containing IP address ranges and country codes).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -s\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Writes a summary of the requests per country only.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -l\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Writes the database to stdout (ignoring stdin) inserting\n");
|
||||
qs_man_print(man, " local (127.*) and private (10.*, 172.16*, 192.168.*)\n");
|
||||
qs_man_print(man, " network addresses.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -ip <ip>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Resolves a single IP address instead of processing a log file.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
printf("Reading the file access.log and adding the country code to the IP address field:\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
printf("Example reading the file access.log and adding the country code to\n");
|
||||
printf("the IP address field:\n");
|
||||
}
|
||||
qs_man_println(man, " cat access.log | %s -d GeoIPCountryWhois.csv\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf("Reading the file access.log and showing a summary only:\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
printf("Example reading the file access.log and showing a summary only:\n");
|
||||
}
|
||||
qs_man_println(man, " cat access.log | %s -d GeoIPCountryWhois.csv -s\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf("Resolving a single IP address:\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
printf("Example resolving a single IP address:\n");
|
||||
}
|
||||
qs_man_println(man, " %s -d GeoIPCountryWhois.csv -ip 192.84.12.23\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Comperator to search entries using bsearch.
|
||||
*/
|
||||
static int qos_geo_comp(const void *_pA, const void *_pB) {
|
||||
unsigned long *pA = (unsigned long *)_pA;
|
||||
qos_geo_t *pB = (qos_geo_t *)_pB;
|
||||
unsigned long search = *pA;
|
||||
if((search >= pB->start) && (search <= pB->end)) return 0;
|
||||
if(search > pB->start) return 1;
|
||||
if(search < pB->start) return -1;
|
||||
return -1; // error
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the (sorted) CSV file into the memory.
|
||||
*
|
||||
* @param pool
|
||||
* @param db Path to the db file
|
||||
* @param size Returns the size f the db (elements in the array)
|
||||
* @param msg Error message if something got wrong
|
||||
* @return Array with all entries from the CSV file (or NULL on error)
|
||||
*/
|
||||
static qos_geo_t *qos_loadgeo(apr_pool_t *pool, const char *db, int *size, char **msg, int *errors) {
|
||||
regmatch_t ma[MAX_REG_MATCH];
|
||||
regex_t preg;
|
||||
regex_t pregd;
|
||||
regex_t pregext;
|
||||
qos_geo_t *geo = NULL;
|
||||
qos_geo_t *g = NULL;
|
||||
qos_geo_t *last = NULL;
|
||||
int lines = 0;
|
||||
char line[HUGE_STRING_LEN];
|
||||
char buf[HUGE_STRING_LEN];
|
||||
FILE *file;
|
||||
const qos_inj_t *inj = m_inj;
|
||||
*size = 0;
|
||||
if(regcomp(&preg, QS_GEO_PATTERN, REG_EXTENDED)) {
|
||||
// internal error
|
||||
*msg = apr_pstrdup(pool, "failed to compile regular expression "QS_GEO_PATTERN);
|
||||
(*errors)++;
|
||||
return NULL;
|
||||
}
|
||||
if(regcomp(&pregd, QS_GEO_PATTERN_D, REG_EXTENDED)) {
|
||||
// internal error
|
||||
*msg = apr_pstrdup(pool, "failed to compile regular expression "QS_GEO_PATTERN_D);
|
||||
(*errors)++;
|
||||
return NULL;
|
||||
}
|
||||
if(regcomp(&pregext, QS_GEO_PATTERN_EXT, REG_EXTENDED)) {
|
||||
// internal error
|
||||
*msg = apr_pstrdup(pool, "failed to compile regular expression "QS_GEO_PATTERN_EXT);
|
||||
(*errors)++;
|
||||
return NULL;
|
||||
}
|
||||
file = fopen(db, "r");
|
||||
if(!file) {
|
||||
(*errors)++;
|
||||
return NULL;
|
||||
}
|
||||
while(fgets(line, sizeof(line), file) != NULL) {
|
||||
if(strlen(line) > 0) {
|
||||
if(regexec(&preg, line, 0, NULL, 0) == 0) {
|
||||
lines++;
|
||||
} else {
|
||||
*msg = apr_psprintf(pool, "invalid entry in database: '%s'", line);
|
||||
(*errors)++;
|
||||
if(m_verbose) {
|
||||
char *p = *msg;
|
||||
while(p[0]) {
|
||||
if(p[0] < 32) {
|
||||
p[0] = '.';
|
||||
}
|
||||
p++;
|
||||
}
|
||||
fprintf(stderr, "line %d: %s\n", lines, *msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
*size = lines;
|
||||
geo = apr_pcalloc(pool, sizeof(qos_geo_t) * lines);
|
||||
g = geo;
|
||||
fseek(file, 0, SEEK_SET);
|
||||
lines = 0;
|
||||
while(fgets(line, sizeof(line), file) != NULL) {
|
||||
lines++;
|
||||
if(strlen(line) > 0) {
|
||||
int plus = 0;
|
||||
if(m_inject) {
|
||||
strcpy(buf, line);
|
||||
}
|
||||
if(regexec(&pregd, line, MAX_REG_MATCH, ma, 0) == 0) {
|
||||
plus = 1;
|
||||
}
|
||||
if(plus || regexec(&preg, line, MAX_REG_MATCH, ma, 0) == 0) {
|
||||
int missingAddr = 0;
|
||||
if(regexec(&pregext, line, 0, NULL, 0) != 0) {
|
||||
missingAddr = 1;
|
||||
}
|
||||
line[ma[1].rm_eo] = '\0';
|
||||
line[ma[2].rm_eo] = '\0';
|
||||
line[ma[3].rm_eo] = '\0';
|
||||
g->start = atoll(&line[ma[1].rm_so]);
|
||||
g->end = atoll(&line[ma[2].rm_so]);
|
||||
g->c[0] = '\0';
|
||||
if(m_inject) {
|
||||
if(inj->start && (g->start > inj->start)) {
|
||||
while(inj->start && (g->start > inj->start)) {
|
||||
printf("%s\n", inj->c);
|
||||
inj++;
|
||||
}
|
||||
} else if(g->start != inj->start) {
|
||||
if(missingAddr) {
|
||||
/* some databases do not include IP address
|
||||
representation (but number only) */
|
||||
char bs[128];
|
||||
char be[128];
|
||||
qos_geo_long2str(bs, g->start);
|
||||
qos_geo_long2str(be, g->end);
|
||||
printf("\"%s\",\"%s\",%s", bs, be, buf);
|
||||
}
|
||||
}
|
||||
if(!missingAddr) {
|
||||
printf("%s", buf);
|
||||
}
|
||||
}
|
||||
strncpy(g->country, &line[ma[3].rm_so], 2);
|
||||
if(last) {
|
||||
if(g->start < last->start) {
|
||||
*msg = apr_psprintf(pool, "wrong order/lines not sorted (line %d)", lines);
|
||||
(*errors)++;
|
||||
if(m_verbose) {
|
||||
fprintf(stderr, "line %d: wrong order/lines not sorted\n", lines);
|
||||
}
|
||||
}
|
||||
}
|
||||
if(plus) {
|
||||
line[ma[4].rm_eo] = '\0';
|
||||
strncpy(g->c, &line[ma[4].rm_so], 500);
|
||||
}
|
||||
last = g;
|
||||
g++;
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(file);
|
||||
return geo;
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
int errors = 0;
|
||||
int rc;
|
||||
int stat = 0;
|
||||
const char *ip = NULL;
|
||||
char *msg = NULL;
|
||||
qos_geo_t *geo;
|
||||
int size;
|
||||
const char *db = NULL;
|
||||
apr_table_t *entries;
|
||||
apr_pool_t *pool;
|
||||
const char *cmd = strrchr(argv[0], '/');
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
entries = apr_table_make(pool, 100);
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv, "-d") == 0) {
|
||||
if (--argc >= 1) {
|
||||
db = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv, "-ip") == 0) {
|
||||
if (--argc >= 1) {
|
||||
ip = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv, "-s") == 0) {
|
||||
stat = 1;
|
||||
} else if(strcmp(*argv, "-l") == 0) {
|
||||
m_inject = 1;
|
||||
} else if(strcmp(*argv, "-v") == 0) {
|
||||
m_verbose = 1;
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(db == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
rc = nice(10);
|
||||
if(rc == -1) {
|
||||
fprintf(stderr, "ERROR, failed to change nice value: %s\n", strerror(errno));
|
||||
}
|
||||
|
||||
geo = qos_loadgeo(pool, db, &size, &msg, &errors);
|
||||
if(geo == NULL || msg != NULL) {
|
||||
if(msg) {
|
||||
char *p = msg;
|
||||
while(p[0]) {
|
||||
if(p[0] < 32) {
|
||||
p[0] = '.';
|
||||
}
|
||||
p++;
|
||||
}
|
||||
}
|
||||
fprintf(stderr, "failed to load database: %s (total %d errors)\n",
|
||||
msg ? msg : "-", errors);
|
||||
exit(1);
|
||||
}
|
||||
if(m_inject) {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
if(ip) {
|
||||
qos_geo_t *pB;
|
||||
unsigned long search = qos_geo_str2long(pool, ip);
|
||||
printf("search %lu: ", search);
|
||||
pB = bsearch(&search,
|
||||
geo,
|
||||
size,
|
||||
sizeof(qos_geo_t),
|
||||
qos_geo_comp);
|
||||
if(pB) {
|
||||
printf("%s\n", pB->country);
|
||||
} else {
|
||||
printf("n/a\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
// start reading from stdin
|
||||
{
|
||||
char prev;
|
||||
qos_geo_t *pB;
|
||||
apr_pool_t *tmp;
|
||||
char *line = calloc(1, MAX_LINE_BUFFER+1);
|
||||
regex_t preg;
|
||||
regex_t preg2;
|
||||
regmatch_t ma[MAX_REG_MATCH];
|
||||
apr_pool_create(&tmp, NULL);
|
||||
if(regcomp(&preg, IPPATTERN, REG_EXTENDED)) {
|
||||
exit(1);
|
||||
}
|
||||
regcomp(&preg2, IPPATTERN2, REG_EXTENDED);
|
||||
while(fgets(line, MAX_LINE_BUFFER, stdin) != NULL) {
|
||||
int match = regexec(&preg, line, MAX_REG_MATCH, ma, 0);
|
||||
if(match != 0) {
|
||||
char *dx = strchr(line, ';');
|
||||
if(dx && ((dx - line) <= 15)) {
|
||||
// file starts probably with <ip>; => a qslog -pc file?
|
||||
match = regexec(&preg2, line, MAX_REG_MATCH, ma, 0);
|
||||
}
|
||||
}
|
||||
if(match == 0) {
|
||||
unsigned long search;
|
||||
prev = line[ma[1].rm_eo];
|
||||
line[ma[1].rm_eo] = '\0';
|
||||
search = qos_geo_str2long(tmp, &line[ma[1].rm_so]);
|
||||
apr_pool_clear(tmp);
|
||||
pB = bsearch(&search,
|
||||
geo,
|
||||
size,
|
||||
sizeof(qos_geo_t),
|
||||
qos_geo_comp);
|
||||
if(stat) {
|
||||
/* creates a single statistic entry for each country (used to collect
|
||||
requests per source country) */
|
||||
if(pB) {
|
||||
qos_geo_stat_t *s = (qos_geo_stat_t *)apr_table_get(entries, pB->country);
|
||||
if(s == NULL) {
|
||||
s = apr_pcalloc(pool, sizeof(qos_geo_stat_t));
|
||||
s->num = 0;
|
||||
s->c = pB->c;
|
||||
apr_table_addn(entries, apr_pstrdup(pool, pB->country), (char *)s);
|
||||
}
|
||||
s->num++;
|
||||
}
|
||||
} else {
|
||||
/* modifies each log line inserting the country code
|
||||
*/
|
||||
char cr = prev;
|
||||
char delw[2];
|
||||
char delx[2];
|
||||
delw[1] = '\0';
|
||||
delw[0] = ' ';
|
||||
delx[1] = '\0';
|
||||
delx[0] = ' ';
|
||||
if(line[ma[1].rm_eo+1] == ' ') {
|
||||
delx[0] = '\0';
|
||||
}
|
||||
if(line[ma[1].rm_eo+1] == ';') {
|
||||
delx[0] = ';';
|
||||
}
|
||||
if(prev <= CR) {
|
||||
prev = ' ';
|
||||
}
|
||||
if(prev == ' ') {
|
||||
delw[0] = '\0';
|
||||
}
|
||||
if(prev == ';') {
|
||||
delw[0] = '\0';
|
||||
delx[0] = ';';
|
||||
}
|
||||
if(pB) {
|
||||
printf("%s%c%s%s%s%s", line, prev,
|
||||
delw,
|
||||
pB->country,
|
||||
delx,
|
||||
&line[ma[1].rm_eo+1]);
|
||||
} else {
|
||||
printf("%s%c%s--%s%s", line, prev,
|
||||
delw,
|
||||
delx,
|
||||
&line[ma[1].rm_eo+1]);
|
||||
}
|
||||
if(cr <= CR) {
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
} else {
|
||||
printf("%s", line);
|
||||
}
|
||||
fflush(stdout);
|
||||
}
|
||||
if(stat) {
|
||||
int i;
|
||||
apr_table_entry_t *entry = (apr_table_entry_t *)apr_table_elts(entries)->elts;
|
||||
for(i = 0; i < apr_table_elts(entries)->nelts; i++) {
|
||||
qos_geo_stat_t *s = (qos_geo_stat_t *)entry[i].val;
|
||||
printf("%7.d %s %s\n", s->num, entry[i].key, s->c ? s->c : "");
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
301
tools/src/qsgrep.c
Normal file
|
@ -0,0 +1,301 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
/**
|
||||
* Filter utility for the quality of service module mod_qos.
|
||||
*
|
||||
* qsgrep.c: simple tool to search patterns within files
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qsgrep.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
/* system */
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
|
||||
/* apr */
|
||||
#include <apr.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_file_io.h>
|
||||
#include <apr_time.h>
|
||||
#include <apr_getopt.h>
|
||||
#include <apr_general.h>
|
||||
#include <apr_lib.h>
|
||||
#include <apr_portable.h>
|
||||
#include <apr_support.h>
|
||||
|
||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||
#include <pcre2.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#ifndef POSIX_MALLOC_THRESHOLD
|
||||
#define POSIX_MALLOC_THRESHOLD (10)
|
||||
#endif
|
||||
|
||||
/* same as APR_SIZE_MAX which doesn't appear until APR 1.3 */
|
||||
#define QSUTIL_SIZE_MAX (~((apr_size_t)0))
|
||||
|
||||
typedef struct {
|
||||
int rm_so;
|
||||
int rm_eo;
|
||||
} regmatch_t;
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - prints matching patterns within a file.\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -e <pattern> -o <sub string> [<path>]\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s is a simple tool to search patterns within files.\n", cmd);
|
||||
qs_man_print(man, "It uses regular expressions to find patterns and prints the\n");
|
||||
qs_man_print(man, "submatches within a pre-defined format string.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -e <pattern>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Specifies the search pattern.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -o <string>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the output string where $0-$9 are substituted by the\n");
|
||||
qs_man_print(man, " submatches of the regular expression.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " <path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the input file to process. %s reads from\n", cmd);
|
||||
qs_man_print(man, " from standard input if this parameter is omitted.\n");
|
||||
printf("\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
qs_man_println(man, "Shows the IP addresses of clients causing mod_qos(031) messages):\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
printf("Example (shows the IP addresses of clients causing mod_qos(031) messages):\n");
|
||||
}
|
||||
qs_man_println(man, " %s -e 'mod_qos\\(031\\).*, c=([a-zA-Z0-9:.]*)' -o 'ip=$1' error_log\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Substitutes for $0-$9 within the matching string.
|
||||
* See ap_pregsub().
|
||||
*/
|
||||
char *qs_pregsub(apr_pool_t *pool, const char *input,
|
||||
const char *source, size_t nmatch,
|
||||
qs_regmatch_t pmatch[]) {
|
||||
const char *src = input;
|
||||
char *dest, *dst;
|
||||
char c;
|
||||
size_t no;
|
||||
int len;
|
||||
if(!source) {
|
||||
return NULL;
|
||||
}
|
||||
if(!nmatch) {
|
||||
return apr_pstrdup(pool, src);
|
||||
}
|
||||
/* First pass, find the size */
|
||||
len = 0;
|
||||
while((c = *src++) != '\0') {
|
||||
if(c == '&')
|
||||
no = 0;
|
||||
else if (c == '$' && apr_isdigit(*src))
|
||||
no = *src++ - '0';
|
||||
else
|
||||
no = 10;
|
||||
|
||||
if (no > 9) { /* Ordinary character. */
|
||||
if (c == '\\' && (*src == '$' || *src == '&'))
|
||||
src++;
|
||||
len++;
|
||||
}
|
||||
else if (no < nmatch && pmatch[no].rm_so < pmatch[no].rm_eo) {
|
||||
if(QSUTIL_SIZE_MAX - len <= pmatch[no].rm_eo - pmatch[no].rm_so) {
|
||||
fprintf(stderr, "ERROR, integer overflow or out of memory condition");
|
||||
return NULL;
|
||||
}
|
||||
len += pmatch[no].rm_eo - pmatch[no].rm_so;
|
||||
}
|
||||
|
||||
}
|
||||
dest = dst = apr_pcalloc(pool, len + 1);
|
||||
/* Now actually fill in the string */
|
||||
src = input;
|
||||
while ((c = *src++) != '\0') {
|
||||
if (c == '&')
|
||||
no = 0;
|
||||
else if (c == '$' && apr_isdigit(*src))
|
||||
no = *src++ - '0';
|
||||
else
|
||||
no = 10;
|
||||
|
||||
if (no > 9) { /* Ordinary character. */
|
||||
if (c == '\\' && (*src == '$' || *src == '&'))
|
||||
c = *src++;
|
||||
*dst++ = c;
|
||||
}
|
||||
else if (no < nmatch && pmatch[no].rm_so < pmatch[no].rm_eo) {
|
||||
len = pmatch[no].rm_eo - pmatch[no].rm_so;
|
||||
memcpy(dst, source + pmatch[no].rm_so, len);
|
||||
dst += len;
|
||||
}
|
||||
}
|
||||
*dst = '\0';
|
||||
return dest;
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
unsigned long nr = 0;
|
||||
char line[32768];
|
||||
FILE *file = 0;
|
||||
apr_pool_t *pool;
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
const char *out = NULL;
|
||||
const char *pattern = NULL;
|
||||
const char *filename = NULL;
|
||||
qs_regex_t *preg;
|
||||
qs_regmatch_t regm[QS_MAX_REG_MATCH];
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-e") == 0) {
|
||||
if (--argc >= 1) {
|
||||
pattern = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-o") == 0) {
|
||||
if (--argc >= 1) {
|
||||
out = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
filename = *argv;
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(pattern == NULL || out == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
if(nice(10) == -1) {
|
||||
fprintf(stderr, "ERROR, failed to change nice value: %s\n", strerror(errno));
|
||||
}
|
||||
|
||||
preg = apr_palloc(pool, sizeof(qs_regex_t));
|
||||
if(qs_regcomp(preg, pattern, PCRE2_DOTALL) != 0) {
|
||||
fprintf(stderr, "ERROR, could not compile '%s\n", pattern);
|
||||
exit(1);
|
||||
}
|
||||
apr_pool_pre_cleanup_register(pool, preg, qs_pregfree);
|
||||
|
||||
if(filename) {
|
||||
file = fopen(filename, "r");
|
||||
if(!file) {
|
||||
fprintf(stderr, "ERROR, could not open file\n");
|
||||
exit(1);
|
||||
}
|
||||
} else {
|
||||
file = stdin;
|
||||
}
|
||||
|
||||
while(fgets(line, sizeof(line), file) != NULL) {
|
||||
size_t len = strlen(line);
|
||||
nr++;
|
||||
if(qs_regexec_len(preg, line, len, QS_MAX_REG_MATCH, regm, 0) >= 0) {
|
||||
apr_pool_t *subpool;
|
||||
char *replaced;
|
||||
apr_pool_create(&subpool, pool);
|
||||
replaced = qs_pregsub(subpool, out, line, QS_MAX_REG_MATCH, regm);
|
||||
if(!replaced) {
|
||||
fprintf(stderr, "ERROR, failed to substitute submatches (line=%lu)\n", nr);
|
||||
} else {
|
||||
printf("%s\n", replaced);
|
||||
fflush(stdout);
|
||||
}
|
||||
apr_pool_destroy(subpool);
|
||||
}
|
||||
}
|
||||
|
||||
if(filename) {
|
||||
fclose(file);
|
||||
}
|
||||
apr_pool_destroy(pool);
|
||||
return 0;
|
||||
}
|
132
tools/src/qshead.c
Normal file
|
@ -0,0 +1,132 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qshead.c: Shows the beginning of a log file stopping at the provided pattern.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qshead.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <signal.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - an utility reading from stdin and printing all"
|
||||
" lines to stdout until"
|
||||
" reaching the defined pattern.\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -p <pattern>\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, " %s reads lines from stdin and prints them to stdout until a line contains\n", cmd);
|
||||
qs_man_print(man, " the specified pattern (literal string).\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -p <pattern>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Search pattern (literal string).\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1) qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
char line[32768];
|
||||
const char *pattern = NULL;
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
int status = 0;
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-p") == 0) {
|
||||
if (--argc >= 1) {
|
||||
pattern = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(pattern == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
while(fgets(line, sizeof(line), stdin) != NULL) {
|
||||
printf("%s", line);
|
||||
if(strstr(line, pattern)) {
|
||||
return status;
|
||||
}
|
||||
}
|
||||
return status;
|
||||
}
|
2681
tools/src/qslog.c
Normal file
423
tools/src/qslogger.c
Normal file
|
@ -0,0 +1,423 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qslogger.c: Piped logging forwarding log data to syslog
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qslogger.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
#include <errno.h>
|
||||
#include <regex.h>
|
||||
#include <syslog.h>
|
||||
|
||||
#include <apr.h>
|
||||
#include <apr_lib.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
// [Wed Mar 28 22:40:41 2012] [warn]
|
||||
#define QS_DEFAULTPATTERN "^\\[[0-9a-zA-Z :]+\\] \\[([a-z]+)\\] "
|
||||
|
||||
#define QS_MAX_PATTERN_MA 2
|
||||
|
||||
static int m_default_severity = LOG_NOTICE;
|
||||
|
||||
/**
|
||||
* Similar to standard strstr() but case insensitive and length limitation
|
||||
* (string which is not 0 terminated).
|
||||
*
|
||||
* @param s1 String to search in
|
||||
* @param s2 Pattern to ind
|
||||
* @param len Length of s1
|
||||
* @return pointer to the beginning of the substring s2 within s1, or NULL
|
||||
* if the substring is not found
|
||||
*/
|
||||
static const char *qs_strncasestr(const char *s1, const char *s2, int len) {
|
||||
const char *e1 = &s1[len-1];
|
||||
char *p1, *p2;
|
||||
if (*s2 == '\0') {
|
||||
/* an empty s2 */
|
||||
return((char *)s1);
|
||||
}
|
||||
while(1) {
|
||||
for ( ; (*s1 != '\0') && (s1 <= e1) && (apr_tolower(*s1) != apr_tolower(*s2)); s1++);
|
||||
if (*s1 == '\0' || s1 > e1) {
|
||||
return(NULL);
|
||||
}
|
||||
/* found first character of s2, see if the rest matches */
|
||||
p1 = (char *)s1;
|
||||
p2 = (char *)s2;
|
||||
for (++p1, ++p2; (apr_tolower(*p1) == apr_tolower(*p2)) && (p1 <= e1); ++p1, ++p2) {
|
||||
if((p1 > e1) && (*p2 != '\0')) {
|
||||
// reached the end without match
|
||||
return NULL;
|
||||
}
|
||||
if (*p2 == '\0') {
|
||||
/* both strings ended together */
|
||||
return((char *)s1);
|
||||
}
|
||||
}
|
||||
if (*p2 == '\0') {
|
||||
/* second string ended, a match */
|
||||
break;
|
||||
}
|
||||
/* didn't find a match here, try starting at next character in s1 */
|
||||
s1++;
|
||||
}
|
||||
return((char *)s1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rerurns the priority value
|
||||
*
|
||||
* @param priorityname Part of the log message to search the priority in
|
||||
* @param len Length of the priority string
|
||||
* @return Priority, LOG_NOTICE (see m_default_severity) if provided name is not recognized.
|
||||
*/
|
||||
static int qsgetprio(const char *priorityname, int len) {
|
||||
int p = m_default_severity;
|
||||
if(!priorityname) {
|
||||
return p;
|
||||
}
|
||||
if(qs_strncasestr(priorityname, "alert", len)) {
|
||||
p = LOG_ALERT;
|
||||
} else if(qs_strncasestr(priorityname, "crit", len)) {
|
||||
p = LOG_CRIT;
|
||||
} else if(qs_strncasestr(priorityname, "debug", len)) {
|
||||
p = LOG_DEBUG;
|
||||
} else if(qs_strncasestr(priorityname, "emerg", len)) {
|
||||
p = LOG_EMERG;
|
||||
} else if(qs_strncasestr(priorityname, "err", len)) {
|
||||
p = LOG_ERR;
|
||||
} else if(qs_strncasestr(priorityname, "info", len)) {
|
||||
p = LOG_INFO;
|
||||
} else if(qs_strncasestr(priorityname, "notice", len)) {
|
||||
p = LOG_NOTICE;
|
||||
} else if(qs_strncasestr(priorityname, "panic", len)) {
|
||||
p = LOG_EMERG;
|
||||
} else if(qs_strncasestr(priorityname, "warn", len)) {
|
||||
p = LOG_WARNING;
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
||||
/**
|
||||
* Extracts the severity of the message using the provided
|
||||
* regular expression and determinest the priofity using
|
||||
* qsgetprio().
|
||||
*
|
||||
* @param preg Regular expression to extract the severity
|
||||
* @param line Log fline to extract the severity from
|
||||
* @return Level or LOG_NOTICE (see m_default_severity) if level could not be determined.
|
||||
*/
|
||||
static int qsgetlevel(regex_t preg, const char *line) {
|
||||
int level = m_default_severity;
|
||||
regmatch_t ma[QS_MAX_PATTERN_MA];
|
||||
if(regexec(&preg, line, QS_MAX_PATTERN_MA, ma, 0) == 0) {
|
||||
int len = ma[1].rm_eo - ma[1].rm_so;
|
||||
level = qsgetprio(&line[ma[1].rm_so], len);
|
||||
}
|
||||
return level;
|
||||
}
|
||||
|
||||
/* entry within the facility table */
|
||||
typedef struct {
|
||||
const char* name;
|
||||
int f;
|
||||
} qs_f_t;
|
||||
|
||||
/**
|
||||
* Table of known facilities, see sys/syslog.h.
|
||||
*/
|
||||
static const qs_f_t qs_facilities[] = {
|
||||
#ifdef LOG_AUTHPRIV
|
||||
{ "authpriv", LOG_AUTHPRIV },
|
||||
#endif
|
||||
{ "auth", LOG_AUTH },
|
||||
{ "cron", LOG_CRON },
|
||||
{ "daemon", LOG_DAEMON },
|
||||
#ifdef LOG_FTP
|
||||
{ "ftp", LOG_FTP },
|
||||
#endif
|
||||
{ "kern", LOG_KERN },
|
||||
{ "lpr", LOG_LPR },
|
||||
{ "mail", LOG_MAIL },
|
||||
{ "news", LOG_NEWS },
|
||||
{ "security", LOG_AUTH },
|
||||
{ "syslog", LOG_SYSLOG },
|
||||
{ "user", LOG_USER },
|
||||
{ "uucp", LOG_UUCP },
|
||||
{ "local0", LOG_LOCAL0 },
|
||||
{ "local1", LOG_LOCAL1 },
|
||||
{ "local2", LOG_LOCAL2 },
|
||||
{ "local3", LOG_LOCAL3 },
|
||||
{ "local4", LOG_LOCAL4 },
|
||||
{ "local5", LOG_LOCAL5 },
|
||||
{ "local6", LOG_LOCAL6 },
|
||||
{ "local7", LOG_LOCAL7 },
|
||||
{ NULL, -1 }
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines the facility (user input).
|
||||
*
|
||||
* @param facilityname
|
||||
* @return The facility id or LOG_DAEMON if the provided
|
||||
* string is unknown.
|
||||
*/
|
||||
static int qsgetfacility(const char *facilityname) {
|
||||
int f = LOG_DAEMON;
|
||||
const qs_f_t *facilities = qs_facilities;
|
||||
if(!facilityname) {
|
||||
return f;
|
||||
}
|
||||
while(facilities->name) {
|
||||
if(strcasecmp(facilityname, facilities->name) == 0) {
|
||||
f = facilities->f;
|
||||
break;
|
||||
}
|
||||
facilities++;
|
||||
}
|
||||
return f;
|
||||
}
|
||||
|
||||
/**
|
||||
* Usage message (or man page)
|
||||
*
|
||||
* @param cmd
|
||||
* @param man
|
||||
*/
|
||||
static void usage(const char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - another shell command interface to the system log module (syslog).\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s [-t <tag>] [-f <facility>] [-l <level>] [-x <prefix>] [-r <expression>] [-d <level>] [-u <name>] [-p]\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "Use this utility to forward log messages to the systems syslog\n");
|
||||
qs_man_print(man, "facility, e.g., to forward the messages to a remote host.\n");
|
||||
qs_man_print(man, "It reads data from stdin.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -t <tag>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the tag name which shall be used to define the origin\n");
|
||||
qs_man_print(man, " of the messages, e.g. 'httpd'.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -f <facility>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the syslog facility. Default is 'daemon'.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -u <name>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Becomes another user, e.g. www-data.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -l <level>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the minimal severity a message must have in order to\n");
|
||||
qs_man_print(man, " be forwarded. Default is 'DEBUG' (forwarding everything).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -x <prefix>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Allows you to add a prefix (literal string) to every message.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -r <expression>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Specifies a regular expression which shall be used to\n");
|
||||
qs_man_print(man, " determine the severity (syslog level) for each log line.\n");
|
||||
qs_man_print(man, " The default pattern '"QS_DEFAULTPATTERN"' can\n");
|
||||
qs_man_print(man, " be used for Apache error log messages but you may configure\n");
|
||||
qs_man_print(man, " your own pattern matching other log formats. Use brackets\n");
|
||||
qs_man_print(man, " to define the pattern enclosing the severity string.\n");
|
||||
qs_man_print(man, " Default level (if severity can't be determined) is defined by the\n");
|
||||
qs_man_print(man, " option '-d' (see below).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -d <level>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " The default severity if the specified pattern (-r) does not\n");
|
||||
qs_man_print(man, " match and the message's severity can't be determined. Default\n");
|
||||
qs_man_print(man, " is 'NOTICE'.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -p\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Writes data also to stdout (for piped logging).\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
} else {
|
||||
printf("Example:\n");
|
||||
}
|
||||
qs_man_println(man, " ErrorLog \"|/usr/bin/%s -t apache -f local7\"\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
int line_len;
|
||||
char *line = calloc(1, MAX_LINE_BUFFER+1);
|
||||
const char *cmd = strrchr(argv[0], '/');
|
||||
int pass = 0;
|
||||
const char *tag = NULL;
|
||||
int facility = LOG_DAEMON;
|
||||
int severity = LOG_DEBUG;
|
||||
int level = LOG_INFO;
|
||||
const char *regexpattern = QS_DEFAULTPATTERN;
|
||||
const char *username = NULL;
|
||||
const char *prefix = NULL;
|
||||
regex_t preg;
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv, "-p") == 0) {
|
||||
pass = 1;
|
||||
} else if(strcmp(*argv, "-f") == 0) {
|
||||
if (--argc >= 1) {
|
||||
const char *facilityname = *(++argv);
|
||||
facility = qsgetfacility(facilityname);
|
||||
}
|
||||
} else if(strcmp(*argv, "-l") == 0) {
|
||||
if (--argc >= 1) {
|
||||
const char *severityname = *(++argv);
|
||||
severity = qsgetprio(severityname, strlen(severityname));
|
||||
}
|
||||
} else if(strcmp(*argv, "-x") == 0) {
|
||||
if (--argc >= 1) {
|
||||
prefix = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-u") == 0) { /* switch user id */
|
||||
if (--argc >= 1) {
|
||||
username = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv, "-d") == 0) {
|
||||
if (--argc >= 1) {
|
||||
const char *severityname = *(++argv);
|
||||
m_default_severity = qsgetprio(severityname, strlen(severityname));
|
||||
}
|
||||
} else if(strcmp(*argv, "-t") == 0) {
|
||||
if (--argc >= 1) {
|
||||
tag = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv, "-r") == 0) {
|
||||
if (--argc >= 1) {
|
||||
regexpattern = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(regcomp(&preg, regexpattern, REG_EXTENDED)) {
|
||||
fprintf(stderr, "[%s] failed to compile pattern %s", cmd, regexpattern);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
qs_setuid(username, cmd);
|
||||
|
||||
openlog(tag ? tag : getlogin(), 0, facility);
|
||||
|
||||
// start reading from stdin
|
||||
while(fgets(line, MAX_LINE_BUFFER, stdin) != NULL) {
|
||||
line_len = strlen(line) - 1;
|
||||
while(line_len > 0) { // cut tailing CR/LF
|
||||
if(line[line_len] >= ' ') {
|
||||
break;
|
||||
}
|
||||
line[line_len] = '\0';
|
||||
line_len--;
|
||||
}
|
||||
// severity is determined using the regular expression provided by the user
|
||||
level = qsgetlevel(preg, line);
|
||||
if(level <= severity) {
|
||||
// send message
|
||||
if(prefix) {
|
||||
syslog(level, "%s%s", prefix, line);
|
||||
} else {
|
||||
syslog(level, "%s", line);
|
||||
}
|
||||
}
|
||||
if(pass) {
|
||||
printf("%s\n", line);
|
||||
fflush(stdout);
|
||||
}
|
||||
}
|
||||
free(line);
|
||||
closelog();
|
||||
return 0;
|
||||
}
|
784
tools/src/qspng.c
Normal file
|
@ -0,0 +1,784 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qspng.c: Tool to draw graph from qslog output.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qspng.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <png.h>
|
||||
|
||||
//#include <config.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
#include "char.h"
|
||||
|
||||
#define HUGE_STRING_LEN 1024
|
||||
#define X_SAMPLE_RATE 3
|
||||
/* width */
|
||||
#define X_COUNTS 60 * 24 / X_SAMPLE_RATE // 24 hours, every 3th sample
|
||||
/* height */
|
||||
#define Y_COUNTS 100
|
||||
/* border */
|
||||
#define XY_BORDER 20
|
||||
|
||||
typedef struct {
|
||||
const char* param;
|
||||
const char* name;
|
||||
int r;
|
||||
int g;
|
||||
int b;
|
||||
} qs_png_elt_t;
|
||||
|
||||
/* known graph types */
|
||||
static const qs_png_elt_t qs_png_elts[] = {
|
||||
{ "r/s", "requests per second", 20, 30, 130, },
|
||||
{ "req", "requests per minute", 20, 30, 130, },
|
||||
{ "b/s", "bytes per second (out)", 30, 45, 130 },
|
||||
{ "ib/s", "bytes per second (in)", 30, 45, 125 },
|
||||
{ "esco", "established connections per minute", 40, 95, 140 },
|
||||
{ "av", "average response time", 40, 95, 140 },
|
||||
{ "avms", "average response time in milliseconds", 45, 95, 135 },
|
||||
{ "0-49ms", "requests duration 0-49ms", 45, 100, 180 },
|
||||
{ "50-99ms", "requests duration 50-99ms", 45, 100, 180 },
|
||||
{ "100-499ms", "requests duration 100-499ms", 45, 100, 180 },
|
||||
{ "500-999ms", "requests duration 500-999ms", 45, 100, 180 },
|
||||
{ "<1s", "requests faster than 1 second", 35, 95, 180 },
|
||||
{ "1s", "requests faster or equal than 1 second", 35, 90, 180 },
|
||||
{ "2s", "requests with 2 seconds response time", 30, 85, 180 },
|
||||
{ "3s", "requests with 3 seconds response time", 25, 90, 180 },
|
||||
{ "4s", "requests with 4 seconds response time", 25, 95, 180 },
|
||||
{ "5s", "requests with 5 seconds response time", 15, 90, 180 },
|
||||
{ ">5s","requests slower than 5 seconds", 35, 90, 185 },
|
||||
{ "1xx","requests with HTTP status 1xx", 50, 70, 150 },
|
||||
{ "2xx","requests with HTTP status 2xx", 50, 70, 150 },
|
||||
{ "3xx","requests with HTTP status 3xx", 50, 70, 150 },
|
||||
{ "4xx","requests with HTTP status 4xx", 50, 70, 150 },
|
||||
{ "5xx","requests with HTTP status 5xx", 50, 70, 150 },
|
||||
{ "ip", "IP addresses", 55, 60, 150 },
|
||||
{ "usr","active users", 55, 66, 150 },
|
||||
{ "qV", "created VIP sessions", 55, 50, 155 },
|
||||
{ "qS", "session pass", 55, 75, 160 },
|
||||
{ "qD", "access denied", 55, 70, 170 },
|
||||
{ "qK", "connection closed", 55, 60, 145 },
|
||||
{ "qT", "dynamic keep-alive", 55, 55, 153 },
|
||||
{ "qL", "slow down", 55, 65, 140 },
|
||||
{ "qA", "connection aborts", 55, 50, 175 },
|
||||
{ "qs", "serialization", 55, 40, 175 },
|
||||
{ "qu", "start user tracking", 55, 45, 175 },
|
||||
{ "sl", "system load", 25, 60, 175 },
|
||||
{ "m", "free memory", 35, 90, 185 },
|
||||
{ NULL, NULL, 0, 0, 0 }
|
||||
};
|
||||
|
||||
typedef struct qs_png_conf_st {
|
||||
char *path;
|
||||
char *param;
|
||||
} qs_png_conf;
|
||||
|
||||
|
||||
/************************************************************************
|
||||
* Functions
|
||||
***********************************************************************/
|
||||
|
||||
/**
|
||||
* Read the stat_log data line by line
|
||||
*
|
||||
* @param s IN buffer to store line to
|
||||
* @param n IN buffer size
|
||||
* @param f IN file descriptor
|
||||
*
|
||||
* @return 1 on EOF, else 0
|
||||
*/
|
||||
static int qs_png_getline(char *s, int n, FILE *f) {
|
||||
register int i = 0;
|
||||
while (1) {
|
||||
s[i] = (char) fgetc(f);
|
||||
if (s[i] == CR) {
|
||||
s[i] = fgetc(f);
|
||||
}
|
||||
if ((s[i] == 0x4) || (s[i] == LF) || (i == (n - 1))) {
|
||||
s[i] = '\0';
|
||||
return (feof(f) ? 1 : 0);
|
||||
}
|
||||
++i;
|
||||
}
|
||||
}
|
||||
|
||||
/* png io callback (should write to buff/bio/bucket when using in apache) */
|
||||
void lp_write_data(png_structp png_ptr, png_bytep data, png_size_t length) {
|
||||
FILE *f = png_get_io_ptr(png_ptr);
|
||||
fwrite(data, length, 1, f);
|
||||
}
|
||||
|
||||
/* png io callback (not used) */
|
||||
void lp_flush_data(png_structp png_ptr) {
|
||||
png_get_io_ptr(png_ptr);
|
||||
fprintf(stderr, "flush\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes a single char to the graph
|
||||
*
|
||||
* @param x IN x position
|
||||
* @param y IN y position
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param n IN char to write
|
||||
*/
|
||||
static void qs_png_write_char(int x, int y, png_bytep *row_pointers, char n) {
|
||||
int ix, iy;
|
||||
int *f = &s_X[0][0];
|
||||
switch(n) {
|
||||
case 'a': f = &s_a[0][0]; break;
|
||||
case 'b': f = &s_b[0][0]; break;
|
||||
case 'c': f = &s_c[0][0]; break;
|
||||
case 'd': f = &s_d[0][0]; break;
|
||||
case 'e': f = &s_e[0][0]; break;
|
||||
case 'f': f = &s_f[0][0]; break;
|
||||
case 'g': f = &s_g[0][0]; break;
|
||||
case 'h': f = &s_h[0][0]; break;
|
||||
case 'i': f = &s_i[0][0]; break;
|
||||
case 'j': f = &s_j[0][0]; break;
|
||||
case 'k': f = &s_k[0][0]; break;
|
||||
case 'l': f = &s_l[0][0]; break;
|
||||
case 'm': f = &s_m[0][0]; break;
|
||||
case 'n': f = &s_n[0][0]; break;
|
||||
case 'o': f = &s_o[0][0]; break;
|
||||
case 'p': f = &s_p[0][0]; break;
|
||||
case 'q': f = &s_q[0][0]; break;
|
||||
case 'r': f = &s_r[0][0]; break;
|
||||
case 's': f = &s_s[0][0]; break;
|
||||
case 't': f = &s_t[0][0]; break;
|
||||
case 'u': f = &s_u[0][0]; break;
|
||||
case 'v': f = &s_v[0][0]; break;
|
||||
case 'w': f = &s_w[0][0]; break;
|
||||
case 'x': f = &s_x[0][0]; break;
|
||||
case 'y': f = &s_y[0][0]; break;
|
||||
case 'z': f = &s_z[0][0]; break;
|
||||
case ' ': f = &s_SP[0][0]; break;
|
||||
case '_': f = &s_US[0][0]; break;
|
||||
case '(': f = &s_BRO[0][0]; break;
|
||||
case ')': f = &s_BRC[0][0]; break;
|
||||
case '<': f = &s_LT[0][0]; break;
|
||||
case '>': f = &s_GT[0][0]; break;
|
||||
case '-': f = &s_MI[0][0]; break;
|
||||
case '/': f = &s_SL[0][0]; break;
|
||||
case ';': f = &s_SC[0][0]; break;
|
||||
case ',': f = &s_CM[0][0]; break;
|
||||
case ':': f = &s_CO[0][0]; break;
|
||||
case '.': f = &s_DT[0][0]; break;
|
||||
case '\'': f = &s_SQ[0][0]; break;
|
||||
case 'A': f = &s_a[0][0]; break;
|
||||
case 'B': f = &s_b[0][0]; break;
|
||||
case 'C': f = &s_c[0][0]; break;
|
||||
case 'D': f = &s_d[0][0]; break;
|
||||
case 'E': f = &s_e[0][0]; break;
|
||||
case 'F': f = &s_f[0][0]; break;
|
||||
case 'G': f = &s_g[0][0]; break;
|
||||
case 'H': f = &s_h[0][0]; break;
|
||||
case 'I': f = &s_i[0][0]; break;
|
||||
case 'J': f = &s_j[0][0]; break;
|
||||
case 'K': f = &s_k[0][0]; break;
|
||||
case 'L': f = &s_l[0][0]; break;
|
||||
case 'M': f = &s_M[0][0]; break;
|
||||
case 'N': f = &s_n[0][0]; break;
|
||||
case 'O': f = &s_o[0][0]; break;
|
||||
case 'P': f = &s_p[0][0]; break;
|
||||
case 'Q': f = &s_q[0][0]; break;
|
||||
case 'R': f = &s_r[0][0]; break;
|
||||
case 'S': f = &s_s[0][0]; break;
|
||||
case 'T': f = &s_t[0][0]; break;
|
||||
case 'U': f = &s_u[0][0]; break;
|
||||
case 'V': f = &s_v[0][0]; break;
|
||||
case 'W': f = &s_w[0][0]; break;
|
||||
case 'X': f = &s_x[0][0]; break;
|
||||
case 'Y': f = &s_y[0][0]; break;
|
||||
case 'Z': f = &s_z[0][0]; break;
|
||||
case '0': f = &s_0[0][0]; break;
|
||||
case '1': f = &s_1[0][0]; break;
|
||||
case '2': f = &s_2[0][0]; break;
|
||||
case '3': f = &s_3[0][0]; break;
|
||||
case '4': f = &s_4[0][0]; break;
|
||||
case '5': f = &s_5[0][0]; break;
|
||||
case '6': f = &s_6[0][0]; break;
|
||||
case '7': f = &s_7[0][0]; break;
|
||||
case '8': f = &s_8[0][0]; break;
|
||||
case '9': f = &s_9[0][0]; break;
|
||||
}
|
||||
/* print the char matrix */
|
||||
for(iy = 0; iy < S_H_MAX; iy++) {
|
||||
png_byte* row = row_pointers[y+iy];
|
||||
for(ix = 0; ix < S_W_MAX; ix++) {
|
||||
png_byte* ptr = &(row[(x+ix)*4]);
|
||||
if(f[iy*S_W_MAX + ix] == 1) {
|
||||
/* foreground */
|
||||
ptr[0] = 0;
|
||||
ptr[1] = 0;
|
||||
ptr[2] = 0;
|
||||
} else {
|
||||
/* background */
|
||||
ptr[0] = 250;
|
||||
ptr[1] = 250;
|
||||
ptr[2] = 255;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes a single digit 0..9.
|
||||
* You should normally use either qs_png_write_int() or qs_png_write_int().
|
||||
*
|
||||
* @param x IN x position
|
||||
* @param y IN y position
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param n IN number to write
|
||||
*/
|
||||
static void qs_png_write_digit(int x, int y, png_bytep *row_pointers, int n) {
|
||||
char f = 'X';
|
||||
if(n == 0) f = '0';
|
||||
if(n == 1) f = '1';
|
||||
if(n == 2) f = '2';
|
||||
if(n == 3) f = '3';
|
||||
if(n == 4) f = '4';
|
||||
if(n == 5) f = '5';
|
||||
if(n == 6) f = '6';
|
||||
if(n == 7) f = '7';
|
||||
if(n == 8) f = '8';
|
||||
if(n == 9) f = '9';
|
||||
qs_png_write_char(x, y, row_pointers, f);
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes a string to the graph.
|
||||
*
|
||||
* @param x IN x position
|
||||
* @param y IN y position
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param n IN string to write
|
||||
*/
|
||||
static void qs_png_write_string(int x, int y, png_bytep *row_pointers, const char *n) {
|
||||
int i = 0;
|
||||
int offset = 0;
|
||||
while(n[i] != '\0') {
|
||||
qs_png_write_char(x+offset, y, row_pointers, n[i]);
|
||||
i++;
|
||||
offset = offset + S_W_MAX;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes a number (int) to the graph (1:1).
|
||||
*
|
||||
* @param x IN x position
|
||||
* @param y IN y position
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param n IN number to write
|
||||
*/
|
||||
static void qs_png_write_int(int x, int y, png_bytep *row_pointers, int n) {
|
||||
char num_str[HUGE_STRING_LEN];
|
||||
snprintf(num_str, sizeof(num_str), "%d", n);
|
||||
qs_png_write_string(x, y, row_pointers, num_str);
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes a number (long) to the graph using k,M for big numbers.
|
||||
*
|
||||
* @param x IN x position
|
||||
* @param y IN y position
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param n IN string to write
|
||||
*/
|
||||
static void qs_png_write_long(int x, int y, png_bytep *row_pointers, long n) {
|
||||
char num_str[HUGE_STRING_LEN];
|
||||
snprintf(num_str, sizeof(num_str), "%ld", n);
|
||||
if(n >= 1000) {
|
||||
snprintf(num_str, sizeof(num_str), "%ldk", n/1000);
|
||||
}
|
||||
if(n >= 1000000) {
|
||||
snprintf(num_str, sizeof(num_str), "%ldM", n/1000000);
|
||||
}
|
||||
qs_png_write_string(x, y, row_pointers, num_str);
|
||||
}
|
||||
|
||||
/**
|
||||
* Labels the graph (min,max,title).
|
||||
*
|
||||
* @param width IN size (x axis) of the graph
|
||||
* @param height IN size (y axis) of the graph
|
||||
* @param border IN border size around the graph
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param max IN max y value
|
||||
* @param name IN title
|
||||
*/
|
||||
static void qs_png_label(int width, int height, int border,
|
||||
png_bytep *row_pointers, long max,
|
||||
const char *name) {
|
||||
/* MAX */
|
||||
int i;
|
||||
int step = height/5;
|
||||
int c = 5;
|
||||
for(i = 0; i < height; i = i + step) {
|
||||
qs_png_write_long(1, border - (S_W_MAX/2) + i, row_pointers, max/5*c);
|
||||
c--;
|
||||
}
|
||||
|
||||
/* MIN */
|
||||
qs_png_write_int(1, height + border - (S_W_MAX/2), row_pointers, 0);
|
||||
|
||||
/* title */
|
||||
{
|
||||
char buf[HUGE_STRING_LEN];
|
||||
snprintf(buf, sizeof(buf), "%s", name);
|
||||
qs_png_write_string(XY_BORDER, XY_BORDER/2-S_H_MAX/2, row_pointers, buf);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static void lp_init(int width, int height, int border, png_bytep **start) {
|
||||
png_bytep *row_pointers;
|
||||
int b_width = width + (2 * border);
|
||||
int b_height = height + (2 * border);
|
||||
int x, y;
|
||||
|
||||
/* alloc memory */
|
||||
row_pointers = (png_bytep*) malloc(sizeof(png_bytep) * b_height);
|
||||
for(y=0; y<b_height; y++) {
|
||||
row_pointers[y] = (png_byte*) malloc(b_width * 4);
|
||||
}
|
||||
|
||||
/* background */
|
||||
for(y=0; y<b_height; y++) {
|
||||
png_byte* row = row_pointers[y];
|
||||
for(x=0; x<b_width; x++) {
|
||||
png_byte* ptr = &(row[x*4]);
|
||||
ptr[0] = 250;
|
||||
ptr[1] = 250;
|
||||
ptr[2] = 255;
|
||||
ptr[3] = 250;
|
||||
}
|
||||
}
|
||||
for(y=border; y<b_height-border; y++) {
|
||||
png_byte* row = row_pointers[y];
|
||||
for(x=border; x<b_width-border; x++) {
|
||||
png_byte* ptr = &(row[x*4]);
|
||||
ptr[0] = 245;
|
||||
ptr[1] = 245;
|
||||
ptr[2] = 250;
|
||||
}
|
||||
}
|
||||
*start = row_pointers;
|
||||
}
|
||||
|
||||
/**
|
||||
* "Main" png function:
|
||||
* - reads the data from the file
|
||||
* - draws the curve
|
||||
* - labels the x axis
|
||||
*
|
||||
* @param width IN size (x axis) of the graph
|
||||
* @param height IN size (y axis) of the graph
|
||||
* @param border IN border size around the graph
|
||||
* @param row_pointers IN start pointer (0/0)
|
||||
* @param stat_log IN file descriptor to the input file
|
||||
* @param name IN title
|
||||
* @param c_r IN color red (0..255)
|
||||
* @param c_g IN color green (0..255)
|
||||
* @param c_b IN color blue (0..255)
|
||||
*/
|
||||
static long qs_png_draw(int width, int height, int border,
|
||||
png_bytep *row_pointers, FILE *stat_log, const char *name,
|
||||
int c_r, int c_g, int c_b) {
|
||||
int x, y;
|
||||
long req[width]; // values
|
||||
long max_req[width]; // values
|
||||
int hours[width]; // time marks on x axis
|
||||
long tmp[X_SAMPLE_RATE]; // used to build average over multiple samples
|
||||
int sample = 1; // sample rate counter (1 to X_SAMPLE_RATE)
|
||||
|
||||
int i = 0;
|
||||
char line[HUGE_STRING_LEN];
|
||||
|
||||
long peak = 0; // max of all values
|
||||
double scale = 1; // scaling factor (height x scale = unit)
|
||||
|
||||
int hour = -1; // detect "new" hour
|
||||
char date_str[32] = ""; // string storing the first day (if fist value is at 00h)
|
||||
|
||||
long ret;
|
||||
for(x=0; x<width; x++) hours[x] = 0;
|
||||
/* reads the file and resample measure points to width of the graph */
|
||||
while(!qs_png_getline(line, sizeof(line), stat_log) && i < width) {
|
||||
char *p = strstr(line, name);
|
||||
req[i] = 0;
|
||||
max_req[i] = 0;
|
||||
if(p && ((p - line) > 8)) {
|
||||
char *e;
|
||||
p=p+strlen(name);
|
||||
e = strchr(p,';');
|
||||
if(e) e[0] = '\0';
|
||||
e = strchr(p, '.'); /** sl uses fp value */
|
||||
if(e) e[0] = '\0';
|
||||
tmp[sample-1] = atol(p);
|
||||
} else {
|
||||
tmp[sample-1] = 0;
|
||||
}
|
||||
/* hour (stat_log time format: %d.%m.%Y %H:%M:%S (19 char)) */
|
||||
p = strchr(line, ';');
|
||||
if(p && (p-line == 19 )) {
|
||||
p = p - 6;
|
||||
p[0] = '\0';
|
||||
p = p - 2;
|
||||
hours[i] = atoi(p);
|
||||
}
|
||||
/* use the defined sample rate */
|
||||
if(sample == X_SAMPLE_RATE) {
|
||||
int j;
|
||||
int max_value = 0;
|
||||
for(j = 0; j < X_SAMPLE_RATE; j++) {
|
||||
req[i] = req[i] + tmp[j];
|
||||
if(max_value < tmp[j]) {
|
||||
max_value = tmp[j];
|
||||
}
|
||||
}
|
||||
max_req[i] = max_value;
|
||||
if(max_req[i] > peak) peak = max_req[i];
|
||||
/* build average */
|
||||
req[i] = req[i] / X_SAMPLE_RATE;
|
||||
sample = 1;
|
||||
i++;
|
||||
/* and store the current date (%d.%m.%Y (10 char)) if the
|
||||
first value is at 00h */
|
||||
if(hours[i] == 0 && i == 1) {
|
||||
p = strchr(line, ' ');
|
||||
if(p && (p-line == 10)) {
|
||||
p[0] = '\0';
|
||||
strcpy(date_str, line);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
sample++;
|
||||
}
|
||||
}
|
||||
/* calculate y axis scaling (1:1 are height pixels) */
|
||||
if(peak < 10) {
|
||||
scale = 0.1;
|
||||
} else {
|
||||
while((peak / scale) > height) {
|
||||
if(scale < 8) {
|
||||
scale = scale * 2;
|
||||
} else {
|
||||
if(scale == 8) {
|
||||
scale = 10;
|
||||
} else {
|
||||
scale = scale * 10;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* draw the curve */
|
||||
for(x=0; x<i; x++) {
|
||||
/* max */
|
||||
for(y=0; y<(max_req[x]/scale); y++) {
|
||||
png_byte* row = row_pointers[height-y-1+border];
|
||||
png_byte* ptr = &(row[x*4+(4*border)]);
|
||||
ptr[0] = c_r + 75;
|
||||
ptr[1] = c_g + 75;
|
||||
ptr[2] = c_b + 75;
|
||||
}
|
||||
/* average */
|
||||
for(y=0; y<(req[x]/scale); y++) {
|
||||
png_byte* row = row_pointers[height-y-1+border];
|
||||
png_byte* ptr = &(row[x*4+(4*border)]);
|
||||
ptr[0] = c_r;
|
||||
ptr[1] = c_g;
|
||||
ptr[2] = c_b;
|
||||
}
|
||||
/* label the x axis */
|
||||
if(hour != hours[x]) {
|
||||
hour = hours[x];
|
||||
for(y=0; y<(height); y=y+3) {
|
||||
png_byte* row = row_pointers[y+border];
|
||||
png_byte* ptr = &(row[x*4+(4*border)]);
|
||||
ptr[0] = 50;
|
||||
ptr[1] = 50;
|
||||
ptr[2] = 50;
|
||||
}
|
||||
if(hour%2 == 0) {
|
||||
qs_png_write_digit(x-S_W_MAX+border, height + border + 1, row_pointers, hour/10);
|
||||
qs_png_write_digit(x-S_W_MAX+border+S_W_MAX, height + border + 1, row_pointers, hour%10);
|
||||
qs_png_write_char(x-S_W_MAX+border+2*S_W_MAX, height + border + 1, row_pointers, 'h');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* print date */
|
||||
qs_png_write_string(border, height+border+2+S_H_MAX, row_pointers, date_str);
|
||||
|
||||
/* horizontal lines every 1/4 height */
|
||||
for(y=(height/5); y<height; y=y+height/5) {
|
||||
png_byte* row = row_pointers[y+border];
|
||||
for(x=0; x<i; x=x+3) {
|
||||
png_byte* ptr = &(row[x*4+(4*border)]);
|
||||
ptr[0] = 50;
|
||||
ptr[1] = 50;
|
||||
ptr[2] = 50;
|
||||
}
|
||||
}
|
||||
|
||||
ret = scale * height;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
qs_man_print(man, "%s - an utility to draw a png graph from qslog(1) output data.\n", cmd);
|
||||
} else {
|
||||
qs_man_print(man, "Utility to draw a png graph from qslog output data.\n");
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -i <stat_log_file> -p <parameter> -o <out_file> [-10]\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s is a tool to generate png (portable network graphics)\n", cmd);
|
||||
qs_man_print(man, "raster images files from semicolon separated data generated by the\n");
|
||||
qs_man_print(man, "qslog utility. It reads up to the first 1440 entries (24 hours)\n");
|
||||
qs_man_print(man, "and prints a graph using the values defined by the 'parameter' \n");
|
||||
qs_man_print(man, "name.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -i <stats_log_file>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Input file to read data from.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -p <parameter>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Parameter name, e.g. r/s or usr.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -o <out_file>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Output file name, e.g. stat.png.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslogger(1), qslog(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("\n");
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
int y;
|
||||
int width, height, b_width, b_height;
|
||||
png_byte color_type;
|
||||
png_byte bit_depth;
|
||||
|
||||
int scale;
|
||||
|
||||
png_structp png_ptr;
|
||||
png_infop info_ptr;
|
||||
|
||||
png_bytep *row_pointers;
|
||||
|
||||
char *infile = NULL;
|
||||
FILE *f;
|
||||
FILE *stat_log;
|
||||
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
const char *param = NULL;
|
||||
const char *name = "";
|
||||
char *out = NULL;
|
||||
int c_r = 20;
|
||||
int c_g = 50;
|
||||
int c_b = 175;
|
||||
const qs_png_elt_t* elt;
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-i") == 0) {
|
||||
if (--argc >= 1) {
|
||||
infile = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-p") == 0) {
|
||||
if (--argc >= 1) {
|
||||
param = *(++argv);
|
||||
name = param;
|
||||
}
|
||||
} else if(strcmp(*argv,"-o") == 0) {
|
||||
if (--argc >= 1) {
|
||||
out = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
|
||||
if(infile == NULL || param == NULL || out == NULL) usage(cmd, 0);
|
||||
for(elt = qs_png_elts; elt->param != NULL ; ++elt) {
|
||||
if(strcmp(elt->param, param) == 0) {
|
||||
name = elt->name;
|
||||
c_r = elt->r;
|
||||
c_g = elt->g;
|
||||
c_b = elt->b;
|
||||
}
|
||||
}
|
||||
|
||||
stat_log = fopen(infile, "r");
|
||||
if(stat_log == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not open input file <%s>\n", cmd, infile);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
f = fopen(out, "wb");
|
||||
if(f == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not open output file <%s>\n", cmd, out);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
|
||||
if(png_ptr == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not create png struct\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
info_ptr = png_create_info_struct(png_ptr);
|
||||
if(info_ptr == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not create png information struct\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
if(setjmp(png_jmpbuf(png_ptr))) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not init png struct\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
png_set_write_fn(png_ptr, f, lp_write_data, NULL);
|
||||
|
||||
/* write header */
|
||||
if(setjmp(png_jmpbuf(png_ptr))) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not write png header\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
color_type = PNG_COLOR_TYPE_RGB_ALPHA;
|
||||
bit_depth = 8;
|
||||
width = X_COUNTS;
|
||||
height = Y_COUNTS;
|
||||
b_width = width + (2 * XY_BORDER);
|
||||
b_height = height + (2 * XY_BORDER);
|
||||
|
||||
png_set_IHDR(png_ptr, info_ptr,
|
||||
b_width, b_height,
|
||||
bit_depth,
|
||||
color_type,
|
||||
PNG_INTERLACE_NONE,
|
||||
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
||||
png_write_info(png_ptr, info_ptr);
|
||||
|
||||
/* write bytes */
|
||||
if(setjmp(png_jmpbuf(png_ptr))) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not write png data\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* alloc and background */
|
||||
lp_init(width, height, XY_BORDER, &row_pointers);
|
||||
|
||||
/* paint */
|
||||
{
|
||||
char buf[HUGE_STRING_LEN];
|
||||
snprintf(buf, sizeof(buf), ";%s;", param);
|
||||
scale = qs_png_draw(width, height, XY_BORDER, row_pointers,
|
||||
stat_log, buf, c_r, c_g, c_b);
|
||||
}
|
||||
|
||||
/* min/max/title label */
|
||||
qs_png_label(width, height, XY_BORDER, row_pointers, scale,
|
||||
name);
|
||||
|
||||
|
||||
/* done, write image */
|
||||
png_write_image(png_ptr, row_pointers);
|
||||
/* end write */
|
||||
if(setjmp(png_jmpbuf(png_ptr))) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not write png data\n", cmd);
|
||||
exit(1);
|
||||
}
|
||||
png_write_end(png_ptr, NULL);
|
||||
|
||||
/* cleanup heap allocation */
|
||||
for(y=0; y<height; y++) {
|
||||
free(row_pointers[y]);
|
||||
}
|
||||
free(row_pointers);
|
||||
|
||||
fclose(f);
|
||||
fclose(stat_log);
|
||||
return 0;
|
||||
}
|
226
tools/src/qsre.c
Normal file
|
@ -0,0 +1,226 @@
|
|||
/**
|
||||
* qsre.c: pcre expression match test tool
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qsre.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
/* system */
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
|
||||
/* apr */
|
||||
#include <apr.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_time.h>
|
||||
#include <apr_general.h>
|
||||
#include <apr_lib.h>
|
||||
#include <apr_portable.h>
|
||||
#include <apr_support.h>
|
||||
|
||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||
#include <pcre2.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#define QS_OVECCOUNT 100
|
||||
|
||||
|
||||
static void usage(const char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s matches a regular expression against test strings.\n", cmd);
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s <string>|<path> <pcre>|<path>\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "Regular expression test tool.\n");
|
||||
qs_man_print(man, "The provided regular expression (pcre, caseless matching, \".\" matches anything\n");
|
||||
qs_man_print(man, "incl. newline) is appplied against the provided test strings to verify if the\n");
|
||||
qs_man_print(man, "pattern matches.\n");
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " <string>|<path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " The first argument either defines a single test string of a path to\n");
|
||||
qs_man_print(man, " a file containing either multiple test strings or a test pattern with\n");
|
||||
qs_man_print(man, " newline characters (text).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " <pcre>|<path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " The second argument either defines a regular expression or a path to\n");
|
||||
qs_man_print(man, " a file containing the expression.\n");
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsrespeed(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
static int rmatch(const char *line, qs_regex_t *preg) {
|
||||
qs_regmatch_t regm[QS_MAX_REG_MATCH];
|
||||
int rc_c = -1;
|
||||
do {
|
||||
int rc = qs_regexec_len(preg, line, strlen(line), QS_MAX_REG_MATCH, regm, 0);
|
||||
if(rc >= 0) {
|
||||
int ix;
|
||||
rc_c = 0;
|
||||
printf("[%.*s]", regm[0].rm_eo - regm[0].rm_so, &line[regm[0].rm_so]);
|
||||
for(ix = 1; ix < rc; ix++) {
|
||||
printf(" $%d=%.*s", ix, regm[ix].rm_eo - regm[ix].rm_so, &line[regm[ix].rm_so]);
|
||||
}
|
||||
line = &line[regm[0].rm_eo];
|
||||
} else {
|
||||
line = NULL;
|
||||
}
|
||||
} while(line && line[0]);
|
||||
return rc_c;
|
||||
}
|
||||
|
||||
int main(int argc, const char *const argv[]) {
|
||||
const char *errptr = NULL;
|
||||
int erroffset;
|
||||
qs_regex_t *preg;
|
||||
int rc_c = -1;
|
||||
const char *line;
|
||||
const char *in;
|
||||
const char *pattern;
|
||||
FILE *file;
|
||||
apr_pool_t *pool;
|
||||
char *raw = "";
|
||||
int linenr = 0;
|
||||
|
||||
const char *cmd = strrchr(argv[0], '/');
|
||||
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
if(argc != 2) {
|
||||
if(argc == 1 && strcmp(argv[0], "--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
}
|
||||
in = argv[0];
|
||||
pattern = argv[1];
|
||||
|
||||
file = fopen(pattern, "r");
|
||||
if(file) {
|
||||
char readline[MAX_LINE];
|
||||
if(fgets(readline, MAX_LINE-1, file) != NULL) {
|
||||
int len = strlen(readline);
|
||||
while(len > 0 && readline[len] < 32) {
|
||||
readline[len] = '\0';
|
||||
len--;
|
||||
}
|
||||
pattern = apr_pstrdup(pool, readline);
|
||||
}
|
||||
fclose(file);
|
||||
}
|
||||
printf("expression: %s\n", pattern);
|
||||
|
||||
preg = apr_palloc(pool, sizeof(qs_regex_t));
|
||||
if(qs_regcomp(preg, pattern, PCRE2_DOTALL|PCRE2_CASELESS) != 0) {
|
||||
fprintf(stderr, "ERROR, rule <%s> could not compile regular expression\n", pattern);
|
||||
exit(1);
|
||||
}
|
||||
apr_pool_pre_cleanup_register(pool, preg, qs_pregfree);
|
||||
|
||||
file = fopen(in, "r");
|
||||
if(file) {
|
||||
char readline[MAX_LINE];
|
||||
while(fgets(readline, MAX_LINE-1, file) != NULL) {
|
||||
int len = strlen(readline);
|
||||
linenr++;
|
||||
printf("line %.3d: ", linenr);
|
||||
raw = apr_pstrcat(pool, raw, readline, NULL);
|
||||
while(len > 0 && readline[len] < 32) {
|
||||
readline[len] = '\0';
|
||||
len--;
|
||||
}
|
||||
if(readline[0] >= 32 && strlen(readline) > 0) {
|
||||
line = readline;
|
||||
rc_c = rmatch(line, preg);
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
fclose(file);
|
||||
printf("entire content match:\n");
|
||||
rc_c = rmatch(raw, preg);
|
||||
printf("\n");
|
||||
} else {
|
||||
line = in;
|
||||
rc_c = rmatch(line, preg);
|
||||
printf("\n");
|
||||
}
|
||||
if(rc_c < 0) {
|
||||
printf("no match\n");
|
||||
return 2;
|
||||
}
|
||||
return 0;
|
||||
}
|
308
tools/src/qsrespeed.c
Normal file
|
@ -0,0 +1,308 @@
|
|||
/**
|
||||
* Utility for the quality of service module mod_qos.
|
||||
*
|
||||
* qsrespeed.c: tool to measure the processing time
|
||||
* of regular expressions
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Revision: 2654 $";
|
||||
|
||||
/* system */
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
|
||||
/* apr */
|
||||
#include <apr.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_time.h>
|
||||
#include <apr_general.h>
|
||||
#include <apr_lib.h>
|
||||
#include <apr_portable.h>
|
||||
#include <apr_support.h>
|
||||
|
||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||
#include <pcre2.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#define LOOPS 100
|
||||
|
||||
typedef struct {
|
||||
qs_regex_t *preg;
|
||||
} rule_t;
|
||||
|
||||
static void usage(const char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "Tool to compare / estimate the processing time for (Perl-compatible)\n");
|
||||
qs_man_print(man, "regular expressions (PCRE).\n");
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s <path>\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s loads regular expressions from the provided file and matches\n", cmd);
|
||||
qs_man_print(man, "them against a built-in set of strings measuring the time needed to\n");
|
||||
qs_man_print(man, "process them. It's a benchmark too to judge the expressions you have\n");
|
||||
qs_man_print(man, "defined regarding the potential CPU consumption.\n");
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " <path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Defines the input file to process. The file consists a list of\n");
|
||||
qs_man_print(man, " (separated by a newline character) regular expressions to test\n");
|
||||
printf("\n");
|
||||
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrotate(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
const char* string;
|
||||
int len;
|
||||
} qs_r_t;
|
||||
|
||||
int main(int argc, const char *const argv[]) {
|
||||
int datalen=0;
|
||||
qs_r_t data[] = {
|
||||
{ "Emma", 0 },
|
||||
{ "Buchschacher", 0 },
|
||||
{ "Schafhauserstrasse 60, 8000 Zürich", 0 },
|
||||
{ "128128127136178267893209807237276365235", 0 },
|
||||
{ "/get/application/data/index/list/all/data", 0 },
|
||||
{ "05.03.1978", 0 },
|
||||
{ "888 888-888-777", 0 },
|
||||
{ "name=value&id=kAfBFLJaBQB-AAABBQAAAAZgAAAA9--DwnTUWct-AAA2&host=me.main.org&key=121213122aaaaaaaaaaMMMM123&tex=emb+ed", 0 },
|
||||
{ "<x:ml><node attribute=\"value\" attr2=\"99999999\">text shows_this!</node></x:ml>", 0 },
|
||||
{ "<html lang=\"en\"><meta charset=\"utf-8\"><meta property=\"og:type\" content=\"website\"></html>", 0 },
|
||||
{ "lajksdfhjklasdhfaskdjfhklasjdlfaksdhfasjkdflsajkdflkdflhdjklfadhfksdjfhklasjdhfskljdfhsklajdhflskjdfhlskjhdflksjdhlfksjdhfjklsdhfklsdhfklsjdhklshlksfhdklfhslkdfhlskhdklsjhdflskfhlsh", 0 },
|
||||
{ "ajksdfhjklasdhfaskdjfhklasjdlfaksdhfasjkdflsajkdflkdflhdjklfadhfksdjfhklasjdhfskljdfhsklajdhflskjdfhlskjhdflksjdhlfksjdhfjklsdhfklsdhfklsjdhklshlksfljsdahsdznvztbasmuiwmereizfrbizvnsdmovosduvnuztbvzucxzvmpmvdzubtfrmeirmrnbewrJHJSBNUAIMSODMAINBSUDTAZSUDIOASMDNBAGZDTSZBUANIMOINSAUBZDGTZUIOIMSKNABJDHT9807765243567283992039209376526368799230827836526789 ç%&/\"(><<<-.,:;)*=)()(&%\"ç", 0 },
|
||||
{ "text/html,application/xhtml+xm…plication/xml;q=0.9,*/*;q=0.8", 0 },
|
||||
{ "Accept-Language: fr-CH, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5", 0},
|
||||
{ "Hm_lvt_ef1299edab2ff5d2f13e859…d=GA1.2.1594867574.1516566392", 0 },
|
||||
{ "If-Modified-Since", 0 },
|
||||
{ "Fri, 05 Jan 2018 02:34:41 GMT", 0 },
|
||||
{ "[Wed Feb 28 22:08:09 2018] [notice] Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/1.0.2g mod_qos/11.52 configured -- resuming normal operations", 0 },
|
||||
{ "127.0.0.1 - - [28/Feb/2018:21:03:37 +0100] \"GET /console?action=inclimit&address=194.31.217.21&event=QS_Limit HTTP/1.1\" 200 52 \"-\" 0 - - - id=wWkYPUtmBQARFAABEAAAAAAX-yQgC5d2 - - #5230", 0 },
|
||||
{ "2013/11/07 17:44:07 [error] 4640#0: *55 auth_token_module(014): request not authorized: invalid signature, client: 127.0.0.1, server: localhost, request: \"GET /app/index.html?req=1 HTTP/1.1\", host: \"127.0.0.1:8204\" 000000000002#IPhzBRn7cuuGdqBI7T4OSIjXx7JGliUokCk8dFIU9n0=", 0 },
|
||||
{ "2010 12 04 20:46:45.118 dispatch IWWWauthCo 07148.4046314384 3-ERROR : AuthsessClient_1_0::execute: no valid 000000000002#5jYHrFBotkZwAs5EyfVQVgNZb3M=", 0 },
|
||||
{ "2011-09-01 07:37:17,275 main org.apache.catalina.startup.Catalina INFO Server startup in 5770 ms 000000000002#LQ/h2UbJ2HzdZyf8BqnB7TB8LZM=", 0 },
|
||||
{ "2010-04-14 20:18:37,464 | INFO | org.hibernate.cfg ::getInputStream:1081 resource: /hibernate.cfg.xml 000000000002#9lpZof9jvdMRrIebCM7rbKzJ7aY=", 0 },
|
||||
{ "http://mod-qos.sourceforge.net/", 0 },
|
||||
{ "Mozilla/5.0 (X11; Ubuntu; Linu…) Gecko/20100101 Firefox/57.0", 0 },
|
||||
{ " Whether 'tis nobler in the mind to suffer The slings and arrows of outrageous fortune, Or to take arms against a sea of troubles, And by opposing end them? To die: to sleep; No more; and by a sleep to say we end The heart-ache and the thousand natural shocks That flesh is heir to, 'tis a consummation Devoutly to be wish'd.", 0 },
|
||||
{ "To be, or not to be: that is the question: Whether 'tis nobler in the mind to suffer The slings and arrows of outrageous fortune, Or to take arms against a sea of troubles, And by opposing end them? To die: to sleep; No more; and by a sleep to say we end The heart-ache and the thousand natural shocks That flesh is heir to, 'tis a consummation Devoutly to be wish'd. To die, to sleep; To sleep: perchance to dream: ay, there's the rub; For in that sleep of death what dreams may come When we have shuffled off this mortal coil, Must give us pause: there's the respect That makes calamity of so long life; For who would bear the whips and scorns of time, The oppressor's wrong, the proud man's contumely, The pangs of despised love, the law's delay, The insolence of office and the spurns That patient merit of the unworthy takes, When he himself might his quietus make With a bare bodkin? who would fardels bear, To grunt and sweat under a weary life, But that the dread of something after death, The undiscover'd country from whose bourn No traveller returns, puzzles the will And makes us rather bear those ills we have Than fly to others that we know not of? Thus conscience does make cowards of us all; And thus the native hue of resolution Is sicklied o'er with the pale cast of thought, And enterprises of great pith and moment With this regard their currents turn awry, And lose the name of action.--Soft you now! The fair Ophelia! Nymph, in thy orisonsBe all my sins remember'd.", 0 },
|
||||
{ "{\n" \
|
||||
" \"_to\": \"1.2.3.4:5678\",\n" \
|
||||
" \"_line\": 63546230,\n" \
|
||||
" \"profile_image_url\": \"http://a3.twimg.com/profile_images/852841481/Untitled_3_normal.jpg\",\n" \
|
||||
" \"created_at\": \"Sat, 08 May 2010 21:46:23 +0000\",\n" \
|
||||
" \"from_user\": \"pelchiie\",\n" \
|
||||
" \"metadata\": {\n" \
|
||||
" \"result_type\": \"recent\"\n" \
|
||||
" },\n" \
|
||||
" \"to_user_id\": null,\n" \
|
||||
" \"text\": \"twitter is dead today.\",\n" \
|
||||
" \"id\": 13630378882,\n" \
|
||||
" \"from_user_id\": 12621761,\n" \
|
||||
" \"geo\": null,\n" \
|
||||
" \"iso_language_code\": \"en\",\n" \
|
||||
" \"source\": \"<a href=\\\"http://twitter.com/\\\">web</a>\"\n" \
|
||||
"}", 0 },
|
||||
{ NULL, 0 }
|
||||
};
|
||||
|
||||
int i;
|
||||
FILE *file;
|
||||
char readline[MAX_LINE];
|
||||
|
||||
const char *cmd = strrchr(argv[0], '/');
|
||||
|
||||
apr_pool_t *pool;
|
||||
apr_table_t *rules;
|
||||
long long start;
|
||||
long long end;
|
||||
struct timeval tv;
|
||||
static char ver[80];
|
||||
|
||||
const char *filename = NULL;
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
rules = apr_table_make(pool, 100);
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-h") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
} else {
|
||||
filename = *argv;
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
|
||||
{
|
||||
// init
|
||||
qs_r_t *d = data;
|
||||
while(d->string) {
|
||||
d->len = strlen(d->string);
|
||||
datalen += d->len;
|
||||
d++;
|
||||
}
|
||||
}
|
||||
|
||||
if(filename == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
file = fopen(filename, "r");
|
||||
if(!file) {
|
||||
fprintf(stderr, "ERROR, failed to open the log file '%s'\n", filename);
|
||||
exit(1);
|
||||
}
|
||||
while(fgets(readline, MAX_LINE-1, file) != NULL) {
|
||||
char *p;
|
||||
int len = strlen(readline);
|
||||
rule_t *rule = apr_pcalloc(pool, sizeof(rule_t));
|
||||
|
||||
while(len > 0 && readline[len] < 32) {
|
||||
readline[len] = '\0';
|
||||
len--;
|
||||
}
|
||||
if((strlen(readline) > 0) &&
|
||||
(readline[0] != CR) &&
|
||||
(readline[0] != LF)) {
|
||||
|
||||
p = readline;
|
||||
|
||||
rule->preg = apr_palloc(pool, sizeof(qs_regex_t));
|
||||
if(qs_regcomp(rule->preg, p, PCRE2_DOTALL|PCRE2_CASELESS) != 0) {
|
||||
printf("failed to compile pattern [%s]\n", p);
|
||||
exit(1);
|
||||
}
|
||||
apr_pool_pre_cleanup_register(pool, rule->preg, qs_pregfree);
|
||||
apr_table_addn(rules, apr_pstrdup(pool, p), (char *)rule);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
{ // per rule
|
||||
int k;
|
||||
apr_table_entry_t *entry = (apr_table_entry_t *)apr_table_elts(rules)->elts;
|
||||
for(k = 0; k < apr_table_elts(rules)->nelts; k++) {
|
||||
rule_t* rule = (rule_t *)entry[k].val;
|
||||
gettimeofday(&tv, NULL);
|
||||
start = tv.tv_sec * 1000000 + tv.tv_usec;
|
||||
for(i = 0; i < LOOPS; i++) {
|
||||
qs_r_t *d = data;
|
||||
while(d->string) {
|
||||
qs_regexec_len(rule->preg, d->string, d->len, 0, NULL, 0);
|
||||
d++;
|
||||
}
|
||||
}
|
||||
gettimeofday(&tv, NULL);
|
||||
end = tv.tv_sec * 1000000 + tv.tv_usec;
|
||||
printf("%lld usec for %s\n", (end - start)/LOOPS, entry[k].key);
|
||||
}
|
||||
}
|
||||
|
||||
// all rules
|
||||
gettimeofday(&tv, NULL);
|
||||
start = tv.tv_sec * 1000000 + tv.tv_usec;
|
||||
for(i = 0; i < LOOPS; i++) {
|
||||
const qs_r_t *d = data;
|
||||
while(d->string) {
|
||||
int k;
|
||||
apr_table_entry_t *entry = (apr_table_entry_t *)apr_table_elts(rules)->elts;
|
||||
for(k = 0; k < apr_table_elts(rules)->nelts; k++) {
|
||||
rule_t* rule = (rule_t *)entry[k].val;
|
||||
qs_regexec_len(rule->preg, d->string, d->len, 0, NULL, 0);
|
||||
}
|
||||
d++;
|
||||
}
|
||||
}
|
||||
gettimeofday(&tv, NULL);
|
||||
end = tv.tv_sec * 1000000 + tv.tv_usec;
|
||||
pcre2_config(PCRE2_CONFIG_VERSION, ver);
|
||||
printf("match all rules (%d) against the test variables (%lu strings, %d characters) took: %lld usec (%s/PCRE %s)\n",
|
||||
apr_table_elts(rules)->nelts,
|
||||
sizeof(data)/sizeof(qs_r_t)-1,
|
||||
datalen,
|
||||
(end - start) / LOOPS,
|
||||
revision, ver);
|
||||
return 0;
|
||||
|
||||
}
|
522
tools/src/qsrotate.c
Normal file
|
@ -0,0 +1,522 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qsrotate.c: Log rotation tool.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qsrotate.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <dirent.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
#include <time.h>
|
||||
#include <zlib.h>
|
||||
|
||||
#include <signal.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#define HUGE_STR 1024
|
||||
|
||||
//yyyy-mm-dd<sp>hh-mm-ss<sp>
|
||||
#define TME_STR_LEN 20
|
||||
|
||||
/* global variables used by main and support thread */
|
||||
static int m_force_rotation = 0;
|
||||
static time_t m_tLogEnd = 0;
|
||||
static time_t m_tRotation = 86400; /* default are 24h */
|
||||
static int m_nLogFD = -1;
|
||||
static int m_generations = -1;
|
||||
static mode_t m_mode = 0660;
|
||||
static char *m_file_name = NULL;
|
||||
static long m_messages = 0;
|
||||
static char *m_cmd = NULL;
|
||||
static int m_compress = 0;
|
||||
static int m_stdout = 0;
|
||||
static int m_timestamp = 0;
|
||||
static char time_string[TME_STR_LEN];
|
||||
static long m_counter = 0;
|
||||
static long m_limit = 2147483648 - (128 * 1024);
|
||||
static int m_offset = 0;
|
||||
static int m_offset_enabled = 0;
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - a log rotation tool (similar to Apache's rotatelogs).\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -o <file> [-s <sec> [-t <hours>]] [-b <bytes>] [-f] [-z] [-g <num>] [-u <name>] [-m <mask>] [-p] [-d]\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s reads from stdin (piped log) and writes the data to the provided\n", cmd);
|
||||
qs_man_print(man, "file rotating the file after the specified time.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -o <file>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Output log file to write the data to (use an absolute path).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -s <sec>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Rotation interval in seconds, default are 86400 seconds.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -t <hours>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Offset to UTC (enables also DST support), default is 0.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -b <bytes>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " File size limitation (default/max. are %ld bytes, min. are 1048576 bytes).\n", m_limit);
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -f\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Forced log rotation at the specified interval even no data is written.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -z\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Compress (gzip) the rotated file.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -g <num>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Generations (number of files to keep).\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -u <name>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Become another user, e.g. www-data.\n");
|
||||
qs_man_print(man, " -m <mask>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " File permission which is either 600, 640, 660 (default) or 664.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -p\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Writes data also to stdout (for piped logging).\n");
|
||||
qs_man_print(man, " -d\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Line-by-line data reading prefixing every line with a timestamp.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
} else {
|
||||
printf("Example:\n");
|
||||
}
|
||||
qs_man_println(man, " TransferLog \"|/usr/bin/%s -f -z -g 3 -o /var/log/apache/access.log -s 86400\"\n", cmd);
|
||||
printf("\n");
|
||||
qs_man_print(man, "The name of the rotated file will be /dest/filee.YYYYmmddHHMMSS\n");
|
||||
qs_man_print(man, "where YYYYmmddHHMMSS is the system time at which the data has been\n");
|
||||
qs_man_print(man, "rotated.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NOTE\n");
|
||||
} else {
|
||||
printf("Notes:\n");
|
||||
}
|
||||
qs_man_println(man, " - Each %s instance must use an individual file.\n", cmd);
|
||||
qs_man_println(man, " - You may trigger a file rotation manually by sending the signal USR1\n");
|
||||
qs_man_print(man, " to the process.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qsre(1), qsrespeed(1), qspng(1), qssign(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
static time_t get_now() {
|
||||
time_t now = time(NULL);
|
||||
if(m_offset_enabled) {
|
||||
struct tm lcl = *localtime(&now);
|
||||
if(lcl.tm_isdst) {
|
||||
now += 3600;
|
||||
}
|
||||
now += m_offset;
|
||||
}
|
||||
return now;
|
||||
}
|
||||
|
||||
static int openFile(const char *cmd, const char *file_name) {
|
||||
int m_nLogFD = open(file_name, O_WRONLY | O_CREAT | O_APPEND, m_mode);
|
||||
/* error while opening log file */
|
||||
if(m_nLogFD < 0) {
|
||||
fprintf(stderr,"[%s]: ERROR, failed to open file <%s>\n", cmd, file_name);
|
||||
}
|
||||
return m_nLogFD;
|
||||
}
|
||||
|
||||
/**
|
||||
* Compress method called by a child process (forked)
|
||||
* used to compress the rotated file.
|
||||
*
|
||||
* @param cmd Command name (used when logging errors)
|
||||
* @param arch Path to the file to compress. File gets renamed to <arch>.gz
|
||||
*/
|
||||
static void compressThread(const char *cmd, const char *arch) {
|
||||
gzFile *outfp;
|
||||
int infp;
|
||||
char dest[HUGE_STR+20];
|
||||
char buf[HUGE_STR];
|
||||
int len;
|
||||
snprintf(dest, sizeof(dest), "%s.gz", arch);
|
||||
/* low prio */
|
||||
if(nice(10) == -1) {
|
||||
fprintf(stderr, "[%s]: WARNING, failed to change nice value: %s\n", cmd, strerror(errno));
|
||||
}
|
||||
if((infp = open(arch, O_RDONLY)) == -1) {
|
||||
/* failed to open file, can't compress it */
|
||||
fprintf(stderr,"[%s]: ERROR, could not open file for compression <%s>\n", cmd, arch);
|
||||
return;
|
||||
}
|
||||
if((outfp = gzopen(dest,"wb")) == NULL) {
|
||||
fprintf(stderr,"[%s]: ERROR, could not open file for compression <%s>\n", cmd, dest);
|
||||
close(infp);
|
||||
return;
|
||||
}
|
||||
chmod(dest, m_mode);
|
||||
while((len = read(infp, buf, sizeof(buf))) > 0) {
|
||||
gzwrite(outfp, buf, len);
|
||||
}
|
||||
gzclose(outfp);
|
||||
close(infp);
|
||||
/* done, delete the old file */
|
||||
unlink(arch);
|
||||
}
|
||||
|
||||
void sigchild(int signo) {
|
||||
pid_t pid;
|
||||
int stat;
|
||||
while((pid=waitpid(-1,&stat,WNOHANG)) > 0) {
|
||||
}
|
||||
}
|
||||
|
||||
void writeTimestamp() {
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
strftime(time_string, TME_STR_LEN, "%Y-%m-%d %H:%M:%S ", ptr);
|
||||
write(m_nLogFD, time_string, TME_STR_LEN);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotates a file
|
||||
*
|
||||
* @param cmd Command name to be used in log messages
|
||||
* @param now
|
||||
* @param file_name Name of the file to rotate (rename)
|
||||
* @param messages Number of lines/buffers which had been read
|
||||
*/
|
||||
static void rotate(const char *cmd, time_t now,
|
||||
const char *file_name, long *messages) {
|
||||
int rc;
|
||||
char arch[HUGE_STR+20];
|
||||
char tmb[20];
|
||||
struct tm *ptr = localtime(&now);
|
||||
strftime(tmb, sizeof(tmb), "%Y%m%d%H%M%S", ptr);
|
||||
snprintf(arch, sizeof(arch), "%s.%s", file_name, tmb);
|
||||
|
||||
/* set next rotation time */
|
||||
m_tLogEnd = ((now / m_tRotation) * m_tRotation) + m_tRotation;
|
||||
// reset byte counter
|
||||
m_counter = 0;
|
||||
|
||||
/* rename current file */
|
||||
if(m_nLogFD >= 0) {
|
||||
close(m_nLogFD);
|
||||
rename(file_name, arch);
|
||||
}
|
||||
|
||||
/* open new file */
|
||||
m_nLogFD = openFile(cmd, file_name);
|
||||
if(m_nLogFD < 0) {
|
||||
/* opening a new file has failed!
|
||||
try to reopen and clear the last file */
|
||||
char msg[HUGE_STR];
|
||||
snprintf(msg, sizeof(msg), "ERROR while writing to file, %ld messages lost\n", *messages);
|
||||
fprintf(stderr,"[%s]: ERROR, while writing to file <%s>\n", cmd, file_name);
|
||||
rename(arch, file_name);
|
||||
m_nLogFD = openFile(cmd, file_name);
|
||||
if(m_nLogFD > 0) {
|
||||
rc = ftruncate(m_nLogFD, 0);
|
||||
rc = write(m_nLogFD, msg, strlen(msg));
|
||||
}
|
||||
} else {
|
||||
*messages = 0;
|
||||
if(m_compress || (m_generations != -1)) {
|
||||
signal(SIGCHLD,sigchild);
|
||||
if(fork() == 0) {
|
||||
if(m_compress) {
|
||||
compressThread(cmd, arch);
|
||||
}
|
||||
if(m_generations != -1) {
|
||||
qs_deleteOldFiles(file_name, m_generations);
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Separate thread which initiates file rotation even no
|
||||
* log data is written.
|
||||
*
|
||||
* @param argv (not used)
|
||||
*/
|
||||
static void *forcedRotationThread(void *argv) {
|
||||
time_t now;
|
||||
time_t n;
|
||||
while(1) {
|
||||
qs_csLock();
|
||||
now = get_now();
|
||||
if(now > m_tLogEnd) {
|
||||
rotate(m_cmd, now, m_file_name, &m_messages);
|
||||
}
|
||||
qs_csUnLock();
|
||||
now = get_now();
|
||||
n = 1 + m_tLogEnd - now;
|
||||
sleep(n);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void handle_signal1(int signal) {
|
||||
rotate(m_cmd, get_now(), m_file_name, &m_messages);
|
||||
return;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
char *username = NULL;
|
||||
int rc;
|
||||
char *buf;
|
||||
int nRead, nWrite;
|
||||
time_t now;
|
||||
struct stat st;
|
||||
long sizeLimit = 0;
|
||||
|
||||
pthread_attr_t *tha = NULL;
|
||||
pthread_t tid;
|
||||
struct sigaction sa;
|
||||
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
|
||||
sa.sa_handler = &handle_signal1;
|
||||
sa.sa_flags = SA_RESTART;
|
||||
|
||||
if(cmd == NULL) {
|
||||
cmd = argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
m_cmd = calloc(1, strlen(cmd)+1);
|
||||
strcpy(m_cmd, cmd); // copy as we can't pass it when forking
|
||||
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-o") == 0) {
|
||||
if (--argc >= 1) {
|
||||
m_file_name = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-u") == 0) {
|
||||
if (--argc >= 1) {
|
||||
username = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-s") == 0) {
|
||||
if (--argc >= 1) {
|
||||
m_tRotation = atoi(*(++argv));
|
||||
}
|
||||
} else if(strcmp(*argv,"-t") == 0) {
|
||||
if (--argc >= 1) {
|
||||
m_offset = atoi(*(++argv));
|
||||
m_offset = m_offset * 3600;
|
||||
m_offset_enabled = 1;
|
||||
}
|
||||
} else if(strcmp(*argv,"-g") == 0) {
|
||||
if (--argc >= 1) {
|
||||
m_generations = atoi(*(++argv));
|
||||
}
|
||||
} else if(strcmp(*argv,"-b") == 0) {
|
||||
if (--argc >= 1) {
|
||||
sizeLimit = atol(*(++argv));
|
||||
}
|
||||
} else if(strcmp(*argv,"-m") == 0) {
|
||||
if (--argc >= 1) {
|
||||
int mode = atoi(*(++argv));
|
||||
if(mode == 600) {
|
||||
m_mode = 0600;
|
||||
} else if(mode == 640) {
|
||||
m_mode = 0640;
|
||||
} else if(mode == 660) {
|
||||
m_mode = 0660;
|
||||
} else if(mode == 664) {
|
||||
m_mode = 0664;
|
||||
}
|
||||
}
|
||||
} else if(strcmp(*argv,"-z") == 0) {
|
||||
m_compress = 1;
|
||||
} else if(strcmp(*argv,"-p") == 0) {
|
||||
m_stdout = 1;
|
||||
} else if(strcmp(*argv,"-d") == 0) {
|
||||
m_timestamp = 1;
|
||||
memset(time_string, 32, TME_STR_LEN);
|
||||
} else if(strcmp(*argv,"-f") == 0) {
|
||||
m_force_rotation = 1;
|
||||
} else if(strcmp(*argv,"-h") == 0) {
|
||||
usage(m_cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(m_cmd, 0);
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(m_cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(m_cmd, 1);
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(m_file_name == NULL) usage(m_cmd, 0);
|
||||
if(sizeLimit > 0 && sizeLimit < m_limit && sizeLimit >= (1024 * 1024)) {
|
||||
m_limit = sizeLimit;
|
||||
} else if(sizeLimit > 0 && sizeLimit < (1024 * 1024)) {
|
||||
m_limit = 1024 * 1024;
|
||||
}
|
||||
|
||||
if(stat(m_file_name, &st) == 0) {
|
||||
m_counter = st.st_size;
|
||||
}
|
||||
|
||||
sigaction(SIGUSR1, &sa, NULL);
|
||||
qs_setuid(username, m_cmd);
|
||||
|
||||
/* set next rotation time */
|
||||
now = get_now();
|
||||
m_tLogEnd = ((now / m_tRotation) * m_tRotation) + m_tRotation;
|
||||
/* open file */
|
||||
m_nLogFD = openFile(m_cmd, m_file_name);
|
||||
if(m_nLogFD < 0) {
|
||||
/* startup did not success */
|
||||
exit(2);
|
||||
}
|
||||
|
||||
if(m_force_rotation) {
|
||||
qs_csInitLock();
|
||||
pthread_create(&tid, tha, forcedRotationThread, NULL);
|
||||
}
|
||||
|
||||
buf = calloc(1, MAX_LINE_BUFFER+1);
|
||||
for(;;) {
|
||||
if(m_timestamp) {
|
||||
// low perf line-by-line read
|
||||
if(fgets(buf, MAX_LINE_BUFFER, stdin) == NULL) {
|
||||
exit(3);
|
||||
} else {
|
||||
nRead = strlen(buf);
|
||||
if(m_force_rotation) {
|
||||
qs_csLock(); // >@CTR1
|
||||
}
|
||||
m_counter += (nRead + TME_STR_LEN);
|
||||
now = get_now();
|
||||
writeTimestamp();
|
||||
nWrite = write(m_nLogFD, buf, nRead);
|
||||
}
|
||||
} else {
|
||||
// normal/fast buffer read/process
|
||||
nRead = read(0, buf, MAX_LINE_BUFFER);
|
||||
if(nRead == 0) exit(3);
|
||||
if(nRead < 0) if(errno != EINTR) exit(4);
|
||||
if(m_force_rotation) {
|
||||
qs_csLock(); // >@CTR1
|
||||
}
|
||||
m_counter += nRead;
|
||||
now = get_now();
|
||||
/* write data if we have a file handle (else continue but drop log data,
|
||||
re-try to open the file at next rotation time) */
|
||||
if(m_nLogFD >= 0) {
|
||||
do {
|
||||
nWrite = write(m_nLogFD, buf, nRead);
|
||||
if(m_stdout) {
|
||||
printf("%.*s", nRead, buf);
|
||||
}
|
||||
} while (nWrite < 0 && errno == EINTR);
|
||||
}
|
||||
m_messages++;
|
||||
if(nWrite != nRead) {
|
||||
if(m_nLogFD >= 0) {
|
||||
char msg[HUGE_STR];
|
||||
snprintf(msg, sizeof(msg), "ERROR while writing to file, %ld messages lost\n", m_messages);
|
||||
/* error while writing data, try to delete the old file and continue ... */
|
||||
rc = ftruncate(m_nLogFD, 0);
|
||||
rc = write(m_nLogFD, msg, strlen(msg));
|
||||
m_messages = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
// end buffer or line read
|
||||
if((now > m_tLogEnd) || (m_counter > m_limit)) {
|
||||
/* rotate! */
|
||||
rotate(m_cmd, now, m_file_name, &m_messages);
|
||||
}
|
||||
if(m_force_rotation) {
|
||||
qs_csUnLock(); // <@CTR1
|
||||
}
|
||||
}
|
||||
memset(buf, 0, MAX_LINE_BUFFER);
|
||||
free(buf);
|
||||
return 0;
|
||||
}
|
799
tools/src/qssign.c
Normal file
|
@ -0,0 +1,799 @@
|
|||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qssign.c: Log data signing tool to ensure data integrity.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qssign.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <regex.h>
|
||||
#include <signal.h>
|
||||
|
||||
/* openssl */
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/hmac.h>
|
||||
|
||||
/* apr/apr-util */
|
||||
#define QS_USEAPR 1
|
||||
#include <apr.h>
|
||||
#include <apr_base64.h>
|
||||
#include <apr_pools.h>
|
||||
#include <apr_strings.h>
|
||||
#include <apr_thread_proc.h>
|
||||
#include <apr_file_io.h>
|
||||
#include <apr_time.h>
|
||||
|
||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||
#include <pcre2.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
#include "qs_apo.h"
|
||||
|
||||
#define SEQDIG "12"
|
||||
#define QS_END "qssign---end-of-data"
|
||||
#define QS_START "qssign---------start"
|
||||
|
||||
static const char *m_start_fmt = "";
|
||||
static const char *m_end_fmt = "";
|
||||
static long m_nr = 1;
|
||||
static int m_logend = 0;
|
||||
static void (*m_end)(const char *, int) = NULL;
|
||||
static int m_end_pos = 0;
|
||||
static const char *m_sec = NULL;
|
||||
static const EVP_MD *m_evp;
|
||||
static qs_regex_t *m_filter = NULL;
|
||||
|
||||
typedef struct {
|
||||
const char* start_fmt;
|
||||
const char* end_fmt;
|
||||
const char* pattern;
|
||||
const char* test;
|
||||
} qos_p_t;
|
||||
|
||||
#define severity "[A-Z]+"
|
||||
|
||||
static const qos_p_t pattern[] = {
|
||||
{
|
||||
"%s | INFO | "QS_START,
|
||||
"%s | INFO | "QS_END,
|
||||
"^[0-9]{4}[-][0-9]{2}[-][0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}[ ]+[|][ ]+"severity"[ ]+[|][ ]+[a-zA-Z0-9]+",
|
||||
"2010-04-14 20:18:37,464 | INFO | org.hibernate.cfg.Configuration"
|
||||
},
|
||||
{
|
||||
"%s INFO "QS_START,
|
||||
"%s INFO "QS_END,
|
||||
"^[0-9]{4}[-][0-9]{2}[-][0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}[ ]+"severity"[ ]+",
|
||||
"2011-08-30 07:27:22,738 INFO loginId='test'"
|
||||
},
|
||||
{
|
||||
"%s qssign start INFO "QS_START,
|
||||
"%s qssign end INFO "QS_END,
|
||||
"^[0-9]{4}[-][0-9]{2}[-][0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}[ ]+[a-zA-Z0-9\\.-]+[ ]+[a-zA-Z0-9\\.-]+[ ]+"severity"[ ]+",
|
||||
"2011-09-01 07:37:17,275 main org.apache.catalina.startup.Catalina INFO Server"
|
||||
},
|
||||
{
|
||||
"%s INFO "QS_START,
|
||||
"%s INFO "QS_END,
|
||||
"^[0-9]{4}[-][0-9]{2}[-][0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2},[0-9]{3}[ ]+",
|
||||
"2011-08-30 07:27:22,738 "
|
||||
},
|
||||
{ NULL, NULL, NULL }
|
||||
};
|
||||
|
||||
/**
|
||||
* Writes the signed log line to stdout.
|
||||
*
|
||||
* @param line Data to sign
|
||||
* @param line_size Length of the data
|
||||
* @param sec Secret
|
||||
* @param sec_len Length of the secret
|
||||
*/
|
||||
static void qs_write(char *line, int line_size, const char *sec, int sec_len) {
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
HMAC_CTX hmac;
|
||||
HMAC_CTX *hmac_p = &hmac;
|
||||
#else
|
||||
HMAC_CTX *hmac_p;
|
||||
#endif
|
||||
unsigned char data[HMAC_MAX_MD_CBLOCK];
|
||||
unsigned int len;
|
||||
char *m;
|
||||
int data_len;
|
||||
sprintf(&line[strlen(line)], " %."SEQDIG"ld", m_nr);
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
HMAC_CTX_init(hmac_p);
|
||||
#else
|
||||
hmac_p = HMAC_CTX_new();
|
||||
#endif
|
||||
HMAC_Init_ex(hmac_p, sec, sec_len, m_evp, NULL);
|
||||
HMAC_Update(hmac_p, (const unsigned char *)line, strlen(line));
|
||||
HMAC_Final(hmac_p, data, &len);
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
HMAC_CTX_cleanup(hmac_p);
|
||||
#else
|
||||
HMAC_CTX_free(hmac_p);
|
||||
#endif
|
||||
m = calloc(1, apr_base64_encode_len(len) + 1);
|
||||
data_len = apr_base64_encode(m, (char *)data, len);
|
||||
m[data_len] = '\0';
|
||||
printf("%s#%s\n", line, m);
|
||||
fflush(stdout);
|
||||
free(m);
|
||||
m_nr++;
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* [Fri Dec 03 07:37:40 2010] [notice] .........
|
||||
*/
|
||||
static void qs_end_apache_err(const char *sec, int start) {
|
||||
int sec_len = strlen(sec);
|
||||
char line[MAX_LINE];
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = sizeof(line) - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
char time_string[1024];
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
strftime(time_string, sizeof(time_string), "%a %b %d %H:%M:%S %Y", ptr);
|
||||
if(start) {
|
||||
sprintf(line, "[%s] [notice] "QS_START, time_string);
|
||||
} else {
|
||||
sprintf(line, "[%s] [notice] "QS_END, time_string);
|
||||
}
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* 12.12.12.12 - - [03/Dec/2010:07:36:51 +0100] ...............
|
||||
*/
|
||||
static void qs_end_apache_acc(const char *sec, int start) {
|
||||
int sec_len = strlen(sec);
|
||||
char line[MAX_LINE];
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = sizeof(line) - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
char time_string[1024];
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
char sign;
|
||||
int timz;
|
||||
apr_time_exp_t xt;
|
||||
apr_time_exp_lt(&xt, apr_time_now());
|
||||
timz = xt.tm_gmtoff;
|
||||
if(timz < 0) {
|
||||
timz = -timz;
|
||||
sign = '-';
|
||||
} else {
|
||||
sign = '+';
|
||||
}
|
||||
strftime(time_string, sizeof(time_string), "%d/%b/%Y:%H:%M:%S", ptr);
|
||||
if(start) {
|
||||
sprintf(line, "0.0.0.0 - - [%s %c%.2d%.2d] "QS_START, time_string, sign, timz / (60*60), (timz % (60*60)) / 60);
|
||||
} else {
|
||||
sprintf(line, "0.0.0.0 - - [%s %c%.2d%.2d] "QS_END, time_string, sign, timz / (60*60), (timz % (60*60)) / 60);
|
||||
}
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* 2010 12 03 17:00:30.425 qssign end 0.0 5-NOTICE: ..............
|
||||
*/
|
||||
static void qs_end_nj(const char *sec, int start) {
|
||||
int sec_len = strlen(sec);
|
||||
char line[MAX_LINE];
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = sizeof(line) - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
char time_string[1024];
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
char buf[1024];
|
||||
int i;
|
||||
for(i = 0; i < m_end_pos; i++) {
|
||||
buf[i] = ' ';
|
||||
}
|
||||
buf[i] = '\0';
|
||||
strftime(time_string, sizeof(time_string), "%Y %m %d %H:%M:%S.000", ptr);
|
||||
if(start) {
|
||||
sprintf(line, "%s qssign start 0.0%s 5-NOTICE: "QS_START, time_string, buf);
|
||||
} else {
|
||||
sprintf(line, "%s qssign end 0.0%s 5-NOTICE: "QS_END, time_string, buf);
|
||||
}
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* 2010-04-14 20:18:37,464 ... (using m_fmt)
|
||||
*/
|
||||
static void qs_end_lj(const char *sec, int start) {
|
||||
int sec_len = strlen(sec);
|
||||
char line[MAX_LINE];
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = sizeof(line) - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
char time_string[1024];
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S,000", ptr);
|
||||
if(start) {
|
||||
sprintf(line, m_start_fmt, time_string);
|
||||
} else {
|
||||
sprintf(line, m_end_fmt, time_string);
|
||||
}
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* Dec 6 04:00:06 localhost kernel:
|
||||
*/
|
||||
static void qs_end_lx(const char *sec, int start) {
|
||||
char hostname[1024];
|
||||
int len = sizeof(hostname);
|
||||
int sec_len = strlen(sec);
|
||||
char line[MAX_LINE];
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = sizeof(line) - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
char time_string[1024];
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
strftime(time_string, sizeof(time_string), "%b %e %H:%M:%S", ptr);
|
||||
if(gethostname(hostname, len) != 0) {
|
||||
hostname[0] = '-';
|
||||
hostname[1] = '\0';
|
||||
}
|
||||
if(start) {
|
||||
sprintf(line, "%s %s qssign: "QS_START, time_string, hostname);
|
||||
} else {
|
||||
sprintf(line, "%s %s qssign: "QS_END, time_string, hostname);
|
||||
}
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* 2013/11/13 17:38:41 [error] 6577#0: *1 open()
|
||||
*/
|
||||
static void qs_end_ngx(const char *sec, int start) {
|
||||
int sec_len = strlen(sec);
|
||||
char line[MAX_LINE];
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = sizeof(line) - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
char time_string[1024];
|
||||
time_t tm = time(NULL);
|
||||
struct tm *ptr = localtime(&tm);
|
||||
strftime(time_string, sizeof(time_string), "%Y/%m/%d %H:%M:%S", ptr);
|
||||
if(start) {
|
||||
sprintf(line, "%s [notice] 0#0: "QS_END, time_string);
|
||||
} else {
|
||||
sprintf(line, "%s [notice] 0#0: "QS_END, time_string);
|
||||
}
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
return;
|
||||
}
|
||||
|
||||
void qs_signal_exit(int e) {
|
||||
if(m_logend && (m_end != NULL)) {
|
||||
m_end(m_sec, 0);
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tries to find out a suitable log line format which is used
|
||||
* to log sign end messages (so let the verifier known, that the
|
||||
* data ends nothing has been cut off).
|
||||
*
|
||||
* Sets the format to global variables.
|
||||
*
|
||||
* known pattern
|
||||
* - [Fri Dec 03 07:37:40 2010] [notice] .........
|
||||
* - 12.12.12.12 - - [03/Dec/2010:07:36:51 +0100] ...............
|
||||
* - 2010 12 03 17:00:30.425 qssign end 0.0 5-NOTICE: ..............
|
||||
* 46 <- var -> 63 71
|
||||
* - Dec 6 04:00:06 localhost kernel:
|
||||
* - some 2010-12-03 17:00:30,425 ...
|
||||
*
|
||||
* @param s
|
||||
*/
|
||||
static void qs_set_format(char *s) {
|
||||
regex_t r_apache_err;
|
||||
regex_t r_apache_acc;
|
||||
regex_t r_nj;
|
||||
regex_t r_lx;
|
||||
regex_t r_ngx;
|
||||
if(regcomp(&r_apache_err,
|
||||
"^\\[[a-zA-Z]{3} [a-zA-Z]{3} [0-9]+ [0-9]+:[0-9]+:[0-9]+ [0-9]+\\] \\[[a-zA-Z]+\\] ",
|
||||
REG_EXTENDED) != 0) {
|
||||
fprintf(stderr, "failed to compile regex (err)\n");
|
||||
exit(1);
|
||||
}
|
||||
if(regcomp(&r_apache_acc,
|
||||
"^[0-9.]+ [a-zA-Z0-9\\@_\\.\\-]+ [a-zA-Z0-9\\@_\\.\\-]+ \\[[0-9]+/[a-zA-Z]{3}/[0-9:]+[0-9\\+ ]+\\] ",
|
||||
REG_EXTENDED) != 0) {
|
||||
fprintf(stderr, "failed to compile regex (acc)\n");
|
||||
exit(1);
|
||||
}
|
||||
if(regcomp(&r_nj,
|
||||
"^[0-9]{4} [0-9]{2} [0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\\.[0-9]{3} [a-zA-Z0-9]+[ ]+.*[A-Z]+[ ]*:",
|
||||
REG_EXTENDED) != 0) {
|
||||
fprintf(stderr, "failed to compile regex (nj)\n");
|
||||
exit(1);
|
||||
}
|
||||
if(regcomp(&r_lx,
|
||||
"^[a-zA-Z]{3}[ ]+[0-9]+[ ]+[0-9]{2}:[0-9]{2}:[0-9]{2}[ ]+[a-zA-Z0-9_\\.\\-]+[ ]+[a-zA-Z0-9_\\.\\-]+:",
|
||||
REG_EXTENDED) != 0) {
|
||||
fprintf(stderr, "failed to compile regex (lx)\n");
|
||||
exit(1);
|
||||
}
|
||||
if(regcomp(&r_ngx,
|
||||
"^[0-9]{4}/[0-9]{2}/[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} \\[[a-z]+\\] [0-9]+#[0-9]+: ",
|
||||
REG_EXTENDED) != 0) {
|
||||
fprintf(stderr, "failed to compile regex (ngx)\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
if(regexec(&r_apache_err, s, 0, NULL, 0) == 0) {
|
||||
m_end = &qs_end_apache_err;
|
||||
} else if(regexec(&r_apache_acc, s, 0, NULL, 0) == 0) {
|
||||
m_end = &qs_end_apache_acc;
|
||||
} else if(regexec(&r_nj, s, 0, NULL, 0) == 0) {
|
||||
char *dp = strstr(s, ": ");
|
||||
if(dp) {
|
||||
/* calculate the "var" size, see comment above */
|
||||
m_end_pos = dp - s - 47 - 8 - 3;
|
||||
if((m_end_pos < 0) || (m_end_pos > 1000)) {
|
||||
m_end_pos = 0;
|
||||
}
|
||||
}
|
||||
m_end = &qs_end_nj;
|
||||
} else if(regexec(&r_lx, s, 0, NULL, 0) == 0) {
|
||||
m_end = &qs_end_lx;
|
||||
} else if(regexec(&r_ngx, s, 0, NULL, 0) == 0) {
|
||||
m_end = &qs_end_ngx;
|
||||
}
|
||||
// search within the generic yyyy-mm-dd hh-mm-ss,mmm patterns
|
||||
if(!m_end) {
|
||||
const qos_p_t *p = pattern;
|
||||
while(p->end_fmt) {
|
||||
regex_t r_j;
|
||||
if(regcomp(&r_j, p->pattern, REG_EXTENDED) != 0) {
|
||||
fprintf(stderr, "failed to compile regex (%s)\n", p->pattern);
|
||||
exit(1);
|
||||
}
|
||||
if(regexec(&r_j, s, 0, NULL, 0) == 0) {
|
||||
m_start_fmt = p->start_fmt;
|
||||
m_end_fmt = p->end_fmt;
|
||||
m_end = &qs_end_lj;
|
||||
break;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
}
|
||||
/* default (apache error log format) */
|
||||
if(m_end == NULL) {
|
||||
m_end = &qs_end_apache_err;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Process the data from stdin.
|
||||
*
|
||||
* @param sec Passphrase
|
||||
*/
|
||||
static void qs_sign(const char *sec) {
|
||||
int sec_len = strlen(sec);
|
||||
char *line = calloc(1, MAX_LINE_BUFFER+1);
|
||||
int dig = atoi(SEQDIG);
|
||||
/* <data> ' ' <sequence number> '#' <hmac>*/
|
||||
int line_size = MAX_LINE_BUFFER - 1 - dig - 1 - (2*HMAC_MAX_MD_CBLOCK) - 1;
|
||||
int line_len;
|
||||
while(fgets(line, MAX_LINE_BUFFER, stdin) != NULL) {
|
||||
line_len = strlen(line) - 1;
|
||||
while(line_len > 0) { // cut tailing CR/LF
|
||||
if(line[line_len] >= ' ') {
|
||||
break;
|
||||
}
|
||||
line[line_len] = '\0';
|
||||
line_len--;
|
||||
}
|
||||
if(m_logend && (m_end == NULL)) {
|
||||
qs_set_format(line);
|
||||
m_end(m_sec, 1);
|
||||
}
|
||||
if(m_filter != NULL && qs_regexec_len(m_filter, line, line_len, 0, NULL, 0) >= 0) {
|
||||
printf("%s\n", line);
|
||||
fflush(stdout);
|
||||
} else {
|
||||
qs_write(line, line_size, sec, sec_len);
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
static int isSpecialLine(const char *line, const char *marker) {
|
||||
char *se_marker = strstr(line, marker);
|
||||
if(se_marker != NULL) {
|
||||
/* QS_END/START + " " + SEQDIG */
|
||||
int sz = strlen(marker) + 1 + atoi(SEQDIG);
|
||||
if(sz == (strlen(line) - (se_marker - line))) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static long qs_verify(const char *sec) {
|
||||
int end_seen = 0;
|
||||
int sec_len = strlen(sec);
|
||||
long err = 0; // errors
|
||||
long lineNumber = 0; // line number of the file / input data
|
||||
char *line = calloc(1, MAX_LINE_BUFFER+1);
|
||||
int line_size = MAX_LINE_BUFFER;
|
||||
int line_len;
|
||||
m_nr = -1; // expected sequence number (start with any)
|
||||
long nr_alt = -1; // alternatively expected sequence number (if a line was injected)
|
||||
long nr_alt_lineNumber = -1;
|
||||
long nr_usr1_lineNumber = -1; // we may have lines written by a prev. qssign binary (while graceful restart)
|
||||
while(fgets(line, line_size, stdin) != NULL) {
|
||||
int valid = 0;
|
||||
long msgSeqNr = 0;
|
||||
int isOldProcess = 0;
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
HMAC_CTX hmac;
|
||||
HMAC_CTX *hmac_p = &hmac;
|
||||
#else
|
||||
HMAC_CTX *hmac_p;
|
||||
#endif
|
||||
unsigned char data[HMAC_MAX_MD_CBLOCK];
|
||||
unsigned int len;
|
||||
char *m;
|
||||
int data_len;
|
||||
char *sig;
|
||||
char *seq;
|
||||
line_len = strlen(line) - 1;
|
||||
while(line_len > 0) { // cut tailing CR/LF
|
||||
if(line[line_len] >= ' ') {
|
||||
break;
|
||||
}
|
||||
line[line_len] = '\0';
|
||||
line_len--;
|
||||
}
|
||||
sig = strrchr(line, '#');
|
||||
seq = strrchr(line, ' ');
|
||||
lineNumber++;
|
||||
if(seq && sig) {
|
||||
sig[0] = '\0';
|
||||
sig++;
|
||||
/* verify hmac */
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
HMAC_CTX_init(hmac_p);
|
||||
#else
|
||||
hmac_p = HMAC_CTX_new();
|
||||
#endif
|
||||
HMAC_Init_ex(hmac_p, sec, sec_len, m_evp, NULL);
|
||||
HMAC_Update(hmac_p, (const unsigned char *)line, strlen(line));
|
||||
HMAC_Final(hmac_p, data, &len);
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
HMAC_CTX_cleanup(hmac_p);
|
||||
#else
|
||||
HMAC_CTX_free(hmac_p);
|
||||
#endif
|
||||
m = calloc(1, apr_base64_encode_len(len) + 1);
|
||||
data_len = apr_base64_encode(m, (char *)data, len);
|
||||
m[data_len] = '\0';
|
||||
if(strcmp(m, sig) != 0) {
|
||||
err++;
|
||||
fprintf(stderr, "ERROR on line %ld: invalid signature\n", lineNumber);
|
||||
/* message may be modified/corrupt or inserted: next line may have
|
||||
the next sequence number (modified) or the same (inserted) */
|
||||
nr_alt = m_nr + 1;
|
||||
nr_alt_lineNumber = lineNumber + 1;
|
||||
} else {
|
||||
valid = 1;
|
||||
}
|
||||
free(m);
|
||||
/* verify sequence */
|
||||
seq++;
|
||||
msgSeqNr = atol(seq);
|
||||
if(msgSeqNr == 0) {
|
||||
err++;
|
||||
fprintf(stderr, "ERROR on line %ld: invalid sequence\n", lineNumber);
|
||||
} else {
|
||||
if(m_nr != -1) {
|
||||
if(lineNumber == nr_alt_lineNumber) {
|
||||
// last line was modified
|
||||
if(m_nr != msgSeqNr) {
|
||||
// and therefore, we also accept the next sequence number
|
||||
m_nr = nr_alt;
|
||||
}
|
||||
nr_alt = -1;
|
||||
nr_alt_lineNumber = -1;
|
||||
}
|
||||
if(valid && isSpecialLine(line, QS_START)) {
|
||||
// new start line (graceful restart)
|
||||
// we expect now msg number 1
|
||||
// but still acept the old until we get the end marker
|
||||
nr_usr1_lineNumber = m_nr;
|
||||
m_nr = 1;
|
||||
}
|
||||
if(valid && nr_usr1_lineNumber == msgSeqNr) {
|
||||
// msg from old process is okay...
|
||||
nr_usr1_lineNumber++;
|
||||
isOldProcess = 1;
|
||||
} else {
|
||||
if(m_nr != msgSeqNr) {
|
||||
if(msgSeqNr == 1) {
|
||||
if(!end_seen) {
|
||||
err++;
|
||||
fprintf(stderr, "ERROR on line %ld: wrong sequence, server restart? (expect %."SEQDIG"ld)\n",
|
||||
lineNumber, m_nr);
|
||||
}
|
||||
} else {
|
||||
err++;
|
||||
fprintf(stderr, "ERROR on line %ld: wrong sequence (expect %."SEQDIG"ld)\n", lineNumber, m_nr);
|
||||
}
|
||||
} else {
|
||||
// well done - this is the sequence number we expect
|
||||
}
|
||||
}
|
||||
} else if(m_logend) {
|
||||
// log should (if not rotated) start with message 1
|
||||
if(msgSeqNr != 1) {
|
||||
fprintf(stderr, "NOTICE: log starts with sequence %."SEQDIG"ld, log rotation?"
|
||||
" (expect %."SEQDIG"d)\n", msgSeqNr, 1);
|
||||
}
|
||||
}
|
||||
if(valid && !isOldProcess) {
|
||||
// adjust
|
||||
m_nr = msgSeqNr;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
err++;
|
||||
fprintf(stderr, "ERROR on line %ld: missing signature/sequence\n", lineNumber);
|
||||
}
|
||||
end_seen = 0;
|
||||
if(valid) {
|
||||
if(!isOldProcess) {
|
||||
m_nr++;
|
||||
}
|
||||
if(isSpecialLine(line, QS_END)) {
|
||||
if(nr_usr1_lineNumber == -1) {
|
||||
end_seen = 1;
|
||||
} else {
|
||||
nr_usr1_lineNumber = -1; // no more messages from an old process
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(m_logend && !end_seen) {
|
||||
fprintf(stderr, "NOTICE: no end marker seen, log rotation? (expect %."SEQDIG"ld)\n", m_nr);
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - an utility to sign and verify the integrity of log data.\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -s|S <secret> [-e] [-v] [-u <name>] [-f <regex>] [-a 'sha1'|'sha256']\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, "%s is a log data integrity check tool. It reads log data\n", cmd);
|
||||
qs_man_print(man, "from stdin (pipe) and writes the data to stdout adding a sequence\n");
|
||||
qs_man_print(man, "number and signature to ever log line.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -s <secret>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Passphrase used to calculate signature.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -S <program>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Specifies a program which writes the passphrase to stdout.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -e\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Writes start/end marker when starting/stopping data signing.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -v\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Verification mode checking the integrity of signed data.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -u <name>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Becomes another user, e.g. www-data.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -f <regex>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Filter pattern (case sensitive regular expression) for messages\n");
|
||||
qs_man_print(man, " which do not need to be signed.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -a 'sha1'|'sha256'\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Specifies the algorithm to use. Default is sha1.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH EXAMPLE\n");
|
||||
printf("Sign:\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
printf("Example (sign):\n");
|
||||
}
|
||||
qs_man_println(man, " TransferLog \"|/usr/bin/%s -s password -e |/usr/bin/qsrotate -o /var/log/apache/access.log\"\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf("\n");
|
||||
printf("Verify:\n");
|
||||
printf("\n");
|
||||
} else {
|
||||
qs_man_print(man, "Example (verify):\n");
|
||||
}
|
||||
qs_man_println(man, " cat access.log | %s -s password -v\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qstail(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
apr_pool_t *pool;
|
||||
int verify = 0;
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
const char *username = NULL;
|
||||
const char *filter = NULL;
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
apr_app_initialize(&argc, &argv, NULL);
|
||||
apr_pool_create(&pool, NULL);
|
||||
m_evp = EVP_sha1();
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-s") == 0) {
|
||||
if (--argc >= 1) {
|
||||
m_sec = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-S") == 0) {
|
||||
if (--argc >= 1) {
|
||||
m_sec = qs_readpwd(pool, *(++argv));
|
||||
}
|
||||
} else if(strcmp(*argv,"-v") == 0) {
|
||||
verify = 1;
|
||||
} else if(strcmp(*argv,"-e") == 0) {
|
||||
m_logend = 1;
|
||||
} else if(strcmp(*argv,"-u") == 0) { /* switch user id */
|
||||
if (--argc >= 1) {
|
||||
username = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-f") == 0) { /* filter */
|
||||
if (--argc >= 1) {
|
||||
filter = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-a") == 0) { /* set alg */
|
||||
if (--argc >= 1) {
|
||||
const char *alg = *(++argv);
|
||||
if(strcasecmp(alg, "SHA256") == 0) {
|
||||
m_evp = EVP_sha256();
|
||||
} else if(strcasecmp(alg, "SHA1") != 0) {
|
||||
m_evp = NULL;
|
||||
}
|
||||
} else {
|
||||
m_evp = NULL;
|
||||
}
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(filter != NULL) {
|
||||
m_filter = apr_palloc(pool, sizeof(qs_regex_t));
|
||||
if(qs_regcomp(m_filter, filter, 0) != 0) {
|
||||
fprintf(stderr, "failed to compile filter pattern <%s>\n", filter);
|
||||
exit(1);
|
||||
}
|
||||
apr_pool_pre_cleanup_register(pool, m_filter, qs_pregfree);
|
||||
}
|
||||
|
||||
if(m_evp == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
if(m_sec == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
|
||||
qs_setuid(username, cmd);
|
||||
|
||||
if(verify) {
|
||||
long err = qs_verify(m_sec);
|
||||
if(err != 0) {
|
||||
return 1;
|
||||
}
|
||||
} else {
|
||||
if(m_logend) {
|
||||
signal(SIGTERM, qs_signal_exit);
|
||||
}
|
||||
qs_sign(m_sec);
|
||||
if(m_logend && (m_end != NULL)) {
|
||||
m_end(m_sec, 0);
|
||||
}
|
||||
}
|
||||
|
||||
apr_pool_destroy(pool);
|
||||
return 0;
|
||||
}
|
237
tools/src/qstail.c
Normal file
|
@ -0,0 +1,237 @@
|
|||
/* -*-mode: c; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
||||
*/
|
||||
/**
|
||||
* Utilities for the quality of service module mod_qos.
|
||||
*
|
||||
* qstail.c: Shows the end of a log file beginning at the
|
||||
* provided pattern.
|
||||
*
|
||||
* See http://mod-qos.sourceforge.net/ for further
|
||||
* details.
|
||||
*
|
||||
* Copyright (C) 2023 Pascal Buchbinder
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
static const char revision[] = "$Id: qstail.c 2654 2022-05-13 09:12:42Z pbuchbinder $";
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <signal.h>
|
||||
|
||||
#include "qs_util.h"
|
||||
|
||||
#define BUFFER 2048
|
||||
|
||||
static void usage(char *cmd, int man) {
|
||||
if(man) {
|
||||
//.TH [name of program] [section number] [center footer] [left footer] [center header]
|
||||
printf(".TH %s 1 \"%s\" \"mod_qos utilities %s\" \"%s man page\"\n", qs_CMD(cmd), man_date,
|
||||
man_version, cmd);
|
||||
}
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH NAME\n");
|
||||
}
|
||||
qs_man_print(man, "%s - an utility printing the end of a log file"
|
||||
" starting at the specified pattern.\n", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SYNOPSIS\n");
|
||||
}
|
||||
qs_man_print(man, "%s%s -i <path> -p <pattern>\n", man ? "" : "Usage: ", cmd);
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH DESCRIPTION\n");
|
||||
} else {
|
||||
printf("Summary\n");
|
||||
}
|
||||
qs_man_print(man, " %s shows the end of a log file beginning with the line containing the\n", cmd);
|
||||
qs_man_print(man, " specified pattern. This may be used to show all lines which has been written\n");
|
||||
qs_man_print(man, " after a certain event (e.g., server restart) or time stamp.\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH OPTIONS\n");
|
||||
} else {
|
||||
printf("Options\n");
|
||||
}
|
||||
if(man) printf(".TP\n");
|
||||
qs_man_print(man, " -i <path>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Input file to read the data from.\n");
|
||||
if(man) printf("\n.TP\n");
|
||||
qs_man_print(man, " -p <pattern>\n");
|
||||
if(man) printf("\n");
|
||||
qs_man_print(man, " Search pattern (literal string).\n");
|
||||
printf("\n");
|
||||
if(man) {
|
||||
printf(".SH SEE ALSO\n");
|
||||
printf("qsdt(1), qsexec(1), qsfilter2(1), qsgeo(1), qsgrep(1), qshead(1), qslog(1), qslogger(1), qspng(1), qsre(1), qsrespeed(1), qsrotate(1), qssign(1)\n");
|
||||
printf(".SH AUTHOR\n");
|
||||
printf("Pascal Buchbinder, http://mod-qos.sourceforge.net/\n");
|
||||
} else {
|
||||
printf("See http://mod-qos.sourceforge.net/ for further details.\n");
|
||||
}
|
||||
if(man) {
|
||||
exit(0);
|
||||
} else {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/* search the beginning of the line starting at the provided position */
|
||||
static void qs_readline(long pos, FILE *f) {
|
||||
size_t len;
|
||||
long startpos = pos - BUFFER + 1;
|
||||
long readlen = BUFFER;
|
||||
char line[readlen + 1];
|
||||
if(startpos < 0) {
|
||||
// we are at the beginning of the file
|
||||
startpos = 0;
|
||||
readlen = pos + 1;
|
||||
}
|
||||
fseek(f, startpos, SEEK_SET);
|
||||
len = fread(&line, 1, readlen, f);
|
||||
if(len > 0) {
|
||||
char *s = &line[len-1];
|
||||
line[len] = '\0';
|
||||
while((s >= line) && (s[0] != CR) && (s[0] != LF)) {
|
||||
s--;
|
||||
}
|
||||
if((s[0] == CR) || (s[0] == LF)) {
|
||||
s++;
|
||||
}
|
||||
printf("%s", s);
|
||||
}
|
||||
}
|
||||
|
||||
static int qs_tail(const char *cmd, FILE *f, const char *pattern) {
|
||||
char *cont = NULL;
|
||||
long search_win_len = (strlen(pattern) * 2) + 32;
|
||||
char line[search_win_len + 10];
|
||||
long pos = 0;
|
||||
size_t len;
|
||||
char *startpattern = NULL;
|
||||
fseek(f, 0L, SEEK_END);
|
||||
pos = ftell(f);
|
||||
while(pos > search_win_len) {
|
||||
int offset = 0;
|
||||
pos = pos - (search_win_len/2);
|
||||
fseek(f, pos, SEEK_SET);
|
||||
len = fread(&line, 1, search_win_len, f);
|
||||
if(len <= 0) {
|
||||
/* pattern not found / reached end */
|
||||
return 1;
|
||||
}
|
||||
line[len] = '\0';
|
||||
if((startpattern = strstr(line, pattern)) != NULL) {
|
||||
int containsend = 0;
|
||||
char *s = startpattern;
|
||||
char *end;
|
||||
offset = startpattern - line;
|
||||
/* search the beginning of the line */
|
||||
while((s > line) && (s[0] != CR) && (s[0] != LF)) {
|
||||
s--;
|
||||
}
|
||||
if((s[0] != CR) && (s[0] != LF)) {
|
||||
// beginning of the line not in the buffer
|
||||
qs_readline(pos, f);
|
||||
}
|
||||
s++;
|
||||
end = startpattern;
|
||||
/* search the end of the line */
|
||||
while((offset < search_win_len) && end[0] && end[0] != CR && end[0] != LF) {
|
||||
end++;
|
||||
offset++;
|
||||
}
|
||||
/* print the line containing the pattern */
|
||||
if((end[0] == CR) || (end[0] == LF)) {
|
||||
end[0] = '\0';
|
||||
printf("%s\n", s);
|
||||
containsend = 1;
|
||||
} else {
|
||||
printf("%s", s);
|
||||
}
|
||||
fseek(f, pos + offset, SEEK_SET);
|
||||
if(containsend) {
|
||||
// skip the line at the current position
|
||||
cont = fgets(line, sizeof(line), f);
|
||||
} else {
|
||||
cont = line;
|
||||
}
|
||||
if(cont) {
|
||||
while(fgets(line, sizeof(line), f) != NULL) {
|
||||
printf("%s", line);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
int main(int argc, const char * const argv[]) {
|
||||
FILE *f;
|
||||
const char *filename = NULL;
|
||||
const char *pattern = NULL;
|
||||
char *cmd = strrchr(argv[0], '/');
|
||||
int status = 0;
|
||||
if(cmd == NULL) {
|
||||
cmd = (char *)argv[0];
|
||||
} else {
|
||||
cmd++;
|
||||
}
|
||||
|
||||
argc--;
|
||||
argv++;
|
||||
while(argc >= 1) {
|
||||
if(strcmp(*argv,"-i") == 0) {
|
||||
if (--argc >= 1) {
|
||||
filename = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-p") == 0) {
|
||||
if (--argc >= 1) {
|
||||
pattern = *(++argv);
|
||||
}
|
||||
} else if(strcmp(*argv,"-?") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"-help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--help") == 0) {
|
||||
usage(cmd, 0);
|
||||
} else if(strcmp(*argv,"--man") == 0) {
|
||||
usage(cmd, 1);
|
||||
}
|
||||
argc--;
|
||||
argv++;
|
||||
}
|
||||
|
||||
if(filename == NULL || pattern == NULL) {
|
||||
usage(cmd, 0);
|
||||
}
|
||||
if((f = fopen(filename, "r")) == NULL) {
|
||||
fprintf(stderr, "[%s]: ERROR, could not open file '%s'\n", cmd, filename);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
status = qs_tail(cmd, f, pattern);
|
||||
|
||||
fclose(f);
|
||||
return status;
|
||||
}
|