File: process.c

package info (click to toggle)
smbnetfs 0.6.3-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 1,304 kB
  • sloc: ansic: 6,982; sh: 1,260; makefile: 26
file content (305 lines) | stat: -rw-r--r-- 8,629 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#include "config.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <signal.h>
#include <pthread.h>
#include <langinfo.h>

#include "common.h"
#include "list.h"
#include "smb_conn_proto.h"
#include "process.h"

#define	CHARSET_LEN	64

struct process_rec{
    LIST	entries;
    int		child_fd;
    pid_t	child_pid;
};

static char	process_system_charset[CHARSET_LEN]		= "UTF-8";
static char	process_server_local_charset[CHARSET_LEN]	= "UTF-8";
static char	process_server_samba_charset[CHARSET_LEN]	= "UTF-8";
static int	process_server_listen_timeout			= 300;
static int	process_server_smb_timeout			= 20000;
static int	process_server_smb_debug_level			= 0;
static int	process_start_enabled				= 1;

static LIST		process_list		= STATIC_LIST_INITIALIZER(process_list);
static pthread_mutex_t	m_process		= PTHREAD_MUTEX_INITIALIZER;


int process_init(void){
    static int		initialized = 0;

    char		*charset;

    if (! initialized){
	if ((charset = nl_langinfo(CODESET)) == NULL){
	    DPRINTF(0, "Can't find system charset, use utf-8 instead. Check your locale.\n");
	    charset = "UTF-8";
	}else{
	    initialized = 1;
	}
	strncpy(process_system_charset, charset, CHARSET_LEN);
	process_system_charset[CHARSET_LEN - 1] = '\0';
	DPRINTF(5, "system_charset=%s\n", process_system_charset);
    }
    pthread_mutex_lock(&m_process);
    strncpy(process_server_local_charset, process_system_charset, CHARSET_LEN);
    process_server_local_charset[CHARSET_LEN - 1] = '\0';
    strncpy(process_server_samba_charset, "UTF-8", CHARSET_LEN);
    process_server_samba_charset[CHARSET_LEN - 1] = '\0';
    pthread_mutex_unlock(&m_process);
    return initialized;
}

void process_disable_new_smb_conn_starting(void){
    DPRINTF(7, "disable new process starting at %u\n", (unsigned int) time(NULL));
    pthread_mutex_lock(&m_process);
    process_start_enabled = 0;
    pthread_mutex_unlock(&m_process);
}

int process_set_server_listen_timeout(int timeout){
    if (timeout < 30) return 0;
    DPRINTF(7, "timeout=%d\n", timeout);
    pthread_mutex_lock(&m_process);
    process_server_listen_timeout = timeout;
    pthread_mutex_unlock(&m_process);
    return 1;
}

int process_set_server_smb_timeout(int timeout){
    if (timeout < 1000) return 0;
    DPRINTF(7, "smb_timeout=%d\n", timeout);
    pthread_mutex_lock(&m_process);
    process_server_smb_timeout = timeout;
    pthread_mutex_unlock(&m_process);
    return 1;
}

int process_set_server_smb_debug_level(int level){
    if ((level < 0) || (level > 10)) return 0;
    DPRINTF(7, "level=%d\n", level);
    pthread_mutex_lock(&m_process);
    process_server_smb_debug_level = level;
    pthread_mutex_unlock(&m_process);
    return 1;
}

int process_set_server_local_charset(const char *charset){
    if ((charset == NULL) || (*charset == '\0'))
	charset = process_system_charset;

    DPRINTF(7, "local_charset=%s\n", charset);
    pthread_mutex_lock(&m_process);
    strncpy(process_server_local_charset, charset, CHARSET_LEN);
    process_server_local_charset[CHARSET_LEN - 1] = '\0';
    pthread_mutex_unlock(&m_process);
    return 1;
}

int process_set_server_samba_charset(const char *charset){
    if ((charset == NULL) || (*charset == '\0')) charset = "UTF-8";

    DPRINTF(7, "samba_charset=%s\n", charset);
    pthread_mutex_lock(&m_process);
    strncpy(process_server_samba_charset, charset, CHARSET_LEN);
    process_server_samba_charset[CHARSET_LEN - 1] = '\0';
    pthread_mutex_unlock(&m_process);
    return 1;
}

