modsocket.c 16.1 KB
Newer Older
1 2 3 4 5 6
/*
 * This file is part of the Micro Python project, http://micropython.org/
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2013, 2014 Damien P. George
7
 * Copyright (c) 2014 Paul Sokolovsky
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

28 29 30 31
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <unistd.h>
32
#include <fcntl.h>
X
xbe 已提交
33 34
#include <sys/stat.h>
#include <sys/types.h>
35
#include <sys/socket.h>
X
xbe 已提交
36
#include <netinet/in.h>
37 38 39 40
#include <arpa/inet.h>
#include <netdb.h>
#include <errno.h>

41 42 43 44 45 46
#include "py/nlr.h"
#include "py/objtuple.h"
#include "py/objstr.h"
#include "py/runtime.h"
#include "py/stream.h"
#include "py/builtin.h"
47

48 49 50
/*
  The idea of this module is to implement reasonable minimum of
  socket-related functions to write typical clients and servers.
51
  The module named "usocket" on purpose, to allow to make
52 53 54
  Python-level module more (or fully) compatible with CPython
  "socket", e.g.:
  ---- socket.py ----
55
  from usocket import *
56 57 58 59 60 61 62
  from socket_more_funcs import *
  from socket_more_funcs2 import *
  -------------------
  I.e. this module should stay lean, and more functions (if needed)
  should be add to seperate modules (C or Python level).
 */

63 64 65 66 67 68 69
#define MICROPY_SOCKET_EXTRA (0)

typedef struct _mp_obj_socket_t {
    mp_obj_base_t base;
    int fd;
} mp_obj_socket_t;

70
STATIC const mp_obj_type_t usocket_type;
71 72 73 74

// Helper functions
#define RAISE_ERRNO(err_flag, error_val) \
    { if (err_flag == -1) \
75
        { nlr_raise(mp_obj_new_exception_arg1(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(error_val))); } }
76

77
STATIC mp_obj_socket_t *socket_new(int fd) {
78
    mp_obj_socket_t *o = m_new_obj(mp_obj_socket_t);
79
    o->base.type = &usocket_type;
80 81 82 83 84
    o->fd = fd;
    return o;
}


85
STATIC void socket_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) {
86 87 88 89
    mp_obj_socket_t *self = self_in;
    print(env, "<_socket %d>", self->fd);
}

90
STATIC mp_uint_t socket_read(mp_obj_t o_in, void *buf, mp_uint_t size, int *errcode) {
91
    mp_obj_socket_t *o = o_in;
92
    mp_int_t r = read(o->fd, buf, size);
93 94
    if (r == -1) {
        *errcode = errno;
95
        return MP_STREAM_ERROR;
96 97 98 99
    }
    return r;
}

100
STATIC mp_uint_t socket_write(mp_obj_t o_in, const void *buf, mp_uint_t size, int *errcode) {
101
    mp_obj_socket_t *o = o_in;
102
    mp_int_t r = write(o->fd, buf, size);
103 104
    if (r == -1) {
        *errcode = errno;
105
        return MP_STREAM_ERROR;
106 107 108 109
    }
    return r;
}

110
STATIC mp_obj_t socket_close(mp_obj_t self_in) {
111 112 113 114
    mp_obj_socket_t *self = self_in;
    close(self->fd);
    return mp_const_none;
}
115
STATIC MP_DEFINE_CONST_FUN_OBJ_1(socket_close_obj, socket_close);
116

117
STATIC mp_obj_t socket_fileno(mp_obj_t self_in) {
118
    mp_obj_socket_t *self = self_in;
119
    return MP_OBJ_NEW_SMALL_INT(self->fd);
120
}
121
STATIC MP_DEFINE_CONST_FUN_OBJ_1(socket_fileno_obj, socket_fileno);
122

123
STATIC mp_obj_t socket_connect(mp_obj_t self_in, mp_obj_t addr_in) {
124
    mp_obj_socket_t *self = self_in;
125
    mp_buffer_info_t bufinfo;
126
    mp_get_buffer_raise(addr_in, &bufinfo, MP_BUFFER_READ);
127 128 129 130
    int r = connect(self->fd, (const struct sockaddr *)bufinfo.buf, bufinfo.len);
    RAISE_ERRNO(r, errno);
    return mp_const_none;
}
131
STATIC MP_DEFINE_CONST_FUN_OBJ_2(socket_connect_obj, socket_connect);
132

