]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/tools.h
Simplify appending SBuf to String (#2108)
[thirdparty/squid.git] / src / tools.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 21 Misc Functions */
10
11#ifndef SQUID_SRC_TOOLS_H
12#define SQUID_SRC_TOOLS_H
13
14#include "sbuf/SBuf.h"
15#include "typedefs.h"
16
17class MemBuf;
18
19extern int DebugSignal;
20
21/// The Squid -n parameter service name.
22/// Default is APP_SHORTNAME ('squid').
23extern SBuf service_name;
24
25void parseEtcHosts(void);
26int getMyPort(void);
27void setUmask(mode_t mask);
28void strwordquote(MemBuf * mb, const char *str);
29
30class Packable;
31
32/* a common objPackInto interface; used by debugObj */
33typedef void (*ObjPackMethod) (void *obj, Packable * p);
34
35/* packs, then prints an object using debugs() */
36void debugObj(int section, int level, const char *label, void *obj, ObjPackMethod pm);
37
38/// callback type for signal handlers
39typedef void SIGHDLR(int sig);
40
41const char *getMyHostname(void);
42const char *uniqueHostname(void);
43
44void death(int sig);
45void sigusr2_handle(int sig);
46void sig_child(int sig);
47void sig_shutdown(int sig); ///< handles shutdown notifications from kids
48void leave_suid(void);
49void enter_suid(void);
50void no_suid(void);
51void setMaxFD(void);
52void setSystemLimits(void);
53void squid_signal(int sig, SIGHDLR *, int flags);
54void keepCapabilities(void);
55void BroadcastSignalIfAny(int& sig);
56
57/// whether the current process is the parent of all other Squid processes
58bool IamMasterProcess();
59/**
60 * whether the current process is dedicated to doing things that only
61 * a single process should do, such as PID file maintenance and WCCP
62 */
63bool IamPrimaryProcess();
64/// whether the current process coordinates worker processes
65bool IamCoordinatorProcess();
66/// whether the current process handles HTTP transactions and such
67bool IamWorkerProcess();
68/// whether the current process is dedicated to managing a cache_dir
69bool IamDiskProcess();
70/// Whether we are running in daemon mode
71bool InDaemonMode(); // try using specific Iam*() checks above first
72/// Whether there should be more than one worker process running
73bool UsingSmp(); // try using specific Iam*() checks above first
74/// number of Kid processes as defined in src/ipc/Kid.h
75int NumberOfKids();
76/// a string describing this process roles such as worker or coordinator
77SBuf ProcessRoles();
78
79void debug_trap(const char *);
80
81void logsFlush(void);
82
83void squid_getrusage(struct rusage *r);
84double rusage_cputime(struct rusage *r);
85int rusage_maxrss(struct rusage *r);
86int rusage_pagefaults(struct rusage *r);
87void releaseServerSockets(void);
88void PrintRusage(void);
89void dumpMallocStats(void);
90
91typedef int PidStatus;
92
93/**
94 * Compatibility wrapper function for waitpid
95 * \pid the pid of child process to wait for.
96 * \param status the exit status returned by waitpid
97 * \param flags WNOHANG or 0
98 */
99pid_t WaitForOnePid(pid_t pid, PidStatus &status, int flags);
100
101/**
102 * Wait for state changes in any of the kid processes.
103 * Equivalent to waitpid(-1, ...) system call
104 * \param status the exit status returned by waitpid
105 * \param flags WNOHANG or 0
106 */
107inline pid_t WaitForAnyPid(PidStatus &status, int flags)
108{
109 return WaitForOnePid(-1, status, flags);
110}
111
112#if _SQUID_WINDOWS_ || _SQUID_MINGW_
113/// xstrerror(errno) equivalent for Windows errors returned by GetLastError()
114SBuf WindowsErrorMessage(DWORD errorId);
115#endif // _SQUID_WINDOWS_ || _SQUID_MINGW_
116
117#endif /* SQUID_SRC_TOOLS_H */
118