source: branches/client-2.1/src/debug.c

Last change on this file was 817, checked in by Silvan Scherrer, 12 years ago

Samba Client 2.1: timestamp work and some backport from 2.2 client

  • Property svn:eol-style set to native
File size: 4.1 KB
Line 
1/*
2 Netdrive Samba client plugin
3 logging functions
4 Copyright (C) netlabs.org 2003-2009
5
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 2 of the License, or
9 (at your option) any later version.
10
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.
15
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.
19*/
20
21#define INCL_DOSERRORS
22#define INCL_DOS
23#include <os2emx.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <stdarg.h>
27#include <string.h>
28#include <sys/types.h>
29#include <sys/time.h>
30#include <sys/stat.h>
31#include "nversion.h"
32
33int debuglevel = 9; // we set it to 9, so we get all messages
34char logfile[_MAX_PATH +1];
35char debugfile[_MAX_PATH +1];
36char logfilename[] = "log.ndpsmb";
37BOOL do_logging;
38BOOL firstLogLine;
39HMTX logMutex;
40char nameMutex[] = "\\SEM32\\NDPSMB";
41
42int debuglvl(int level)
43{
44 return (level <= debuglevel) ? 1 : 0;
45}
46
47BOOL writeLog()
48{
49 return do_logging;
50}
51
52void debugInit()
53{
54 *logfile = '\0';
55 *debugfile = '\0';
56 do_logging = FALSE;
57 firstLogLine = TRUE;
58 logMutex = NULLHANDLE;
59 struct stat filestat;
60 APIRET rc = NO_ERROR;
61
62 // create the debugfile name
63 strncat(debugfile, getenv("ETC"), 2);
64 strncat(debugfile, "\\", sizeof(debugfile) - strlen(debugfile) -1);
65 strncat(debugfile, "ndpsmb.dbg", sizeof(debugfile) - strlen(debugfile) -1);
66
67 // is the file around? if not we have no debug
68 if (stat(debugfile, &filestat) !=0)
69 return;
70
71 //create the logfile variable
72 char *env = getenv("LOGFILES");
73 if (env != NULL)
74 {
75 strncat(logfile, env, sizeof(logfile) -1);
76 strncat(logfile, "\\", sizeof(logfile) - strlen(logfile) -1);
77 strncat(logfile, logfilename, sizeof(logfile) - strlen(logfile) -1);
78 }
79 else
80 {
81 strncat(logfile, logfilename, sizeof(logfile) -1);
82 }
83 // set the samba logging stuff
84 do_logging = TRUE;
85
86 // now we create a sem, so that logging from different threads works
87 rc = DosCreateMutexSem(nameMutex, &logMutex, 0, FALSE);
88 if (rc == ERROR_DUPLICATE_NAME)
89 {
90 rc = DosOpenMutexSem(nameMutex, &logMutex);
91 }
92
93 return;
94}
95
96void debugDelete()
97{
98 DosCloseMutexSem(logMutex);
99 return;
100}
101