summaryrefslogtreecommitdiff
path: root/source3/nsswitch/common.c
blob: be0b24cc5d898a42960d17004f909d9107b68a57 (plain)
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
/* 
   Unix SMB/Netbios implementation.
   Version 2.0

   winbind client common code

   Copyright (C) Tim Potter 2000
   Copyright (C) Andrew Tridgell 2000
   
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.
   
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.
   
   You should have received a copy of the GNU Library General Public
   License along with this library; if not, write to the
   Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA  02111-1307, USA.   
*/

#include "ntdom_config.h"
#include "winbindd_ntdom.h"

/* Global variables.  These are effectively the client state information */

static int established_socket = -1;           /* fd for winbindd socket */

/*
 * Utility and helper functions
 */

void init_request(struct winbindd_request *req,int rq_type)
{
        static char *domain_env;
        static BOOL initialised;

	req->cmd = rq_type;
	req->pid = getpid();
	req->domain[0] = '\0';

	if (!initialised) {
		initialised = True;
		domain_env = getenv(WINBINDD_DOMAIN_ENV);
	}

	if (domain_env) {
		strncpy(req->domain, domain_env,
			sizeof(req->domain) - 1);
		req->domain[sizeof(req->domain) - 1] = '\0';
	}
}

/* Close established socket */

void close_sock(void)
{
    if (established_socket != -1) {
	    close(established_socket);
	    established_socket = -1;
    }
}

/* Connect to winbindd socket */

static int open_pipe_sock(void)
{
    struct sockaddr_un sunaddr;
    static pid_t our_pid;
    struct stat st;
    pstring path;

    if (our_pid != getpid()) {
        if (established_socket != -1) {
            close(established_socket);
        }
        established_socket = -1;
        our_pid = getpid();
    }

    if (established_socket != -1) {
        return established_socket;
    }

    /* Check permissions on unix socket directory */

    if (lstat(WINBINDD_SOCKET_DIR, &st) == -1) {
        return -1;
    }

    if (!S_ISDIR(st.st_mode) || (st.st_uid != 0)) {
        return -1;
    }

    /* Connect to socket */

    strncpy(path, WINBINDD_SOCKET_DIR, sizeof(path) - 1);
    path[sizeof(path) - 1] = '\0';

    strncat(path, "/", sizeof(path) - 1);
    path[sizeof(path) - 1] = '\0';

    strncat(path, WINBINDD_SOCKET_NAME, sizeof(path) - 1);
    path[sizeof(path) - 1] = '\0';

    ZERO_STRUCT(sunaddr);
    sunaddr.sun_family = AF_UNIX;
    strncpy(sunaddr.sun_path, path, sizeof(sunaddr.sun_path) - 1);

    /* If socket file doesn't exist, don't bother trying to connect with
       retry.  This is an attempt to make the system usable when the
       winbindd daemon is not running. */

    if (lstat(path, &st) == -1) {
        return -1;
    }

    /* Check permissions on unix socket file */
    
    if (!S_ISSOCK(st.st_mode) || (st.st_uid != 0)) {
        return -1;
    }

    /* Connect to socket */

    if ((established_socket = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
        return -1;
    }

    if (connect(established_socket, (struct sockaddr *)&sunaddr, 
                sizeof(sunaddr)) == -1) {
        close_sock();
        return -1;
    }
        
    return established_socket;
}

/* Write data to winbindd socket with timeout */

int write_sock(void *buffer, int count)
{
    int result, nwritten;

    /* Open connection to winbind daemon */

 restart:

    if (open_pipe_sock() == -1) {
        return -1;
    }

    /* Write data to socket */

    nwritten = 0;

    while(nwritten < count) {
        struct timeval tv;
        fd_set r_fds;
        int selret;

        /* Catch pipe close on other end by checking if a read() call would 
           not block by calling select(). */

        FD_ZERO(&r_fds);
        FD_SET(established_socket, &r_fds);
        ZERO_STRUCT(tv);

        if ((selret = select(established_socket + 1, &r_fds, NULL, NULL, 
                             &tv)) == -1) {
            close_sock();
            return -1;                         /* Select error */
        }

        /* Write should be OK if fd not available for reading */

        if (!FD_ISSET(established_socket, &r_fds)) {

            /* Do the write */

            result = write(established_socket, (char *)buffer + nwritten, 
                           count - nwritten);

            if ((result == -1) || (result == 0)) {

                /* Write failed */
            
                close_sock();
                return -1;
            }

            nwritten += result;

        } else {

            /* Pipe has closed on remote end */

            close_sock();
            goto restart;
        }
    }
    
    return nwritten;
}

/* Read data from winbindd socket with timeout */

static int read_sock(void *buffer, int count)
{
    int result, nread;

    /* Read data from socket */

    nread = 0;

    while(nread < count) {

        result = read(established_socket, (char *)buffer + nread, 
                      count - nread);
        
        if ((result == -1) || (result == 0)) {

            /* Read failed.  I think the only useful thing we can do here 
               is just return -1 and fail since the transaction has failed
               half way through. */
            
            close_sock();
            return -1;
        }
        
        nread += result;
    }

    return result;
}

/* Read reply */

int read_reply(struct winbindd_response *response)
{
    int result1, result2;

    if (!response) {
        return -1;
    }

    /* Read fixed length response */

    if ((result1 = read_sock(response, sizeof(struct winbindd_response)))
         == -1) {

        return -1;
    }

    /* Read variable length response */

    if (response->length > sizeof(struct winbindd_response)) {
        int extra_data_len = response->length - 
            sizeof(struct winbindd_response);

        /* Mallocate memory for extra data */

        if (!(response->extra_data = malloc(extra_data_len))) {
            return -1;
        }

        if ((result2 = read_sock(response->extra_data, extra_data_len))
            == -1) {

            return -1;
        }
    }

    /* Return total amount of data read */

    return result1 + result2;
}