133
STATIC mp_obj_t socket_bind(mp_obj_t self_in, mp_obj_t addr_in) {
134
    mp_obj_socket_t *self = self_in;
135
    mp_buffer_info_t bufinfo;
136
    mp_get_buffer_raise(addr_in, &bufinfo, MP_BUFFER_READ);
137 138 139 140
    int r = bind(self->fd, (const struct sockaddr *)bufinfo.buf, bufinfo.len);
    RAISE_ERRNO(r, errno);
    return mp_const_none;
}
141
STATIC MP_DEFINE_CONST_FUN_OBJ_2(socket_bind_obj, socket_bind);
142

143
STATIC mp_obj_t socket_listen(mp_obj_t self_in, mp_obj_t backlog_in) {
144 145 146 147 148
    mp_obj_socket_t *self = self_in;
    int r = listen(self->fd, MP_OBJ_SMALL_INT_VALUE(backlog_in));
    RAISE_ERRNO(r, errno);
    return mp_const_none;
}
149
STATIC MP_DEFINE_CONST_FUN_OBJ_2(socket_listen_obj, socket_listen);
150

151
STATIC mp_obj_t socket_accept(mp_obj_t self_in) {
152 153 154 155 156 157 158 159 160 161 162 163
    mp_obj_socket_t *self = self_in;
    struct sockaddr addr;
    socklen_t addr_len = sizeof(addr);
    int fd = accept(self->fd, &addr, &addr_len);
    RAISE_ERRNO(fd, errno);

    mp_obj_tuple_t *t = mp_obj_new_tuple(2, NULL);
    t->items[0] = socket_new(fd);
    t->items[1] = mp_obj_new_bytearray(addr_len, &addr);

    return t;
}
164
STATIC MP_DEFINE_CONST_FUN_OBJ_1(socket_accept_obj, socket_accept);
165

166 167 168
// Note: besides flag param, this differs from read() in that
// this does not swallow blocking errors (EAGAIN, EWOULDBLOCK) -
// these would be thrown as exceptions.
169
STATIC mp_obj_t socket_recv(mp_uint_t n_args, const mp_obj_t *args) {
170 171 172 173 174 175 176 177
    mp_obj_socket_t *self = args[0];
    int sz = MP_OBJ_SMALL_INT_VALUE(args[1]);
    int flags = 0;

    if (n_args > 2) {
        flags = MP_OBJ_SMALL_INT_VALUE(args[2]);
    }

178
    byte *buf = m_new(byte, sz);
179 180 181
    int out_sz = recv(self->fd, buf, sz, flags);
    RAISE_ERRNO(out_sz, errno);

182
    mp_obj_t ret = mp_obj_new_str_of_type(&mp_type_bytes, buf, out_sz);
183 184
    m_del(char, buf, sz);
    return ret;
185
}
186
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(socket_recv_obj, 2, 3, socket_recv);
187

188 189 190
// Note: besides flag param, this differs from write() in that
// this does not swallow blocking errors (EAGAIN, EWOULDBLOCK) -
// these would be thrown as exceptions.
191
STATIC mp_obj_t socket_send(mp_uint_t n_args, const mp_obj_t *args) {
192 193 194 195 196 197 198
    mp_obj_socket_t *self = args[0];
    int flags = 0;

    if (n_args > 2) {
        flags = MP_OBJ_SMALL_INT_VALUE(args[2]);
    }

199 200 201
    mp_buffer_info_t bufinfo;
    mp_get_buffer_raise(args[1], &bufinfo, MP_BUFFER_READ);
    int out_sz = send(self->fd, bufinfo.buf, bufinfo.len, flags);
202 203
    RAISE_ERRNO(out_sz, errno);

204
    return MP_OBJ_NEW_SMALL_INT(out_sz);
205
}
206
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(socket_send_obj, 2, 3, socket_send);
207

