acl.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * acl.c: Access list related functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: bbe0c8605b9f601c6a2841efa6c1f528ab3c72fc $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan tod org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifndef  _GNU_SOURCE
  27. #   define  _GNU_SOURCE
  28. #endif
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_common.h>
  33. #include <vlc_acl.h>
  34. #include <lua.h>        /* Low level lua C API */
  35. #include <lauxlib.h>    /* Higher level C API */
  36. #include "../vlc.h"
  37. #include "../libs.h"
  38. /*****************************************************************************
  39.  *
  40.  *****************************************************************************/
  41. static int vlclua_acl_create_inner( lua_State *, vlc_acl_t * );
  42. static int vlclua_acl_delete( lua_State * );
  43. static int vlclua_acl_check( lua_State * );
  44. static int vlclua_acl_duplicate( lua_State * );
  45. static int vlclua_acl_add_host( lua_State * );
  46. static int vlclua_acl_add_net( lua_State * );
  47. static int vlclua_acl_load_file( lua_State * );
  48. static const luaL_Reg vlclua_acl_reg[] = {
  49.     { "check", vlclua_acl_check },
  50.     { "duplicate", vlclua_acl_duplicate },
  51.     { "add_host", vlclua_acl_add_host },
  52.     { "add_net", vlclua_acl_add_net },
  53.     { "load_file", vlclua_acl_load_file },
  54.     { NULL, NULL }
  55. };
  56. static int vlclua_acl_create( lua_State *L )
  57. {
  58.     vlc_object_t *p_this = vlclua_get_this( L );
  59.     bool b_allow = luaL_checkboolean( L, 1 ) ? true : false;
  60.     vlc_acl_t *p_acl = ACL_Create( p_this, b_allow );
  61.     return vlclua_acl_create_inner( L, p_acl );
  62. }
  63. static int vlclua_acl_create_inner( lua_State *L, vlc_acl_t *p_acl )
  64. {
  65.     if( !p_acl )
  66.         return luaL_error( L, "ACL creation failed." );
  67.     vlc_acl_t **pp_acl = lua_newuserdata( L, sizeof( vlc_acl_t * ) );
  68.     *pp_acl = p_acl;
  69.     if( luaL_newmetatable( L, "acl" ) )
  70.     {
  71.         lua_newtable( L );
  72.         luaL_register( L, NULL, vlclua_acl_reg );
  73.         lua_setfield( L, -2, "__index" );
  74.         lua_pushcfunction( L, vlclua_acl_delete );
  75.         lua_setfield( L, -2, "__gc" );
  76.     }
  77.     lua_setmetatable( L, -2 );
  78.     return 1;
  79. }
  80. static int vlclua_acl_delete( lua_State *L )
  81. {
  82.     vlc_acl_t **pp_acl = (vlc_acl_t**)luaL_checkudata( L, 1, "acl" );
  83.     ACL_Destroy( *pp_acl );
  84.     return 0;
  85. }
  86. static int vlclua_acl_check( lua_State *L )
  87. {
  88.     vlc_acl_t **pp_acl = (vlc_acl_t**)luaL_checkudata( L, 1, "acl" );
  89.     const char *psz_ip = luaL_checkstring( L, 2 );
  90.     lua_pushinteger( L, ACL_Check( *pp_acl, psz_ip ) );
  91.     return 1;
  92. }
  93. static int vlclua_acl_duplicate( lua_State *L )
  94. {
  95.     vlc_object_t *p_this = vlclua_get_this( L );
  96.     vlc_acl_t **pp_acl = (vlc_acl_t**)luaL_checkudata( L, 1, "acl" );
  97.     vlc_acl_t *p_acl_new = ACL_Duplicate( p_this, *pp_acl );
  98.     return vlclua_acl_create_inner( L, p_acl_new );
  99. }
  100. static int vlclua_acl_add_host( lua_State *L )
  101. {
  102.     vlc_acl_t **pp_acl = (vlc_acl_t**)luaL_checkudata( L, 1, "acl" );
  103.     const char *psz_ip = luaL_checkstring( L, 2 );
  104.     bool b_allow = luaL_checkboolean( L, 3 ) ? true : false;
  105.     lua_pushinteger( L, ACL_AddHost( *pp_acl, psz_ip, b_allow ) );
  106.     return 1;
  107. }
  108. static int vlclua_acl_add_net( lua_State *L )
  109. {
  110.     vlc_acl_t **pp_acl = (vlc_acl_t**)luaL_checkudata( L, 1, "acl" );
  111.     const char *psz_ip = luaL_checkstring( L, 2 );
  112.     int i_len = luaL_checkint( L, 3 );
  113.     bool b_allow = luaL_checkboolean( L, 4 ) ? true : false;
  114.     lua_pushinteger( L, ACL_AddNet( *pp_acl, psz_ip, i_len, b_allow ) );
  115.     return 1;
  116. }
  117. static int vlclua_acl_load_file( lua_State *L )
  118. {
  119.     vlc_acl_t **pp_acl = (vlc_acl_t**)luaL_checkudata( L, 1, "acl" );
  120.     const char *psz_path = luaL_checkstring( L, 2 );
  121.     lua_pushinteger( L, ACL_LoadFile( *pp_acl, psz_path ) );
  122.     return 1;
  123. }
  124. void luaopen_acl( lua_State *L )
  125. {
  126.     lua_pushcfunction( L, vlclua_acl_create );
  127.     lua_setfield( L, -2, "acl" );
  128. }