]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/protos.h
See kes02Dec02
[bacula/bacula] / bacula / src / lib / protos.h
1 /*
2  * Prototypes for lib directory of Bacula
3  *
4  *   Version $Id$
5  */
6 /*
7    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
8
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.
13
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.
18
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,
22    MA 02111-1307, USA.
23
24  */
25
26 /* base64.c */
27 void      base64_init            (void);
28 int       to_base64              (intmax_t value, char *where);
29 int       from_base64            (intmax_t *value, char *where);
30 int       bin_to_base64          (char *buf, char *bin, int len);
31
32 /* bmisc.c */
33 char     *bstrncpy               (char *dest, const char *src, int maxlen);
34 char     *bstrncat               (char *dest, const char *src, int maxlen);
35 void     *b_malloc               (char *file, int line, size_t size);
36 #ifndef DEBUG
37 void     *bmalloc                (size_t size);
38 #endif
39 void     *brealloc               (void *buf, size_t size);
40 void     *bcalloc                (size_t size1, size_t size2);
41 int       bsnprintf              (char *str, size_t size, const  char  *format, ...);
42 int       bvsnprintf             (char *str, size_t size, const char  *format, va_list ap);
43 int       pool_sprintf           (char *pool_buf, char *fmt, ...);
44 void      create_pid_file        (char *dir, char *progname, int port);
45 int       delete_pid_file        (char *dir, char *progname, int port);
46
47
48 /* bnet.c */
49 int32_t    bnet_recv             (BSOCK *bsock);
50 int        bnet_send             (BSOCK *bsock);
51 int        bnet_fsend              (BSOCK *bs, char *fmt, ...);
52 int        bnet_set_buffer_size    (BSOCK *bs, uint32_t size, int rw);
53 int        bnet_sig                (BSOCK *bs, int sig);
54 BSOCK *    bnet_connect            (void *jcr, int retry_interval,
55                int max_retry_time, char *name, char *host, char *service, 
56                int port, int verbose);
57 int        bnet_wait_data         (BSOCK *bsock, int sec);
58 void       bnet_close            (BSOCK *bsock);
59 BSOCK *    init_bsock            (void *jcr, int sockfd, char *who, char *ip, int port);
60 BSOCK *    dup_bsock             (BSOCK *bsock);
61 void       term_bsock            (BSOCK *bsock);
62 char *     bnet_strerror         (BSOCK *bsock);
63 char *     bnet_sig_to_ascii     (BSOCK *bsock);
64 int        bnet_wait_data        (BSOCK *bsock, int sec);
65 int        bnet_despool          (BSOCK *bsock);
66 int        is_bnet_stop          (BSOCK *bsock);
67 int        is_bnet_error         (BSOCK *bsock);
68
69
70 /* cram-md5.c */
71 int cram_md5_get_auth(BSOCK *bs, char *password);
72 int cram_md5_auth(BSOCK *bs, char *password);
73 void hmac_md5(uint8_t* text, int text_len, uint8_t*  key,
74               int key_len, uint8_t *hmac);
75
76 /* crc32.c */
77 uint32_t bcrc32(uint8_t *buf, int len);
78
79 /* daemon.c */
80 void     daemon_start            ();
81
82 /* lex.c */
83 LEX *     lex_close_file         (LEX *lf);
84 LEX *     lex_open_file          (LEX *lf, char *fname, LEX_ERROR_HANDLER *scan_error);
85 int       lex_get_char           (LEX *lf);
86 void      lex_unget_char         (LEX *lf);
87 char *    lex_tok_to_str         (int token);
88 int       lex_get_token          (LEX *lf, int expect);
89
90 /* message.c */
91 void       my_name_is            (int argc, char *argv[], char *name);
92 void       init_msg              (void *jcr, MSGS *msg);
93 void       term_msg              (void);
94 void       close_msg             (void *jcr);
95 void       add_msg_dest          (MSGS *msg, int dest, int type, char *where, char *dest_code);
96 void       rem_msg_dest          (MSGS *msg, int dest, int type, char *where);
97 void       Jmsg                  (void *jcr, int type, int level, char *fmt, ...);
98 void       dispatch_message      (void *jcr, int type, int level, char *buf);
99 void       init_console_msg      (char *wd);
100 void       free_msgs_res         (MSGS *msgs);
101 int        open_spool_file       (void *jcr, BSOCK *bs);
102 int        close_spool_file      (void *vjcr, BSOCK *bs);
103
104
105 /* bnet_server.c */
106 void       bnet_thread_server(char *bind_addr, int port, int max_clients, workq_t *client_wq, 
107                    void handle_client_request(void *bsock));
108 void             bnet_server             (int port, void handle_client_request(BSOCK *bsock));
109 int              net_connect             (int port);
110 BSOCK *          bnet_bind               (int port);
111 BSOCK *          bnet_accept             (BSOCK *bsock, char *who);
112
113 /* signal.c */
114 void             init_signals             (void terminate(int sig));
115 void             init_stack_dump          (void);
116
117 /* util.c */
118 void             lcase                   (char *str);
119 void             bash_spaces             (char *str);
120 void             unbash_spaces           (char *str);
121 void             strip_trailing_junk     (char *str);
122 void             strip_trailing_slashes  (char *dir);
123 int              skip_spaces             (char **msg);
124 int              skip_nonspaces          (char **msg);
125 int              fstrsch                 (char *a, char *b);
126 char *           encode_time             (time_t time, char *buf);
127 char *           encode_mode             (mode_t mode, char *buf);
128 char *           edit_uint64_with_commas   (uint64_t val, char *buf);
129 char *           add_commas              (char *val, char *buf);
130 char *           edit_uint64             (uint64_t val, char *buf);
131 int              do_shell_expansion      (char *name);
132 int              is_a_number             (const char *num);
133 int              is_buf_zero             (char *buf, int len);
134 int              duration_to_utime       (char *str, utime_t *value);
135 int              size_to_uint64(char *str, int str_len, uint64_t *rtn_value);
136 char             *edit_utime             (utime_t val, char *buf);
137 void             jobstatus_to_ascii      (int JobStatus, char *msg, int maxlen);
138 void             pm_strcat               (POOLMEM **pm, char *str);
139 void             pm_strcpy               (POOLMEM **pm, char *str);
140 int              run_program             (char *prog, int wait, POOLMEM *results);
141 char *           job_type_to_str         (int type);
142 char *           job_status_to_str       (int stat);
143 char *           job_level_to_str        (int level);
144 void             makeSessionKey          (char *key, char *seed, int mode);
145 BPIPE *          open_bpipe(char *prog, int wait, char *mode);
146 int              close_wpipe(BPIPE *bpipe);
147 int              close_bpipe(BPIPE *bpipe);
148
149
150 /* watchdog.c */
151 int start_watchdog(void);
152 int stop_watchdog(void);