208
STATIC mp_obj_t socket_setsockopt(mp_uint_t n_args, const mp_obj_t *args) {
209 210 211 212 213 214 215
    mp_obj_socket_t *self = args[0];
    int level = MP_OBJ_SMALL_INT_VALUE(args[1]);
    int option = mp_obj_get_int(args[2]);

    const void *optval;
    socklen_t optlen;
    if (MP_OBJ_IS_INT(args[3])) {
216
        int val = mp_obj_int_get_truncated(args[3]);
217 218 219
        optval = &val;
        optlen = sizeof(val);
    } else {
220
        mp_buffer_info_t bufinfo;
221
        mp_get_buffer_raise(args[3], &bufinfo, MP_BUFFER_READ);
222 223 224 225 226 227 228
        optval = bufinfo.buf;
        optlen = bufinfo.len;
    }
    int r = setsockopt(self->fd, level, option, optval, optlen);
    RAISE_ERRNO(r, errno);
    return mp_const_none;
}
229
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(socket_setsockopt_obj, 4, 4, socket_setsockopt);
230

231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
STATIC mp_obj_t socket_setblocking(mp_obj_t self_in, mp_obj_t flag_in) {
    mp_obj_socket_t *self = self_in;
    int val = mp_obj_is_true(flag_in);
    int flags = fcntl(self->fd, F_GETFL, 0);
    RAISE_ERRNO(flags, errno);
    if (val) {
        flags &= ~O_NONBLOCK;
    } else {
        flags |= O_NONBLOCK;
    }
    flags = fcntl(self->fd, F_SETFL, flags);
    RAISE_ERRNO(flags, errno);
    return mp_const_none;
}
STATIC MP_DEFINE_CONST_FUN_OBJ_2(socket_setblocking_obj, socket_setblocking);

247
STATIC mp_obj_t socket_makefile(mp_uint_t n_args, const mp_obj_t *args) {
248 249 250 251 252 253
    // TODO: CPython explicitly says that closing returned object doesn't close
    // the original socket (Python2 at all says that fd is dup()ed). But we
    // save on the bloat.
    mp_obj_socket_t *self = args[0];
    mp_obj_t *new_args = alloca(n_args * sizeof(mp_obj_t));
    memcpy(new_args + 1, args + 1, (n_args - 1) * sizeof(mp_obj_t));
254
    new_args[0] = MP_OBJ_NEW_SMALL_INT(self->fd);
255 256 257
    mp_map_t kwargs;
    mp_map_init(&kwargs, 0);
    return mp_builtin_open(n_args, new_args, &kwargs);
258 259 260
}
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(socket_makefile_obj, 1, 3, socket_makefile);

261
STATIC mp_obj_t socket_make_new(mp_obj_t type_in, mp_uint_t n_args, mp_uint_t n_kw, const mp_obj_t *args) {
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
    int family = AF_INET;
    int type = SOCK_STREAM;
    int proto = 0;

    if (n_args > 0) {
        assert(MP_OBJ_IS_SMALL_INT(args[0]));
        family = MP_OBJ_SMALL_INT_VALUE(args[0]);
        if (n_args > 1) {
            assert(MP_OBJ_IS_SMALL_INT(args[1]));
            type = MP_OBJ_SMALL_INT_VALUE(args[1]);
            if (n_args > 2) {
                assert(MP_OBJ_IS_SMALL_INT(args[2]));
                proto = MP_OBJ_SMALL_INT_VALUE(args[2]);
            }
        }
    }

    int fd = socket(family, type, proto);
    RAISE_ERRNO(fd, errno);
    return socket_new(fd);
}

284
STATIC const mp_map_elem_t usocket_locals_dict_table[] = {
285
    { MP_OBJ_NEW_QSTR(MP_QSTR_fileno), (mp_obj_t)&socket_fileno_obj },
286
    { MP_OBJ_NEW_QSTR(MP_QSTR_makefile), (mp_obj_t)&socket_makefile_obj },
287 288
    { MP_OBJ_NEW_QSTR(MP_QSTR_read), (mp_obj_t)&mp_stream_read_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_readall), (mp_obj_t)&mp_stream_readall_obj },
289
    { MP_OBJ_NEW_QSTR(MP_QSTR_readinto), (mp_obj_t)&mp_stream_readinto_obj },
290 291 292 293 294 295 296 297 298
    { MP_OBJ_NEW_QSTR(MP_QSTR_readline), (mp_obj_t)&mp_stream_unbuffered_readline_obj},
    { MP_OBJ_NEW_QSTR(MP_QSTR_write), (mp_obj_t)&mp_stream_write_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_connect), (mp_obj_t)&socket_connect_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_bind), (mp_obj_t)&socket_bind_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_listen), (mp_obj_t)&socket_listen_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_accept), (mp_obj_t)&socket_accept_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_recv), (mp_obj_t)&socket_recv_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_send), (mp_obj_t)&socket_send_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_setsockopt), (mp_obj_t)&socket_setsockopt_obj },
