s3:smb2_sesssetup: cancel and wait for pending requests on logoff
[Samba.git] / source3 / modules / vfs_scannedonly.c
blob0d2e7cc35b9de5825a90548ef95d46db2602a807
1 /*
2 * scannedonly VFS module for Samba 3.5 and beyond
4 * Copyright 2007,2008,2009,2010,2011 (C) Olivier Sessink
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 * ABOUT SCANNEDONLY
22 * scannedonly implements a 'filter' like vfs module that talks over a
23 * unix domain socket or over UDP to a anti-virus engine.
25 * files that are clean have a corresponding .scanned:{filename} file
26 * in the same directory. So why the .scanned: files? They take up
27 * only an inode, because they are 0 bytes. To test if the file is
28 * scanned only a stat() call on the filesystem is needed which is
29 * very quick compared to a database lookup. All modern filesystems
30 * use database technology such as balanced trees for lookups anyway.
31 * The number of inodes in modern filesystems is also not limiting
32 * anymore. The .scanned: files are also easy scriptable. You can
33 * remove them with a simple find command or create them with a
34 * simple touch command. Extended filesystem attributes have similar
35 * properties, but are not supported on all filesystems, so that
36 * would limit the usage of the module (and attributes are not as
37 * easily scriptable)
39 * files that are not clean are sent to the AV-engine. Only the
40 * filename is sent over the socket. The protocol is very simple:
41 * a newline separated list of filenames inside each datagram.
43 * a file AV-scan may be requested multiple times, the AV-engine
44 * should also check if the file has been scanned already. Requests
45 * can also be dropped by the AV-engine (and we thus don't need the
46 * reliability of TCP).
50 #include "includes.h"
51 #include "smbd/smbd.h"
52 #include "system/filesys.h"
54 #include "config.h"
56 #define SENDBUFFERSIZE 1450
58 #ifndef SUN_LEN
59 #define SUN_LEN(sunp) ((size_t)((struct sockaddr_un *)0)->sun_path \
60 + strlen((sunp)->sun_path))
61 #endif
64 struct Tscannedonly {
65 int socket;
66 int domain_socket;
67 int portnum;
68 int scanning_message_len;
69 int recheck_time_open;
70 int recheck_tries_open;
71 int recheck_size_open;
72 int recheck_time_readdir;
73 int recheck_tries_readdir;
74 bool show_special_files;
75 bool rm_hidden_files_on_rmdir;
76 bool hide_nonscanned_files;
77 bool allow_nonscanned_files;
78 const char *socketname;
79 const char *scanhost;
80 const char *scanning_message;
81 const char *p_scanned; /* prefix for scanned files */
82 const char *p_virus; /* prefix for virus containing files */
83 const char *p_failed; /* prefix for failed to scan files */
84 char gsendbuffer[SENDBUFFERSIZE + 1];
87 #define STRUCTSCANO(var) ((struct Tscannedonly *)var)
89 struct scannedonly_DIR {
90 char *base;
91 int recheck_tries_done; /* if 0 the directory listing has not yet
92 been checked for files that need to be scanned. */
93 DIR *DIR;
95 #define SCANNEDONLY_DEBUG 9
96 /*********************/
97 /* utility functions */
98 /*********************/
100 static char *real_path_from_notify_path(TALLOC_CTX *ctx,
101 struct Tscannedonly *so,
102 const char *path)
104 char *name;
105 int len, pathlen;
107 name = strrchr(path, '/');
108 if (!name) {
109 return NULL;
111 pathlen = name - path;
112 name++;
113 len = strlen(name);
114 if (len <= so->scanning_message_len) {
115 return NULL;
118 if (strcmp(name + (len - so->scanning_message_len),
119 so->scanning_message) != 0) {
120 return NULL;
123 return talloc_strndup(ctx,path,
124 pathlen + len - so->scanning_message_len);
127 static char *cachefile_name(TALLOC_CTX *ctx,
128 const char *shortname,
129 const char *base,
130 const char *p_scanned)
132 return talloc_asprintf(ctx, "%s%s%s", base, p_scanned, shortname);
135 static char *name_w_ending_slash(TALLOC_CTX *ctx, const char *name)
137 int len = strlen(name);
138 if (name[len - 1] == '/') {
139 return talloc_strdup(ctx,name);
140 } else {
141 return talloc_asprintf(ctx, "%s/", name);
145 static char *cachefile_name_f_fullpath(TALLOC_CTX *ctx,
146 const char *fullpath,
147 const char *p_scanned)
149 const char *base;
150 char *tmp, *cachefile;
151 const char *shortname;
152 tmp = strrchr(fullpath, '/');
153 if (tmp) {
154 base = talloc_strndup(ctx, fullpath, (tmp - fullpath) + 1);
155 shortname = tmp + 1;
156 } else {
157 base = "";
158 shortname = (const char *)fullpath;
160 cachefile = cachefile_name(ctx, shortname, base, p_scanned);
161 DEBUG(SCANNEDONLY_DEBUG,
162 ("cachefile_name_f_fullpath cachefile=%s\n", cachefile));
163 return cachefile;
166 static char *construct_full_path(TALLOC_CTX *ctx, vfs_handle_struct * handle,
167 const char *somepath, bool ending_slash)
169 const char *tmp;
171 if (!somepath) {
172 return NULL;
174 if (somepath[0] == '/') {
175 if (ending_slash) {
176 return name_w_ending_slash(ctx,somepath);
178 return talloc_strdup(ctx,somepath);
180 tmp = somepath;
181 if (tmp[0]=='.'&&tmp[1]=='/') {
182 tmp+=2;
184 /* vfs_GetWd() seems to return a path with a slash */
185 if (ending_slash) {
186 return talloc_asprintf(ctx, "%s/%s/",
187 vfs_GetWd(ctx, handle->conn),tmp);
189 return talloc_asprintf(ctx, "%s/%s",
190 vfs_GetWd(ctx, handle->conn),tmp);
193 static int connect_to_scanner(vfs_handle_struct * handle)
195 struct Tscannedonly *so = (struct Tscannedonly *)handle->data;
197 if (so->domain_socket) {
198 struct sockaddr_un saun;
199 DEBUG(SCANNEDONLY_DEBUG, ("socket=%s\n", so->socketname));
200 if ((so->socket = socket(AF_UNIX, SOCK_DGRAM, 0)) < 0) {
201 DEBUG(2, ("failed to create socket %s\n",
202 so->socketname));
203 return -1;
205 saun.sun_family = AF_UNIX;
206 strncpy(saun.sun_path, so->socketname,
207 sizeof(saun.sun_path) - 1);
208 if (connect(so->socket, (struct sockaddr *)(void *)&saun,
209 SUN_LEN(&saun)) < 0) {
210 DEBUG(2, ("failed to connect to socket %s\n",
211 so->socketname));
212 return -1;
214 DEBUG(SCANNEDONLY_DEBUG,("bound %s to socket %d\n",
215 saun.sun_path, so->socket));
217 } else {
218 so->socket = open_udp_socket(so->scanhost, so->portnum);
219 if (so->socket < 0) {
220 DEBUG(2,("failed to open UDP socket to %s:%d\n",
221 so->scanhost,so->portnum));
222 return -1;
226 {/* increasing the socket buffer is done because we have large bursts
227 of UDP packets or DGRAM's on a domain socket whenever we hit a
228 large directory with lots of unscanned files. */
229 int sndsize;
230 socklen_t size = sizeof(int);
231 getsockopt(so->socket, SOL_SOCKET, SO_RCVBUF,
232 (char *)&sndsize, &size);
233 DEBUG(SCANNEDONLY_DEBUG, ("current socket buffer size=%d\n",
234 sndsize));
235 sndsize = 262144;
236 if (setsockopt(so->socket, SOL_SOCKET, SO_RCVBUF,
237 (char *)&sndsize,
238 (int)sizeof(sndsize)) != 0) {
239 DEBUG(SCANNEDONLY_DEBUG,
240 ("error setting socket buffer %s (%d)\n",
241 strerror(errno), errno));
244 set_blocking(so->socket, false);
245 return 0;
248 static void flush_sendbuffer(vfs_handle_struct * handle)
250 struct Tscannedonly *so = (struct Tscannedonly *)handle->data;
251 int ret, len, loop = 10;
252 if (so->gsendbuffer[0] == '\0') {
253 return;
256 do {
257 loop--;
258 len = strlen(so->gsendbuffer);
259 ret = send(so->socket, so->gsendbuffer, len, 0);
260 if (ret == len) {
261 so->gsendbuffer[0] = '\0';
262 break;
264 if (ret == -1) {
265 DEBUG(3,("scannedonly flush_sendbuffer: "
266 "error sending on socket %d to scanner:"
267 " %s (%d)\n",
268 so->socket, strerror(errno), errno));
269 if (errno == ECONNREFUSED || errno == ENOTCONN
270 || errno == ECONNRESET) {
271 if (connect_to_scanner(handle) == -1)
272 break; /* connecting fails, abort */
273 /* try again */
274 } else if (errno != EINTR) {
275 /* on EINTR we just try again, all remaining
276 other errors we log the error
277 and try again ONCE */
278 loop = 1;
279 DEBUG(3,("scannedonly flush_sendbuffer: "
280 "error sending data to scanner: %s "
281 "(%d)\n", strerror(errno), errno));
283 } else {
284 /* --> partial write: Resend all filenames that were
285 not or not completely written. a partial filename
286 written means the filename will not arrive correctly,
287 so resend it completely */
288 int pos = 0;
289 while (pos < len) {
290 char *tmp = strchr(so->gsendbuffer+pos, '\n');
291 if (tmp && tmp - so->gsendbuffer < ret)
292 pos = tmp - so->gsendbuffer + 1;
293 else
294 break;
296 memmove(so->gsendbuffer, so->gsendbuffer + pos,
297 SENDBUFFERSIZE - ret);
298 /* now try again */
300 } while (loop > 0);
302 if (so->gsendbuffer[0] != '\0') {
303 DEBUG(2,
304 ("scannedonly flush_sendbuffer: "
305 "failed to send files to AV scanner, "
306 "discarding files."));
307 so->gsendbuffer[0] = '\0';
311 static void notify_scanner(vfs_handle_struct * handle, const char *scanfile)
313 const char *tmp;
314 int tmplen, gsendlen;
315 struct Tscannedonly *so = (struct Tscannedonly *)handle->data;
316 TALLOC_CTX *ctx=talloc_tos();
317 if (scanfile[0] != '/') {
318 tmp = construct_full_path(ctx,handle, scanfile, false);
319 } else {
320 tmp = (const char *)scanfile;
322 tmplen = strlen(tmp);
323 gsendlen = strlen(so->gsendbuffer);
324 DEBUG(SCANNEDONLY_DEBUG,
325 ("scannedonly notify_scanner: tmp=%s, tmplen=%d, gsendlen=%d\n",
326 tmp, tmplen, gsendlen));
327 if (gsendlen + tmplen >= SENDBUFFERSIZE) {
328 flush_sendbuffer(handle);
330 /* FIXME ! Truncate checks... JRA. */
331 (void)strlcat(so->gsendbuffer, tmp, SENDBUFFERSIZE + 1);
332 (void)strlcat(so->gsendbuffer, "\n", SENDBUFFERSIZE + 1);
335 static bool is_scannedonly_file(struct Tscannedonly *so, const char *shortname)
337 if (shortname[0]!='.') {
338 return false;
340 if (strncmp(shortname, so->p_scanned, strlen(so->p_scanned)) == 0) {
341 return true;
343 if (strncmp(shortname, so->p_virus, strlen(so->p_virus)) == 0) {
344 return true;
346 if (strncmp(shortname, so->p_failed, strlen(so->p_failed)) == 0) {
347 return true;
349 return false;
352 static bool timespec_is_newer(struct timespec *base, struct timespec *test)
354 return timespec_compare(base,test) < 0;
358 vfs_handle_struct *handle the scannedonly handle
359 scannedonly_DIR * sDIR the scannedonly struct if called from _readdir()
360 or NULL
361 fullpath is a full path starting from / or a relative path to the
362 current working directory
363 shortname is the filename without directory components
364 basename, is the directory without file name component
365 allow_nonexistent return TRUE if stat() on the requested file fails
366 recheck_time, the time in milliseconds to wait for the daemon to
367 create a .scanned file
368 recheck_tries, the number of tries to wait
369 recheck_size, size in Kb of files that should not be waited for
370 loop : boolean if we should try to loop over all files in the directory
371 and send a notify to the scanner for all files that need scanning
373 static bool scannedonly_allow_access(vfs_handle_struct * handle,
374 struct scannedonly_DIR *sDIR,
375 struct smb_filename *smb_fname,
376 const char *shortname,
377 const char *base_name,
378 int allow_nonexistent,
379 int recheck_time, int recheck_tries,
380 int recheck_size, int loop)
382 struct smb_filename *cache_smb_fname;
383 TALLOC_CTX *ctx=talloc_tos();
384 char *cachefile;
385 int retval = -1;
386 DEBUG(SCANNEDONLY_DEBUG,
387 ("smb_fname->base_name=%s, shortname=%s, base_name=%s\n"
388 ,smb_fname->base_name,shortname,base_name));
390 if (ISDOT(shortname) || ISDOTDOT(shortname)) {
391 return true;
393 if (is_scannedonly_file(STRUCTSCANO(handle->data), shortname)) {
394 DEBUG(SCANNEDONLY_DEBUG,
395 ("scannedonly_allow_access, %s is a scannedonly file, "
396 "return 0\n", shortname));
397 return false;
400 if (!VALID_STAT(smb_fname->st)) {
401 DEBUG(SCANNEDONLY_DEBUG,("stat %s\n",smb_fname->base_name));
402 retval = SMB_VFS_NEXT_STAT(handle, smb_fname);
403 if (retval != 0) {
404 /* failed to stat this file?!? --> hide it */
405 DEBUG(SCANNEDONLY_DEBUG,("no valid stat, return"
406 " allow_nonexistent=%d\n",
407 allow_nonexistent));
408 return allow_nonexistent;
411 if (!S_ISREG(smb_fname->st.st_ex_mode)) {
412 DEBUG(SCANNEDONLY_DEBUG,
413 ("%s is not a regular file, ISDIR=%d\n",
414 smb_fname->base_name,
415 S_ISDIR(smb_fname->st.st_ex_mode)));
416 return (STRUCTSCANO(handle->data)->
417 show_special_files ||
418 S_ISDIR(smb_fname->st.st_ex_mode));
420 if (smb_fname->st.st_ex_size == 0) {
421 DEBUG(SCANNEDONLY_DEBUG,("empty file, return 1\n"));
422 return true; /* empty files cannot contain viruses ! */
424 cachefile = cachefile_name(ctx,
425 shortname,
426 base_name,
427 STRUCTSCANO(handle->data)->p_scanned);
428 cache_smb_fname = synthetic_smb_fname(ctx, cachefile,NULL,NULL);
429 if (!VALID_STAT(cache_smb_fname->st)) {
430 retval = SMB_VFS_NEXT_STAT(handle, cache_smb_fname);
432 if (retval == 0 && VALID_STAT(cache_smb_fname->st)) {
433 if (timespec_is_newer(&smb_fname->st.st_ex_ctime,
434 &cache_smb_fname->st.st_ex_ctime)) {
435 talloc_free(cache_smb_fname);
436 return true;
438 /* no cachefile or too old */
439 SMB_VFS_NEXT_UNLINK(handle, cache_smb_fname);
440 retval = -1;
443 notify_scanner(handle, smb_fname->base_name);
445 if (loop && sDIR && sDIR->recheck_tries_done == 0) {
446 /* check the rest of the directory and notify the
447 scanner if some file needs scanning */
448 long offset;
449 struct dirent *dire;
451 offset = SMB_VFS_NEXT_TELLDIR(handle, sDIR->DIR);
452 dire = SMB_VFS_NEXT_READDIR(handle, sDIR->DIR, NULL);
453 while (dire) {
454 char *fpath2;
455 struct smb_filename *smb_fname2;
456 fpath2 = talloc_asprintf(ctx, "%s%s", base_name,dire->d_name);
457 DEBUG(SCANNEDONLY_DEBUG,
458 ("scannedonly_allow_access in loop, "
459 "found %s\n", fpath2));
460 smb_fname2 = synthetic_smb_fname(
461 ctx, fpath2,NULL,NULL);
462 scannedonly_allow_access(handle, NULL,
463 smb_fname2,
464 dire->d_name,
465 base_name, 0, 0, 0, 0, 0);
466 talloc_free(fpath2);
467 talloc_free(smb_fname2);
468 dire = SMB_VFS_NEXT_READDIR(handle, sDIR->DIR,NULL);
470 sDIR->recheck_tries_done = 1;
471 SMB_VFS_NEXT_SEEKDIR(handle, sDIR->DIR, offset);
473 if (recheck_time > 0
474 && ((recheck_size > 0
475 && smb_fname->st.st_ex_size < (1024 * recheck_size))
476 || (sDIR && sDIR->recheck_tries_done < recheck_tries)
477 )) {
478 int numloops = sDIR ? sDIR->recheck_tries_done : 0;
479 flush_sendbuffer(handle);
480 while (retval != 0 /*&& errno == ENOENT */
481 && numloops < recheck_tries) {
482 DEBUG(SCANNEDONLY_DEBUG,
483 ("scannedonly_allow_access, wait (try=%d "
484 "(max %d), %d ms) for %s\n",
485 numloops, recheck_tries,
486 recheck_time, cache_smb_fname->base_name));
487 smb_msleep(recheck_time);
488 retval = SMB_VFS_NEXT_STAT(handle, cache_smb_fname);
489 numloops++;
491 if (sDIR)
492 sDIR->recheck_tries_done = numloops;
494 /* still no cachefile, or still too old, return 0 */
495 if (retval != 0
496 || !timespec_is_newer(&smb_fname->st.st_ex_ctime,
497 &cache_smb_fname->st.st_ex_ctime)) {
498 DEBUG(SCANNEDONLY_DEBUG,
499 ("retval=%d, return 0\n",retval));
500 return false;
502 return true;
505 /*********************/
506 /* VFS functions */
507 /*********************/
509 static DIR *scannedonly_opendir(vfs_handle_struct * handle,
510 const char *fname,
511 const char *mask, uint32 attr)
513 DIR *DIRp;
514 struct scannedonly_DIR *sDIR;
516 DIRp = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
517 if (!DIRp) {
518 return NULL;
521 sDIR = talloc(NULL, struct scannedonly_DIR);
522 if (fname[0] != '/') {
523 sDIR->base = construct_full_path(sDIR,handle, fname, true);
524 } else {
525 sDIR->base = name_w_ending_slash(sDIR, fname);
527 DEBUG(SCANNEDONLY_DEBUG,
528 ("scannedonly_opendir, fname=%s, base=%s\n",fname,sDIR->base));
529 sDIR->DIR = DIRp;
530 sDIR->recheck_tries_done = 0;
531 return (DIR *) sDIR;
534 static DIR *scannedonly_fdopendir(vfs_handle_struct * handle,
535 files_struct *fsp,
536 const char *mask, uint32 attr)
538 DIR *DIRp;
539 struct scannedonly_DIR *sDIR;
540 const char *fname;
542 DIRp = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr);
543 if (!DIRp) {
544 return NULL;
547 fname = (const char *)fsp->fsp_name->base_name;
549 sDIR = talloc(NULL, struct scannedonly_DIR);
550 if (fname[0] != '/') {
551 sDIR->base = construct_full_path(sDIR,handle, fname, true);
552 } else {
553 sDIR->base = name_w_ending_slash(sDIR, fname);
555 DEBUG(SCANNEDONLY_DEBUG,
556 ("scannedonly_fdopendir, fname=%s, base=%s\n",fname,sDIR->base));
557 sDIR->DIR = DIRp;
558 sDIR->recheck_tries_done = 0;
559 return (DIR *) sDIR;
563 static struct dirent *scannedonly_readdir(vfs_handle_struct *handle,
564 DIR * dirp,
565 SMB_STRUCT_STAT *sbuf)
567 struct dirent *result;
568 int allowed = 0;
569 char *tmp;
570 struct smb_filename *smb_fname;
571 char *notify_name;
572 int namelen;
573 struct dirent *newdirent;
574 TALLOC_CTX *ctx=talloc_tos();
576 struct scannedonly_DIR *sDIR = (struct scannedonly_DIR *)dirp;
577 if (!dirp) {
578 return NULL;
581 result = SMB_VFS_NEXT_READDIR(handle, sDIR->DIR, sbuf);
583 if (!result)
584 return NULL;
586 if (is_scannedonly_file(STRUCTSCANO(handle->data), result->d_name)) {
587 DEBUG(SCANNEDONLY_DEBUG,
588 ("scannedonly_readdir, %s is a scannedonly file, "
589 "skip to next entry\n", result->d_name));
590 return scannedonly_readdir(handle, dirp, NULL);
592 tmp = talloc_asprintf(ctx, "%s%s", sDIR->base, result->d_name);
593 DEBUG(SCANNEDONLY_DEBUG,
594 ("scannedonly_readdir, check access to %s (sbuf=%p)\n",
595 tmp,sbuf));
597 /* even if we don't hide nonscanned files or we allow non scanned
598 files we call allow_access because it will notify the daemon to
599 scan these files */
600 smb_fname = synthetic_smb_fname(ctx, tmp,NULL,
601 sbuf?VALID_STAT(*sbuf)?sbuf:NULL:NULL);
602 allowed = scannedonly_allow_access(
603 handle, sDIR, smb_fname,
604 result->d_name,
605 sDIR->base, 0,
606 STRUCTSCANO(handle->data)->hide_nonscanned_files
607 ? STRUCTSCANO(handle->data)->recheck_time_readdir
608 : 0,
609 STRUCTSCANO(handle->data)->recheck_tries_readdir,
612 DEBUG(SCANNEDONLY_DEBUG,
613 ("scannedonly_readdir access to %s (%s) = %d\n", tmp,
614 result->d_name, allowed));
615 if (allowed) {
616 return result;
618 DEBUG(SCANNEDONLY_DEBUG,
619 ("hide_nonscanned_files=%d, allow_nonscanned_files=%d\n",
620 STRUCTSCANO(handle->data)->hide_nonscanned_files,
621 STRUCTSCANO(handle->data)->allow_nonscanned_files
624 if (!STRUCTSCANO(handle->data)->hide_nonscanned_files
625 || STRUCTSCANO(handle->data)->allow_nonscanned_files) {
626 return result;
629 DEBUG(SCANNEDONLY_DEBUG,
630 ("scannedonly_readdir, readdir listing for %s not "
631 "allowed, notify user\n", result->d_name));
632 notify_name = talloc_asprintf(
633 ctx,"%s %s",result->d_name,
634 STRUCTSCANO(handle->data)->scanning_message);
635 namelen = strlen(notify_name);
636 newdirent = (struct dirent *)talloc_array(
637 ctx, char, sizeof(struct dirent) + namelen + 1);
638 if (!newdirent) {
639 return NULL;
641 memcpy(newdirent, result, sizeof(struct dirent));
642 memcpy(&newdirent->d_name, notify_name, namelen + 1);
643 DEBUG(SCANNEDONLY_DEBUG,
644 ("scannedonly_readdir, return newdirent at %p with "
645 "notification %s\n", newdirent, newdirent->d_name));
646 return newdirent;
649 static void scannedonly_seekdir(struct vfs_handle_struct *handle,
650 DIR * dirp, long offset)
652 struct scannedonly_DIR *sDIR = (struct scannedonly_DIR *)dirp;
653 SMB_VFS_NEXT_SEEKDIR(handle, sDIR->DIR, offset);
656 static long scannedonly_telldir(struct vfs_handle_struct *handle,
657 DIR * dirp)
659 struct scannedonly_DIR *sDIR = (struct scannedonly_DIR *)dirp;
660 return SMB_VFS_NEXT_TELLDIR(handle, sDIR->DIR);
663 static void scannedonly_rewinddir(struct vfs_handle_struct *handle,
664 DIR * dirp)
666 struct scannedonly_DIR *sDIR = (struct scannedonly_DIR *)dirp;
667 SMB_VFS_NEXT_REWINDDIR(handle, sDIR->DIR);
670 static int scannedonly_closedir(vfs_handle_struct * handle,
671 DIR * dirp)
673 int retval;
674 struct scannedonly_DIR *sDIR = (struct scannedonly_DIR *)dirp;
675 flush_sendbuffer(handle);
676 retval = SMB_VFS_NEXT_CLOSEDIR(handle, sDIR->DIR);
677 TALLOC_FREE(sDIR);
678 return retval;
681 static int scannedonly_stat(vfs_handle_struct * handle,
682 struct smb_filename *smb_fname)
684 int ret;
685 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
686 DEBUG(SCANNEDONLY_DEBUG, ("scannedonly_stat: %s returned %d\n",
687 smb_fname->base_name, ret));
688 if (ret != 0 && errno == ENOENT) {
689 TALLOC_CTX *ctx=talloc_tos();
690 char *test_base_name, *tmp_base_name = smb_fname->base_name;
691 /* possibly this was a fake name (file is being scanned for
692 viruses.txt): check for that and create the real name and
693 stat the real name */
694 test_base_name = real_path_from_notify_path(
695 ctx,
696 STRUCTSCANO(handle->data),
697 smb_fname->base_name);
698 if (test_base_name) {
699 smb_fname->base_name = test_base_name;
700 ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
701 DEBUG(5, ("_stat: %s returned %d\n",
702 test_base_name, ret));
703 smb_fname->base_name = tmp_base_name;
706 return ret;
709 static int scannedonly_lstat(vfs_handle_struct * handle,
710 struct smb_filename *smb_fname)
712 int ret;
713 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
714 DEBUG(SCANNEDONLY_DEBUG, ("scannedonly_lstat: %s returned %d\n",
715 smb_fname->base_name, ret));
716 if (ret != 0 && errno == ENOENT) {
717 TALLOC_CTX *ctx=talloc_tos();
718 char *test_base_name, *tmp_base_name = smb_fname->base_name;
719 /* possibly this was a fake name (file is being scanned for
720 viruses.txt): check for that and create the real name and
721 stat the real name */
722 test_base_name = real_path_from_notify_path(
723 ctx, STRUCTSCANO(handle->data), smb_fname->base_name);
724 if (test_base_name) {
725 smb_fname->base_name = test_base_name;
726 ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
727 DEBUG(5, ("_lstat: %s returned %d\n",
728 test_base_name, ret));
729 smb_fname->base_name = tmp_base_name;
732 return ret;
735 static int scannedonly_open(vfs_handle_struct * handle,
736 struct smb_filename *smb_fname,
737 files_struct * fsp, int flags, mode_t mode)
739 const char *base;
740 char *tmp, *shortname;
741 int allowed, write_access = 0;
742 TALLOC_CTX *ctx=talloc_tos();
743 /* if open for writing ignore it */
744 if ((flags & O_ACCMODE) == O_WRONLY) {
745 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
747 if ((flags & O_ACCMODE) == O_RDWR) {
748 write_access = 1;
750 /* check if this file is scanned already */
751 tmp = strrchr(smb_fname->base_name, '/');
752 if (tmp) {
753 base = talloc_strndup(ctx,smb_fname->base_name,
754 (tmp - smb_fname->base_name) + 1);
755 shortname = tmp + 1;
756 } else {
757 base = "";
758 shortname = (char *)smb_fname->base_name;
760 allowed = scannedonly_allow_access(
761 handle, NULL, smb_fname, shortname,
762 base,
763 write_access,
764 STRUCTSCANO(handle->data)->recheck_time_open,
765 STRUCTSCANO(handle->data)->recheck_tries_open,
766 STRUCTSCANO(handle->data)->recheck_size_open,
768 flush_sendbuffer(handle);
769 DEBUG(SCANNEDONLY_DEBUG, ("scannedonly_open: allow=%d for %s\n",
770 allowed, smb_fname->base_name));
771 if (allowed
772 || STRUCTSCANO(handle->data)->allow_nonscanned_files) {
773 return SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
775 errno = EACCES;
776 return -1;
779 static int scannedonly_close(vfs_handle_struct * handle, files_struct * fsp)
781 /* we only have to notify the scanner
782 for files that were open readwrite or writable. */
783 if (fsp->can_write) {
784 TALLOC_CTX *ctx = talloc_tos();
785 notify_scanner(handle, construct_full_path(
786 ctx,handle,
787 fsp->fsp_name->base_name,false));
788 flush_sendbuffer(handle);
790 return SMB_VFS_NEXT_CLOSE(handle, fsp);
793 static int scannedonly_rename(vfs_handle_struct * handle,
794 const struct smb_filename *smb_fname_src,
795 const struct smb_filename *smb_fname_dst)
797 /* rename the cache file before we pass the actual rename on */
798 struct smb_filename *smb_fname_src_tmp = NULL;
799 struct smb_filename *smb_fname_dst_tmp = NULL;
800 char *cachefile_src, *cachefile_dst;
801 bool needscandst=false;
802 int ret;
803 TALLOC_CTX *ctx = talloc_tos();
805 /* Setup temporary smb_filename structs. */
806 cachefile_src = cachefile_name_f_fullpath(
807 ctx,
808 smb_fname_src->base_name,
809 STRUCTSCANO(handle->data)->p_scanned);
810 cachefile_dst = cachefile_name_f_fullpath(
811 ctx,
812 smb_fname_dst->base_name,
813 STRUCTSCANO(handle->data)->p_scanned);
814 smb_fname_src_tmp = synthetic_smb_fname(ctx, cachefile_src,NULL,NULL);
815 smb_fname_dst_tmp = synthetic_smb_fname(ctx, cachefile_dst,NULL,NULL);
817 ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src_tmp, smb_fname_dst_tmp);
818 if (ret == ENOENT) {
819 needscandst=true;
820 } else if (ret != 0) {
821 DEBUG(SCANNEDONLY_DEBUG,
822 ("failed to rename %s into %s error %d: %s\n", cachefile_src,
823 cachefile_dst, ret, strerror(ret)));
824 needscandst=true;
826 ret = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
827 if (ret == 0 && needscandst) {
828 notify_scanner(handle, smb_fname_dst->base_name);
829 flush_sendbuffer(handle);
831 return ret;
834 static int scannedonly_unlink(vfs_handle_struct * handle,
835 const struct smb_filename *smb_fname)
837 /* unlink the 'scanned' file too */
838 struct smb_filename *smb_fname_cache = NULL;
839 char * cachefile;
840 TALLOC_CTX *ctx = talloc_tos();
842 cachefile = cachefile_name_f_fullpath(
843 ctx,
844 smb_fname->base_name,
845 STRUCTSCANO(handle->data)->p_scanned);
846 smb_fname_cache = synthetic_smb_fname(ctx, cachefile,NULL,NULL);
847 if (SMB_VFS_NEXT_UNLINK(handle, smb_fname_cache) != 0) {
848 DEBUG(SCANNEDONLY_DEBUG, ("_unlink: failed to unlink %s\n",
849 smb_fname_cache->base_name));
851 return SMB_VFS_NEXT_UNLINK(handle, smb_fname);
854 static int scannedonly_rmdir(vfs_handle_struct * handle, const char *path)
856 /* if there are only .scanned: .virus: or .failed: files, we delete
857 those, because the client cannot see them */
858 DIR *dirp;
859 struct dirent *dire;
860 TALLOC_CTX *ctx = talloc_tos();
861 bool only_deletable_files = true, have_files = false;
862 char *path_w_slash;
864 if (!STRUCTSCANO(handle->data)->rm_hidden_files_on_rmdir)
865 return SMB_VFS_NEXT_RMDIR(handle, path);
867 path_w_slash = name_w_ending_slash(ctx,path);
868 dirp = SMB_VFS_NEXT_OPENDIR(handle, path, NULL, 0);
869 if (!dirp) {
870 return -1;
872 while ((dire = SMB_VFS_NEXT_READDIR(handle, dirp, NULL)) != NULL) {
873 if (ISDOT(dire->d_name) || ISDOTDOT(dire->d_name)) {
874 continue;
876 have_files = true;
877 if (!is_scannedonly_file(STRUCTSCANO(handle->data),
878 dire->d_name)) {
879 struct smb_filename *smb_fname = NULL;
880 char *fullpath;
881 int retval;
883 if (STRUCTSCANO(handle->data)->show_special_files) {
884 only_deletable_files = false;
885 break;
887 /* stat the file and see if it is a
888 special file */
889 fullpath = talloc_asprintf(ctx, "%s%s", path_w_slash,
890 dire->d_name);
891 smb_fname = synthetic_smb_fname(ctx, fullpath,
892 NULL,NULL);
893 retval = SMB_VFS_NEXT_STAT(handle, smb_fname);
894 if (retval == 0
895 && S_ISREG(smb_fname->st.st_ex_mode)) {
896 only_deletable_files = false;
898 TALLOC_FREE(fullpath);
899 TALLOC_FREE(smb_fname);
900 break;
903 DEBUG(SCANNEDONLY_DEBUG,
904 ("path=%s, have_files=%d, only_deletable_files=%d\n",
905 path, have_files, only_deletable_files));
906 if (have_files && only_deletable_files) {
907 DEBUG(SCANNEDONLY_DEBUG,
908 ("scannedonly_rmdir, remove leftover scannedonly "
909 "files from %s\n", path_w_slash));
910 SMB_VFS_NEXT_REWINDDIR(handle, dirp);
911 while ((dire = SMB_VFS_NEXT_READDIR(handle, dirp, NULL))
912 != NULL) {
913 char *fullpath;
914 struct smb_filename *smb_fname = NULL;
915 if (ISDOT(dire->d_name) || ISDOTDOT(dire->d_name)) {
916 continue;
918 fullpath = talloc_asprintf(ctx, "%s%s", path_w_slash,
919 dire->d_name);
920 smb_fname = synthetic_smb_fname(ctx, fullpath,
921 NULL,NULL);
922 DEBUG(SCANNEDONLY_DEBUG, ("unlink %s\n", fullpath));
923 SMB_VFS_NEXT_UNLINK(handle, smb_fname);
924 TALLOC_FREE(fullpath);
925 TALLOC_FREE(smb_fname);
928 SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
929 return SMB_VFS_NEXT_RMDIR(handle, path);
932 static void free_scannedonly_data(void **data)
934 SAFE_FREE(*data);
937 static int scannedonly_connect(struct vfs_handle_struct *handle,
938 const char *service, const char *user)
941 struct Tscannedonly *so;
943 so = SMB_MALLOC_P(struct Tscannedonly);
944 if (so == NULL) {
945 errno = ENOMEM;
946 return -1;
948 handle->data = (void *)so;
949 handle->free_data = free_scannedonly_data;
950 so->gsendbuffer[0]='\0';
951 so->domain_socket =
952 lp_parm_bool(SNUM(handle->conn), "scannedonly",
953 "domain_socket", True);
954 so->socketname = lp_parm_const_string(SNUM(handle->conn),
955 "scannedonly", "socketname",
956 "/var/lib/scannedonly/scan");
958 so->portnum =
959 lp_parm_int(SNUM(handle->conn), "scannedonly", "portnum",
960 2020);
961 so->scanhost = lp_parm_const_string(SNUM(handle->conn),
962 "scannedonly", "scanhost",
963 "localhost");
965 so->show_special_files =
966 lp_parm_bool(SNUM(handle->conn), "scannedonly",
967 "show_special_files", True);
968 so->rm_hidden_files_on_rmdir =
969 lp_parm_bool(SNUM(handle->conn), "scannedonly",
970 "rm_hidden_files_on_rmdir", True);
971 so->hide_nonscanned_files =
972 lp_parm_bool(SNUM(handle->conn), "scannedonly",
973 "hide_nonscanned_files", False);
974 so->allow_nonscanned_files =
975 lp_parm_bool(SNUM(handle->conn), "scannedonly",
976 "allow_nonscanned_files", False);
977 so->scanning_message = lp_parm_const_string(SNUM(handle->conn),
978 "scannedonly",
979 "scanning_message",
980 "is being scanned for viruses");
981 so->scanning_message_len = strlen(so->scanning_message);
982 so->recheck_time_open =
983 lp_parm_int(SNUM(handle->conn), "scannedonly",
984 "recheck_time_open", 50);
985 so->recheck_tries_open =
986 lp_parm_int(SNUM(handle->conn), "scannedonly",
987 "recheck_tries_open", 100);
988 so->recheck_size_open =
989 lp_parm_int(SNUM(handle->conn), "scannedonly",
990 "recheck_size_open", 100);
991 so->recheck_time_readdir =
992 lp_parm_int(SNUM(handle->conn), "scannedonly",
993 "recheck_time_readdir", 50);
994 so->recheck_tries_readdir =
995 lp_parm_int(SNUM(handle->conn), "scannedonly",
996 "recheck_tries_readdir", 20);
998 so->p_scanned =
999 lp_parm_const_string(SNUM(handle->conn),
1000 "scannedonly",
1001 "pref_scanned",
1002 ".scanned:");
1003 so->p_virus =
1004 lp_parm_const_string(SNUM(handle->conn),
1005 "scannedonly",
1006 "pref_virus",
1007 ".virus:");
1008 so->p_failed =
1009 lp_parm_const_string(SNUM(handle->conn),
1010 "scannedonly",
1011 "pref_failed",
1012 ".failed:");
1013 connect_to_scanner(handle);
1015 return SMB_VFS_NEXT_CONNECT(handle, service, user);
1018 /* VFS operations structure */
1019 static struct vfs_fn_pointers vfs_scannedonly_fns = {
1020 .opendir_fn = scannedonly_opendir,
1021 .fdopendir_fn = scannedonly_fdopendir,
1022 .readdir_fn = scannedonly_readdir,
1023 .seekdir_fn = scannedonly_seekdir,
1024 .telldir_fn = scannedonly_telldir,
1025 .rewind_dir_fn = scannedonly_rewinddir,
1026 .closedir_fn = scannedonly_closedir,
1027 .rmdir_fn = scannedonly_rmdir,
1028 .stat_fn = scannedonly_stat,
1029 .lstat_fn = scannedonly_lstat,
1030 .open_fn = scannedonly_open,
1031 .close_fn = scannedonly_close,
1032 .rename_fn = scannedonly_rename,
1033 .unlink_fn = scannedonly_unlink,
1034 .connect_fn = scannedonly_connect
1037 NTSTATUS vfs_scannedonly_init(void)
1039 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "scannedonly",
1040 &vfs_scannedonly_fns);