Herb's warning fixes. Also the POSIX locking fix.
[vlendec/samba-autobuild/.git] / source3 / profile / profile.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    store smbd profiling information in shared memory
5    Copyright (C) Andrew Tridgell 1999
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 */
22
23 #include "includes.h"
24
25 #include <sys/shm.h>
26
27 extern int DEBUGLEVEL;
28
29 #define IPC_PERMS ((SHM_R | SHM_W) | (SHM_R>>3) | (SHM_R>>6))
30
31 static int shm_id;
32 static BOOL read_only;
33
34 struct profile_struct *profile_p;
35
36 BOOL do_profile_flag = False;
37
38 struct timeval profile_starttime;
39 struct timeval profile_endtime;
40
41 /*******************************************************************
42   open the profiling shared memory area
43   ******************************************************************/
44 BOOL profile_setup(BOOL rdonly)
45 {
46         struct shmid_ds shm_ds;
47
48         read_only = rdonly;
49
50  again:
51         /* try to use an existing key */
52         shm_id = shmget(PROF_SHMEM_KEY, 0, 0);
53         
54         /* if that failed then create one. There is a race condition here
55            if we are running from inetd. Bad luck. */
56         if (shm_id == -1) {
57                 if (read_only) return False;
58                 shm_id = shmget(PROF_SHMEM_KEY, sizeof(*profile_p), 
59                                 IPC_CREAT | IPC_EXCL | IPC_PERMS);
60         }
61         
62         if (shm_id == -1) {
63                 DEBUG(0,("Can't create or use IPC area. Error was %s\n", 
64                          strerror(errno)));
65                 return False;
66         }   
67         
68         
69         profile_p = (struct profile_struct *)shmat(shm_id, 0, 
70                                                    read_only?SHM_RDONLY:0);
71         if ((long)profile_p == -1) {
72                 DEBUG(0,("Can't attach to IPC area. Error was %s\n", 
73                          strerror(errno)));
74                 return False;
75         }
76
77         /* find out who created this memory area */
78         if (shmctl(shm_id, IPC_STAT, &shm_ds) != 0) {
79                 DEBUG(0,("ERROR shmctl : can't IPC_STAT. Error was %s\n", 
80                          strerror(errno)));
81                 return False;
82         }
83
84         if (shm_ds.shm_perm.cuid != 0 || shm_ds.shm_perm.cgid != 0) {
85                 DEBUG(0,("ERROR: root did not create the shmem\n"));
86                 return False;
87         }
88
89         if (shm_ds.shm_segsz != sizeof(*profile_p)) {
90                 DEBUG(0,("WARNING: profile size is %d (expected %d). Deleting\n",
91                          (int)shm_ds.shm_segsz, sizeof(*profile_p)));
92                 if (shmctl(shm_id, IPC_RMID, &shm_ds) == 0) {
93                         goto again;
94                 } else {
95                         return False;
96                 }
97         }
98
99         if (!read_only && (shm_ds.shm_nattch == 1)) {
100                 memset((char *)profile_p, 0, sizeof(*profile_p));
101                 profile_p->prof_shm_magic = PROF_SHM_MAGIC;
102                 profile_p->prof_shm_version = PROF_SHM_VERSION;
103                 DEBUG(3,("Initialised profile area\n"));
104         }
105
106         do_profile_flag = True;         /* temp for now */
107         return True;
108 }
109