299
    { MP_OBJ_NEW_QSTR(MP_QSTR_setblocking), (mp_obj_t)&socket_setblocking_obj },
300
    { MP_OBJ_NEW_QSTR(MP_QSTR_close), (mp_obj_t)&socket_close_obj },
301 302
};

303
STATIC MP_DEFINE_CONST_DICT(usocket_locals_dict, usocket_locals_dict_table);
304

305
STATIC const mp_stream_p_t usocket_stream_p = {
306 307 308 309
    .read = socket_read,
    .write = socket_write,
};

310
STATIC const mp_obj_type_t usocket_type = {
311
    { &mp_type_type },
312
    .name = MP_QSTR_socket,
313 314 315 316
    .print = socket_print,
    .make_new = socket_make_new,
    .getiter = NULL,
    .iternext = NULL,
317 318
    .stream_p = &usocket_stream_p,
    .locals_dict = (mp_obj_t)&usocket_locals_dict,
319 320
};

321
#if MICROPY_SOCKET_EXTRA
322
STATIC mp_obj_t mod_socket_htons(mp_obj_t arg) {
323
    return MP_OBJ_NEW_SMALL_INT(htons(MP_OBJ_SMALL_INT_VALUE(arg)));
324
}
325
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_socket_htons_obj, mod_socket_htons);
326

327
STATIC mp_obj_t mod_socket_inet_aton(mp_obj_t arg) {
328
    assert(MP_OBJ_IS_TYPE(arg, &mp_type_str));
329
    const char *s = mp_obj_str_get_str(arg);
330 331
    struct in_addr addr;
    if (!inet_aton(s, &addr)) {
332
        nlr_raise(mp_obj_new_exception_arg1(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(EINVAL)));
333 334 335 336
    }

    return mp_obj_new_int(addr.s_addr);
}
337
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_socket_inet_aton_obj, mod_socket_inet_aton);
338

339
STATIC mp_obj_t mod_socket_gethostbyname(mp_obj_t arg) {
340
    assert(MP_OBJ_IS_TYPE(arg, &mp_type_str));
341
    const char *s = mp_obj_str_get_str(arg);
342 343
    struct hostent *h = gethostbyname(s);
    if (h == NULL) {
344
        // CPython: socket.herror
345
        nlr_raise(mp_obj_new_exception_arg1(&mp_type_OSError, MP_OBJ_NEW_SMALL_INT(h_errno)));
346 347 348 349
    }
    assert(h->h_length == 4);
    return mp_obj_new_int(*(int*)*h->h_addr_list);
}
350
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_socket_gethostbyname_obj, mod_socket_gethostbyname);
351
#endif // MICROPY_SOCKET_EXTRA
352

353
STATIC mp_obj_t mod_socket_getaddrinfo(mp_uint_t n_args, const mp_obj_t *args) {
354 355
    // TODO: Implement all args
    assert(n_args == 2);
356
    assert(MP_OBJ_IS_STR(args[0]));
357

358
    const char *host = mp_obj_str_get_str(args[0]);
359
    const char *serv = NULL;
360 361
    struct addrinfo hints;
    memset(&hints, 0, sizeof(hints));
362 363 364
    // getaddrinfo accepts port in string notation, so however
    // it may seem stupid, we need to convert int to str
    if (MP_OBJ_IS_SMALL_INT(args[1])) {
365 366
        int port = (short)MP_OBJ_SMALL_INT_VALUE(args[1]);
        char buf[6];
367 368
        sprintf(buf, "%d", port);
        serv = buf;
369
        hints.ai_flags = AI_NUMERICSERV;
370
#ifdef __UCLIBC_MAJOR__
371
#if __UCLIBC_MAJOR__ == 0 && (__UCLIBC_MINOR__ < 9 || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ <= 32))
372 373
// "warning" requires -Wno-cpp which is a relatively new gcc option, so we choose not to use it.
//#warning Working around uClibc bug with numeric service name
374 375 376 377 378 379 380 381
        // Older versions og uClibc have bugs when numeric ports in service
        // arg require also hints.ai_socktype (or hints.ai_protocol) != 0
        // This actually was fixed in 0.9.32.1, but uClibc doesn't allow to
        // test for that.
        // http://git.uclibc.org/uClibc/commit/libc/inet/getaddrinfo.c?id=bc3be18145e4d5
        // Note that this is crude workaround, precluding UDP socket addresses
        // to be returned. TODO: set only if not set by Python args.
        hints.ai_socktype = SOCK_STREAM;
382
#endif
383
#endif
384
    } else {
385
        serv = mp_obj_str_get_str(args[1]);
386 387
    }

388
    struct addrinfo *addr_list;
389
    int res = getaddrinfo(host, serv, &hints, &addr_list);
390 391

    if (res != 0) {
392
        // CPython: socket.gaierror
393
        nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_OSError, "[addrinfo error %d]", res));
