2 * Prototypes for lib directory of Bacula
7 Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2 of
12 the License, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU General Public
20 License along with this program; if not, write to the Free
21 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 void base64_init (void);
28 int to_base64 (intmax_t value, char *where);
29 int from_base64 (intmax_t *value, char *where);
30 void encode_stat (char *buf, struct stat *statp);
31 void decode_stat (char *buf, struct stat *statp);
32 int bin_to_base64 (char *buf, char *bin, int len);
35 char *bstrncpy (char *dest, char *src, int maxlen);
36 void *b_malloc (char *file, int line, size_t size);
38 void *bmalloc (size_t size);
40 void *brealloc (void *buf, size_t size);
41 void *bcalloc (size_t size1, size_t size2);
42 int bsnprintf (char *str, size_t size, const char *format, ...);
43 int bvsnprintf (char *str, size_t size, const char *format, va_list ap);
44 int pool_sprintf (char *pool_buf, char *fmt, ...);
45 void create_pid_file (char *dir, char *progname, int port);
46 int delete_pid_file (char *dir, char *progname, int port);
47 #ifndef HAVE_STRERROR_R
48 int strerror_r (int errnum, char *buf, size_t bufsiz);
53 int32_t bnet_recv (BSOCK *bsock);
54 int bnet_send (BSOCK *bsock);
55 int bnet_fsend (BSOCK *bs, char *fmt, ...);
56 int bnet_set_buffer_size (BSOCK *bs, uint32_t size, int rw);
57 int bnet_sig (BSOCK *bs, int sig);
58 BSOCK * bnet_connect (void *jcr, int retry_interval,
59 int max_retry_time, char *name, char *host, char *service,
60 int port, int verbose);
61 int bnet_wait_data (BSOCK *bsock, int sec);
62 void bnet_close (BSOCK *bsock);
63 BSOCK * init_bsock (void *jcr, int sockfd, char *who, char *ip, int port);
64 BSOCK * dup_bsock (BSOCK *bsock);
65 void term_bsock (BSOCK *bsock);
66 char * bnet_strerror (BSOCK *bsock);
67 char * bnet_sig_to_ascii (BSOCK *bsock);
68 int bnet_wait_data (BSOCK *bsock, int sec);
69 int bnet_despool (BSOCK *bsock);
73 int cram_md5_get_auth(BSOCK *bs, char *password);
74 int cram_md5_auth(BSOCK *bs, char *password);
75 void hmac_md5(uint8_t* text, int text_len, uint8_t* key,
76 int key_len, uint8_t *hmac);
79 int create_file(void *jcr, char *fname, char *ofile, char *lname,
80 int type, struct stat *statp, int *ofd);
81 int set_statp(void *jcr, char *fname, char *ofile, char *lname, int type,
86 uint32_t bcrc32(uint8_t *buf, int len);
92 LEX * lex_close_file (LEX *lf);
93 LEX * lex_open_file (LEX *lf, char *fname, LEX_ERROR_HANDLER *scan_error);
94 int lex_get_char (LEX *lf);
95 void lex_unget_char (LEX *lf);
96 char * lex_tok_to_str (int token);
97 int lex_get_token (LEX *lf, int expect);
107 int preserve_existing,
108 char *verbose_fmt_string);
112 void my_name_is (int argc, char *argv[], char *name);
113 void init_msg (void *jcr, MSGS *msg);
114 void term_msg (void);
115 void close_msg (void *jcr);
116 void add_msg_dest (MSGS *msg, int dest, int type, char *where, char *dest_code);
117 void rem_msg_dest (MSGS *msg, int dest, int type, char *where);
118 void Jmsg (void *jcr, int type, int level, char *fmt, ...);
119 void dispatch_message (void *jcr, int type, int level, char *buf);
120 void init_console_msg (char *wd);
121 void free_msgs_res (MSGS *msgs);
122 int open_spool_file (void *jcr, BSOCK *bs);
123 int close_spool_file (void *vjcr, BSOCK *bs);
127 void bnet_thread_server(int port, int max_clients, workq_t *client_wq,
128 void handle_client_request(void *bsock));
129 void bnet_server (int port, void handle_client_request(BSOCK *bsock));
130 int net_connect (int port);
131 BSOCK * bnet_bind (int port);
132 BSOCK * bnet_accept (BSOCK *bsock, char *who);
135 void init_signals (void terminate(int sig));
136 void init_stack_dump (void);
139 void lcase (char *str);
140 void bash_spaces (char *str);
141 void unbash_spaces (char *str);
142 void strip_trailing_junk (char *str);
143 void strip_trailing_slashes (char *dir);
144 int skip_spaces (char **msg);
145 int skip_nonspaces (char **msg);
146 int fstrsch (char *a, char *b);
147 char * encode_time (time_t time, char *buf);
148 char * encode_mode (mode_t mode, char *buf);
149 char * edit_uint64_with_commas (uint64_t val, char *buf);
150 char * add_commas (char *val, char *buf);
151 char * edit_uint64 (uint64_t val, char *buf);
152 int do_shell_expansion (char *name);
153 int is_a_number (const char *num);
154 int string_to_btime (char *str, btime_t *value);
155 char *edit_btime (btime_t val, char *buf);
156 void jobstatus_to_ascii (int JobStatus, char *msg, int maxlen);
157 void pm_strcat (POOLMEM **pm, char *str);
158 void pm_strcpy (POOLMEM **pm, char *str);
159 int run_program (char *prog, int wait, POOLMEM *results);
160 char * job_type_to_str (int type);
161 char * job_status_to_str (int stat);
162 char * job_level_to_str (int level);
163 void makeSessionKey (char *key, char *seed, int mode);
168 int start_watchdog(void);
169 int stop_watchdog(void);