int process_start_new_smb_conn(char *shmem_ptr, size_t shmem_size){
    int			error;
    int			debug_level;
    int			pair[2];
    pid_t		pid;
    struct process_rec	*rec;

    if ((shmem_ptr == NULL) || (shmem_size < (size_t) getpagesize())){
	errno = EINVAL;
	return -1;
    }

    error = 0;
    pid = (pid_t) (-1);
    pthread_mutex_lock(&m_process);
    if (process_start_enabled != 1){
	error = EPERM;
	pair[0] = -1;
	goto error;
    }
    if ((rec = malloc(sizeof(struct process_rec))) == NULL){
	error = errno;
	pair[0] = -1;
	DPRINTF(6, "starting new child failed on malloc(): errno=%d, %s\n",
	    errno, strerror(errno));
	goto error;
    }
    if (socketpair(AF_UNIX, SOCK_SEQPACKET, 0, pair) < 0){
	DPRINTF(6, "using SOCK_DGRAM instead of SOCK_SEQPACKET\n");
	if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pair) < 0){
	    error = errno;
	    free(rec);
	    pair[0] = -1;
	    DPRINTF(6, "starting new child failed on socketpair(): errno=%d, %s\n",
		errno, strerror(errno));
	    goto error;
	}
    }

    memset(rec, 0, sizeof(struct process_rec));
    debug_level = common_get_smbnetfs_debug_level();

    if ((pid = fork()) == -1){
	error = errno;
	close(pair[0]);
	close(pair[1]);
	free(rec);
	pair[0] = -1;
	DPRINTF(6, "starting new child failed on fork(): errno=%d, %s\n",
	    errno, strerror(errno));
	goto error;
    }

    if (pid == 0){
	struct smb_conn_srv_ctx	srv_ctx;

	pthread_mutex_unlock(&m_process);
	close(pair[0]);

	/* We are after fork here, so we are in single thread situation. *
	 * This mean we may read any variable without acquiring locks.   *
	 * Moreover, we can NOT use safely any mutex protected code,     *
	 * as the mutexes after the fork() are in UNKNOWN state          */
	srv_ctx.conn_fd         = pair[1];
	srv_ctx.shmem_ptr       = shmem_ptr;
	srv_ctx.shmem_size      = shmem_size;
	srv_ctx.timeout         = process_server_listen_timeout;
	srv_ctx.smb_timeout     = process_server_smb_timeout;
	srv_ctx.debug_level     = debug_level;
	srv_ctx.smb_debug_level = process_server_smb_debug_level;
	srv_ctx.samba_charset   = process_server_samba_charset;
	srv_ctx.local_charset   = process_server_local_charset;
	smb_conn_srv_listen(&srv_ctx);
	exit(EXIT_SUCCESS);
    }

    close(pair[1]);
    rec->child_pid = pid;
    rec->child_fd  = pair[0];
    add_to_list(&process_list, &rec->entries);
    DPRINTF(6, "starting new child with pid=%d, fd=%d\n", (int) pid, pair[0]);

  error:
    pthread_mutex_unlock(&m_process);
    errno = error;
    return pair[0];
}

int process_is_smb_conn_alive(int fd){
    int			result;
    LIST		*elem;
    struct process_rec	*rec;

    result = 0;
    pthread_mutex_lock(&m_process);
    elem = first_list_elem(&process_list);
    while(is_valid_list_elem(&process_list, elem)){
	rec = list_entry(elem, struct process_rec, entries);
	elem = elem->next;

	if ((rec->child_fd  == fd) &&
	    (rec->child_pid != (pid_t) (-1))){
	    result = 1;
	    break;
	}
    }
    pthread_mutex_unlock(&m_process);
    return result;
}

void process_kill_all(void){
    LIST		*elem;
    struct process_rec	*rec;

    pthread_mutex_lock(&m_process);
    elem = first_list_elem(&process_list);
    while(is_valid_list_elem(&process_list, elem)){
	rec = list_entry(elem, struct process_rec, entries);
	elem = elem->next;

	if (rec->child_pid != (pid_t) (-1)){
	    DPRINTF(6, "kill child with pid=%d, fd=%d\n",
			(int) rec->child_pid, rec->child_fd);
	    kill(rec->child_pid, SIGKILL);
	}
    }
    pthread_mutex_unlock(&m_process);
}

void process_kill_by_smb_conn_fd(int fd){
    LIST		*elem;
    struct process_rec	*rec;

    pthread_mutex_lock(&m_process);
    elem = first_list_elem(&process_list);
    while(is_valid_list_elem(&process_list, elem)){
	rec = list_entry(elem, struct process_rec, entries);
	elem = elem->next;

	if (rec->child_fd == fd){
	    DPRINTF(6, "closing child connection with pid=%d, fd=%d\n",
				(int) rec->child_pid, rec->child_fd);
	    close(rec->child_fd);
	    rec->child_fd = -1;
	    if (rec->child_pid == (pid_t) (-1)){
		DPRINTF(6, "cleanup child record with fd=%d\n", fd);
		remove_from_list(&process_list, &rec->entries);
		free(rec);
	    }else
		kill(rec->child_pid, SIGKILL);
	    break;
	}
    }
    pthread_mutex_unlock(&m_process);
}

void process_cleanup_from_zombies(void){
    pid_t		pid;
    LIST		*elem;
    struct process_rec	*rec;

    pthread_mutex_lock(&m_process);
    while(1){
	pid = waitpid((pid_t) (-1), NULL, WNOHANG);
	if (pid <= 0) break;

	elem = first_list_elem(&process_list);
	while(is_valid_list_elem(&process_list, elem)){
	    rec = list_entry(elem, struct process_rec, entries);
	    elem = elem->next;

	    if (rec->child_pid == pid){
		DPRINTF(6, "R.I.P. child with pid=%d, fd=%d\n",
				(int) rec->child_pid, rec->child_fd);
		rec->child_pid = (pid_t) (-1);
		if (rec->child_fd == -1){
		    DPRINTF(6, "cleanup child record with pid=%d\n", (int) pid);
		    remove_from_list(&process_list, &rec->entries);
		    free(rec);
		}
		break;
	    }
	}
    }
    pthread_mutex_unlock(&m_process);
}