394
    }
395
    assert(addr_list);
396

397
    mp_obj_t list = mp_obj_new_list(0, NULL);
398
    for (struct addrinfo *addr = addr_list; addr; addr = addr->ai_next) {
399
        mp_obj_tuple_t *t = mp_obj_new_tuple(5, NULL);
400 401 402
        t->items[0] = MP_OBJ_NEW_SMALL_INT(addr->ai_family);
        t->items[1] = MP_OBJ_NEW_SMALL_INT(addr->ai_socktype);
        t->items[2] = MP_OBJ_NEW_SMALL_INT(addr->ai_protocol);
403 404 405
        // "canonname will be a string representing the canonical name of the host
        // if AI_CANONNAME is part of the flags argument; else canonname will be empty." ??
        if (addr->ai_canonname) {
406
            t->items[3] = MP_OBJ_NEW_QSTR(qstr_from_str(addr->ai_canonname));
407 408 409 410
        } else {
            t->items[3] = mp_const_none;
        }
        t->items[4] = mp_obj_new_bytearray(addr->ai_addrlen, addr->ai_addr);
411
        mp_obj_list_append(list, t);
412
    }
413
    freeaddrinfo(addr_list);
414 415
    return list;
}
416
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mod_socket_getaddrinfo_obj, 2, 6, mod_socket_getaddrinfo);
417 418 419

extern mp_obj_type_t sockaddr_in_type;

420
STATIC const mp_map_elem_t mp_module_socket_globals_table[] = {
421 422
    { MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_usocket) },
    { MP_OBJ_NEW_QSTR(MP_QSTR_socket), (mp_obj_t)&usocket_type },
423 424 425 426 427 428 429
    { MP_OBJ_NEW_QSTR(MP_QSTR_getaddrinfo), (mp_obj_t)&mod_socket_getaddrinfo_obj },
#if MICROPY_SOCKET_EXTRA
    { MP_OBJ_NEW_QSTR(MP_QSTR_sockaddr_in), (mp_obj_t)&sockaddr_in_type },
    { MP_OBJ_NEW_QSTR(MP_QSTR_htons), (mp_obj_t)&mod_socket_htons_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_inet_aton), (mp_obj_t)&mod_socket_inet_aton_obj },
    { MP_OBJ_NEW_QSTR(MP_QSTR_gethostbyname), (mp_obj_t)&mod_socket_gethostbyname_obj },
#endif
430

431
#define C(name) { MP_OBJ_NEW_QSTR(MP_QSTR_ ## name), MP_OBJ_NEW_SMALL_INT(name) }
432 433 434 435 436 437
    C(AF_UNIX),
    C(AF_INET),
    C(AF_INET6),
    C(SOCK_STREAM),
    C(SOCK_DGRAM),
    C(SOCK_RAW),
438 439 440 441 442 443 444 445 446 447

    C(MSG_DONTROUTE),
    C(MSG_DONTWAIT),

    C(SOL_SOCKET),
    C(SO_BROADCAST),
    C(SO_ERROR),
    C(SO_KEEPALIVE),
    C(SO_LINGER),
    C(SO_REUSEADDR),
448
#undef C
449 450
};

451
STATIC MP_DEFINE_CONST_DICT(mp_module_socket_globals, mp_module_socket_globals_table);
452

453 454
const mp_obj_module_t mp_module_socket = {
    .base = { &mp_type_module },
455
    .name = MP_QSTR_usocket,
456 457
    .globals = (mp_obj_dict_t*)&mp_module_socket_globals,
};