A few changes:
[samba.git] / source / smbd / session.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 2.0
4    session handling for utmp and PAM
5    Copyright (C) tridge@samba.org 2001
6    Copyright (C) abartlet@pcug.org.au 2001
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 /* a "session" is claimed when we do a SessionSetupX operation
24    and is yielded when the corresponding vuid is destroyed.
25
26    sessions are used to populate utmp and PAM session structures
27 */
28
29 #include "includes.h"
30
31 extern fstring remote_machine;
32
33 static TDB_CONTEXT *tdb;
34 /* called when a session is created */
35 BOOL session_claim(uint16 vuid)
36 {
37         user_struct *vuser = get_valid_user_struct(vuid);
38         int i;
39         TDB_DATA data;
40         struct sessionid sessionid;
41         pstring dbuf;
42         int dlen;
43         uint32 pid = (uint32)sys_getpid();
44         TDB_DATA key;           
45         fstring keystr;
46         char * hostname;
47
48         vuser->session_id = 0;
49
50         /* don't register sessions for the guest user - its just too
51            expensive to go through pam session code for browsing etc */
52         if (strequal(vuser->user.unix_name,lp_guestaccount(-1))) {
53                 return True;
54         }
55
56         if (!tdb) {
57                 tdb = tdb_open_log(lock_path("sessionid.tdb"), 0, TDB_CLEAR_IF_FIRST|USE_TDB_MMAP_FLAG, 
58                                O_RDWR | O_CREAT, 0644);
59                 if (!tdb) {
60                         DEBUG(1,("session_claim: failed to open sessionid tdb\n"));
61                         return False;
62                 }
63         }
64
65         ZERO_STRUCT(sessionid);
66
67         data.dptr = NULL;
68         data.dsize = 0;
69
70         for (i=1;i<MAX_SESSION_ID;i++) {
71                 slprintf(keystr, sizeof(keystr)-1, "ID/%d", i);
72                 key.dptr = keystr;
73                 key.dsize = strlen(keystr)+1;
74
75                 if (tdb_store(tdb, key, data, TDB_INSERT) == 0) break;
76         }
77
78         if (i == MAX_SESSION_ID) {
79                 DEBUG(1,("session_claim: out of session IDs (max is %d)\n", 
80                          MAX_SESSION_ID));
81                 return False;
82         }
83
84         hostname = client_name();
85         if (strequal(hostname,"UNKNOWN"))
86                 hostname = client_addr();
87
88         fstrcpy(sessionid.username, vuser->user.unix_name);
89         fstrcpy(sessionid.hostname, hostname);
90         slprintf(sessionid.id_str, sizeof(sessionid.id_str)-1, SESSION_TEMPLATE, i);
91         sessionid.id_num = i;
92         sessionid.pid = pid;
93         sessionid.uid = vuser->uid;
94         sessionid.gid = vuser->gid;
95         fstrcpy(sessionid.remote_machine, remote_machine);
96         fstrcpy(sessionid.ip_addr, client_addr());
97
98         if (!smb_pam_claim_session(sessionid.username, sessionid.id_str, sessionid.hostname)) {
99                 DEBUG(1,("pam_session rejected the session for %s [%s]\n",
100                                 sessionid.username, sessionid.id_str));
101                 tdb_delete(tdb, key);
102                 return False;
103         }
104
105         data.dptr = (char *)&sessionid;
106         data.dsize = sizeof(sessionid);
107         if (tdb_store(tdb, key, data, TDB_MODIFY) != 0) {
108                 DEBUG(1,("session_claim: unable to create session id record\n"));
109                 return False;
110         }
111
112 #if WITH_UTMP   
113         if (lp_utmp()) {
114                 sys_utmp_claim(sessionid.username, sessionid.hostname, 
115                                sessionid.id_str, sessionid.id_num);
116         }
117 #endif
118
119         vuser->session_id = i;
120         return True;
121 }
122
123 /* called when a session is destroyed */
124 void session_yield(uint16 vuid)
125 {
126         user_struct *vuser = get_valid_user_struct(vuid);
127         TDB_DATA dbuf;
128         struct sessionid sessionid;
129         TDB_DATA key;           
130         fstring keystr;
131
132         if (!tdb) return;
133
134         if (vuser->session_id == 0) {
135                 return;
136         }
137
138         slprintf(keystr, sizeof(keystr)-1, "ID/%d", vuser->session_id);
139
140         key.dptr = keystr;
141         key.dsize = strlen(keystr)+1;
142
143         dbuf = tdb_fetch(tdb, key);
144
145         if (dbuf.dsize != sizeof(sessionid))
146                 return;
147
148         memcpy(&sessionid, dbuf.dptr, sizeof(sessionid));
149
150         safe_free(dbuf.dptr);
151         dbuf.dptr = NULL;
152
153 #if WITH_UTMP   
154         if (lp_utmp()) {
155                 sys_utmp_yield(sessionid.username, sessionid.hostname, 
156                                sessionid.id_str, sessionid.id_num);
157         }
158 #endif
159
160         smb_pam_close_session(sessionid.username, sessionid.id_str, sessionid.hostname);
161
162         tdb_delete(tdb, key);
163 }
164