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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * linux_dvb.c : functions to control a DVB card under Linux with v4l2
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2005 the VideoLAN team
  5.  *
  6.  * Authors: Damien Lucas <nitrox@via.ecp.fr>
  7.  *          Johan Bilien <jobi@via.ecp.fr>
  8.  *          Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
  9.  *          Christopher Ross <chris@tebibyte.org>
  10.  *          Christophe Massiot <massiot@via.ecp.fr>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.    See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA    02111, USA.
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_access.h>
  31. #include <sys/ioctl.h>
  32. #include <errno.h>
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35. #include <fcntl.h>
  36. #include <time.h>
  37. #include <unistd.h>
  38. #include <sys/stat.h>
  39. #include <sys/poll.h>
  40. /* DVB Card Drivers */
  41. #include <linux/dvb/version.h>
  42. #include <linux/dvb/dmx.h>
  43. #include <linux/dvb/frontend.h>
  44. #include <linux/dvb/ca.h>
  45. /* Include dvbpsi headers */
  46. #ifdef HAVE_DVBPSI_DR_H
  47. #   include <dvbpsi/dvbpsi.h>
  48. #   include <dvbpsi/descriptor.h>
  49. #   include <dvbpsi/pat.h>
  50. #   include <dvbpsi/pmt.h>
  51. #   include <dvbpsi/dr.h>
  52. #   include <dvbpsi/psi.h>
  53. #   include <dvbpsi/demux.h>
  54. #   include <dvbpsi/sdt.h>
  55. #else
  56. #   include "dvbpsi.h"
  57. #   include "descriptor.h"
  58. #   include "tables/pat.h"
  59. #   include "tables/pmt.h"
  60. #   include "descriptors/dr.h"
  61. #   include "psi.h"
  62. #   include "demux.h"
  63. #   include "tables/sdt.h"
  64. #endif
  65. #ifdef ENABLE_HTTPD
  66. #   include "vlc_httpd.h"
  67. #endif
  68. #include "dvb.h"
  69. /*
  70.  * Frontends
  71.  */
  72. struct frontend_t
  73. {
  74.     fe_status_t i_last_status;
  75.     struct dvb_frontend_info info;
  76. };
  77. #define FRONTEND_LOCK_TIMEOUT 10000000 /* 10 s */
  78. /* Local prototypes */
  79. static int FrontendInfo( access_t * );
  80. static int FrontendSetQPSK( access_t * );
  81. static int FrontendSetQAM( access_t * );
  82. static int FrontendSetOFDM( access_t * );
  83. static int FrontendSetATSC( access_t * );
  84. /*****************************************************************************
  85.  * FrontendOpen : Determine frontend device information and capabilities
  86.  *****************************************************************************/
  87. int FrontendOpen( access_t *p_access )
  88. {
  89.     access_sys_t *p_sys = p_access->p_sys;
  90.     frontend_t * p_frontend;
  91.     unsigned int i_adapter, i_device;
  92.     bool b_probe;
  93.     char frontend[128];
  94.     i_adapter = var_GetInteger( p_access, "dvb-adapter" );
  95.     i_device = var_GetInteger( p_access, "dvb-device" );
  96.     b_probe = var_GetBool( p_access, "dvb-probe" );
  97.     if( snprintf( frontend, sizeof(frontend), FRONTEND, i_adapter, i_device ) >= (int)sizeof(frontend) )
  98.     {
  99.         msg_Err( p_access, "snprintf() truncated string for FRONTEND" );
  100.         frontend[sizeof(frontend) - 1] = '';
  101.     }
  102.     p_sys->p_frontend = p_frontend = malloc( sizeof(frontend_t) );
  103.     if( !p_frontend )
  104.         return VLC_ENOMEM;
  105.     msg_Dbg( p_access, "Opening device %s", frontend );
  106.     if( (p_sys->i_frontend_handle = open(frontend, O_RDWR | O_NONBLOCK)) < 0 )
  107.     {
  108.         msg_Err( p_access, "FrontEndOpen: opening device failed (%m)" );
  109.         free( p_frontend );
  110.         return VLC_EGENERIC;
  111.     }
  112.     if( b_probe )
  113.     {
  114.         const char * psz_expected = NULL;
  115.         const char * psz_real;
  116.         if( FrontendInfo( p_access ) < 0 )
  117.         {
  118.             close( p_sys->i_frontend_handle );
  119.             free( p_frontend );
  120.             return VLC_EGENERIC;
  121.         }
  122.         switch( p_frontend->info.type )
  123.         {
  124.         case FE_OFDM:
  125.             psz_real = "DVB-T";
  126.             break;
  127.         case FE_QAM:
  128.             psz_real = "DVB-C";
  129.             break;
  130.         case FE_QPSK:
  131.             psz_real = "DVB-S";
  132.             break;
  133.         case FE_ATSC:
  134.             psz_real = "ATSC";
  135.             break;
  136.         default:
  137.             psz_real = "unknown";
  138.         }
  139.         /* Sanity checks */
  140.         if( (!strncmp( p_access->psz_access, "qpsk", 4 ) ||
  141.              !strncmp( p_access->psz_access, "dvb-s", 5 ) ||
  142.              !strncmp( p_access->psz_access, "satellite", 9 ) ) &&
  143.              (p_frontend->info.type != FE_QPSK) )
  144.         {
  145.             psz_expected = "DVB-S";
  146.         }
  147.         if( (!strncmp( p_access->psz_access, "cable", 5 ) ||
  148.              !strncmp( p_access->psz_access, "dvb-c", 5 ) ) &&
  149.              (p_frontend->info.type != FE_QAM) )
  150.         {
  151.             psz_expected = "DVB-C";
  152.         }
  153.         if( (!strncmp( p_access->psz_access, "terrestrial", 11 ) ||
  154.              !strncmp( p_access->psz_access, "dvb-t", 5 ) ) &&
  155.              (p_frontend->info.type != FE_OFDM) )
  156.         {
  157.             psz_expected = "DVB-T";
  158.         }
  159.         if( (!strncmp( p_access->psz_access, "usdigital", 9 ) ||
  160.              !strncmp( p_access->psz_access, "atsc", 4 ) ) &&
  161.              (p_frontend->info.type != FE_ATSC) )
  162.         {
  163.             psz_expected = "ATSC";
  164.         }
  165.         if( psz_expected != NULL )
  166.         {
  167.             msg_Err( p_access, "the user asked for %s, and the tuner is %s",
  168.                      psz_expected, psz_real );
  169.             close( p_sys->i_frontend_handle );
  170.             free( p_frontend );
  171.             return VLC_EGENERIC;
  172.         }
  173.     }
  174.     else /* no frontend probing is done so use default border values. */
  175.     {
  176.         msg_Dbg( p_access, "using default values for frontend info" );
  177.         msg_Dbg( p_access, "method of access is %s", p_access->psz_access );
  178.         p_frontend->info.type = FE_QPSK;
  179.         if( !strncmp( p_access->psz_access, "qpsk", 4 ) ||
  180.             !strncmp( p_access->psz_access, "dvb-s", 5 ) )
  181.             p_frontend->info.type = FE_QPSK;
  182.         else if( !strncmp( p_access->psz_access, "cable", 5 ) ||
  183.                  !strncmp( p_access->psz_access, "dvb-c", 5 ) )
  184.             p_frontend->info.type = FE_QAM;
  185.         else if( !strncmp( p_access->psz_access, "terrestrial", 11 ) ||
  186.                  !strncmp( p_access->psz_access, "dvb-t", 5 ) )
  187.             p_frontend->info.type = FE_OFDM;
  188.         else if( !strncmp( p_access->psz_access, "usdigital", 9 ) ||
  189.                  !strncmp( p_access->psz_access, "atsc", 4 ) )
  190.             p_frontend->info.type = FE_ATSC;
  191.     }
  192.     return VLC_SUCCESS;
  193. }
  194. /*****************************************************************************
  195.  * FrontendClose : Close the frontend
  196.  *****************************************************************************/
  197. void FrontendClose( access_t *p_access )
  198. {
  199.     access_sys_t *p_sys = p_access->p_sys;
  200.     if( p_sys->p_frontend )
  201.     {
  202.         close( p_sys->i_frontend_handle );
  203.         free( p_sys->p_frontend );
  204.         p_sys->p_frontend = NULL;
  205.     }
  206. }
  207. /*****************************************************************************
  208.  * FrontendSet : Tune !
  209.  *****************************************************************************/
  210. int FrontendSet( access_t *p_access )
  211. {
  212.     access_sys_t *p_sys = p_access->p_sys;
  213.     switch( p_sys->p_frontend->info.type )
  214.     {
  215.     /* DVB-S */
  216.     case FE_QPSK:
  217.         if( FrontendSetQPSK( p_access ) < 0 )
  218.         {
  219.             msg_Err( p_access, "DVB-S: tuning failed" );
  220.             return VLC_EGENERIC;
  221.         }
  222.         break;
  223.     /* DVB-C */
  224.     case FE_QAM:
  225.         if( FrontendSetQAM( p_access ) < 0 )
  226.         {
  227.             msg_Err( p_access, "DVB-C: tuning failed" );
  228.             return VLC_EGENERIC;
  229.         }
  230.         break;
  231.     /* DVB-T */
  232.     case FE_OFDM:
  233.         if( FrontendSetOFDM( p_access ) < 0 )
  234.         {
  235.             msg_Err( p_access, "DVB-T: tuning failed" );
  236.             return VLC_EGENERIC;
  237.         }
  238.         break;
  239.     /* ATSC */
  240.     case FE_ATSC:
  241.         if( FrontendSetATSC( p_access ) < 0 )
  242.         {
  243.             msg_Err( p_access, "ATSC: tuning failed" );
  244.             return VLC_EGENERIC;
  245.         }
  246.         break;
  247.     default:
  248.         msg_Err( p_access, "Could not determine frontend type on %s",
  249.                  p_sys->p_frontend->info.name );
  250.         return VLC_EGENERIC;
  251.     }
  252.     p_sys->p_frontend->i_last_status = 0;
  253.     p_sys->i_frontend_timeout = mdate() + FRONTEND_LOCK_TIMEOUT;
  254.     return VLC_SUCCESS;
  255. }
  256. /*****************************************************************************
  257.  * FrontendPoll : Poll for frontend events
  258.  *****************************************************************************/
  259. void FrontendPoll( access_t *p_access )
  260. {
  261.     access_sys_t *p_sys = p_access->p_sys;
  262.     frontend_t * p_frontend = p_sys->p_frontend;
  263.     struct dvb_frontend_event event;
  264.     fe_status_t i_status, i_diff;
  265.     for( ;; )
  266.     {
  267.         int i_ret = ioctl( p_sys->i_frontend_handle, FE_GET_EVENT, &event );
  268.         if( i_ret < 0 )
  269.         {
  270.             if( errno == EWOULDBLOCK )
  271.                 return; /* no more events */
  272.             msg_Err( p_access, "reading frontend event failed (%d): %m",
  273.                      i_ret );
  274.             return;
  275.         }
  276.         i_status = event.status;
  277.         i_diff = i_status ^ p_frontend->i_last_status;
  278.         p_frontend->i_last_status = i_status;
  279.         {
  280. #define IF_UP( x )                                                          
  281.         }                                                                   
  282.         if ( i_diff & (x) )                                                 
  283.         {                                                                   
  284.             if ( i_status & (x) )
  285.             IF_UP( FE_HAS_SIGNAL )
  286.                 msg_Dbg( p_access, "frontend has acquired signal" );
  287.             else
  288.                 msg_Dbg( p_access, "frontend has lost signal" );
  289.             IF_UP( FE_HAS_CARRIER )
  290.                 msg_Dbg( p_access, "frontend has acquired carrier" );
  291.             else
  292.                 msg_Dbg( p_access, "frontend has lost carrier" );
  293.             IF_UP( FE_HAS_VITERBI )
  294.                 msg_Dbg( p_access, "frontend has acquired stable FEC" );
  295.             else
  296.                 msg_Dbg( p_access, "frontend has lost FEC" );
  297.             IF_UP( FE_HAS_SYNC )
  298.                 msg_Dbg( p_access, "frontend has acquired sync" );
  299.             else
  300.                 msg_Dbg( p_access, "frontend has lost sync" );
  301.             IF_UP( FE_HAS_LOCK )
  302.             {
  303.                 frontend_statistic_t stat;
  304.                 msg_Dbg( p_access, "frontend has acquired lock" );
  305.                 p_sys->i_frontend_timeout = 0;
  306.                 /* Read some statistics */
  307.                 if( !FrontendGetStatistic( p_access, &stat ) )
  308.                 {
  309.                     if( stat.i_ber >= 0 )
  310.                         msg_Dbg( p_access, "- Bit error rate: %d", stat.i_ber );
  311.                     if( stat.i_signal_strenth >= 0 )
  312.                         msg_Dbg( p_access, "- Signal strength: %d", stat.i_signal_strenth );
  313.                     if( stat.i_snr >= 0 )
  314.                         msg_Dbg( p_access, "- SNR: %d", stat.i_snr );
  315.                 }
  316.             }
  317.             else
  318.             {
  319.                 msg_Dbg( p_access, "frontend has lost lock" );
  320.                 p_sys->i_frontend_timeout = mdate() + FRONTEND_LOCK_TIMEOUT;
  321.             }
  322.             IF_UP( FE_REINIT )
  323.             {
  324.                 /* The frontend was reinited. */
  325.                 msg_Warn( p_access, "reiniting frontend");
  326.                 FrontendSet( p_access );
  327.             }
  328.         }
  329. #undef IF_UP
  330.     }
  331. }
  332. int FrontendGetStatistic( access_t *p_access, frontend_statistic_t *p_stat )
  333. {
  334.     access_sys_t *p_sys = p_access->p_sys;
  335.     frontend_t * p_frontend = p_sys->p_frontend;
  336.     if( (p_frontend->i_last_status & FE_HAS_LOCK) == 0 )
  337.         return VLC_EGENERIC;
  338.     memset( p_stat, 0, sizeof(*p_stat) );
  339.     if( ioctl( p_sys->i_frontend_handle, FE_READ_BER, &p_stat->i_ber ) < 0 )
  340.         p_stat->i_ber = -1;
  341.     if( ioctl( p_sys->i_frontend_handle, FE_READ_SIGNAL_STRENGTH, &p_stat->i_signal_strenth ) < 0 )
  342.         p_stat->i_signal_strenth = -1;
  343.     if( ioctl( p_sys->i_frontend_handle, FE_READ_SNR, &p_stat->i_snr ) < 0 )
  344.         p_stat->i_snr = -1;
  345.     return VLC_SUCCESS;
  346. }
  347. void FrontendGetStatus( access_t *p_access, frontend_status_t *p_status )
  348. {
  349.     access_sys_t *p_sys = p_access->p_sys;
  350.     frontend_t * p_frontend = p_sys->p_frontend;
  351.     p_status->b_has_signal = (p_frontend->i_last_status & FE_HAS_SIGNAL) != 0;
  352.     p_status->b_has_carrier = (p_frontend->i_last_status & FE_HAS_CARRIER) != 0;
  353.     p_status->b_has_lock = (p_frontend->i_last_status & FE_HAS_LOCK) != 0;
  354. }
  355. static int ScanParametersDvbC( access_t *p_access, scan_parameter_t *p_scan )
  356. {
  357.     const frontend_t *p_frontend = p_access->p_sys->p_frontend;
  358.     memset( p_scan, 0, sizeof(*p_scan) );
  359.     p_scan->type = SCAN_DVB_C;
  360.     p_scan->b_exhaustive = false;
  361.     /* */
  362.     p_scan->frequency.i_min = p_frontend->info.frequency_min;
  363.     p_scan->frequency.i_max = p_frontend->info.frequency_max;
  364.     p_scan->frequency.i_step = p_frontend->info.frequency_stepsize
  365.         ? p_frontend->info.frequency_stepsize : 166667;
  366.     p_scan->frequency.i_count = (p_scan->frequency.i_max-p_scan->frequency.i_min)/p_scan->frequency.i_step;
  367.     /* */
  368.     p_scan->bandwidth.i_min  = 6;
  369.     p_scan->bandwidth.i_max  = 8;
  370.     p_scan->bandwidth.i_step = 1;
  371.     p_scan->bandwidth.i_count = 3;
  372.     return VLC_SUCCESS;
  373. }
  374. static int ScanParametersDvbT( access_t *p_access, scan_parameter_t *p_scan )
  375. {
  376.     const frontend_t *p_frontend = p_access->p_sys->p_frontend;
  377.     memset( p_scan, 0, sizeof(*p_scan) );
  378.     p_scan->type = SCAN_DVB_T;
  379.     p_scan->b_exhaustive = false;
  380.     /* */
  381.     p_scan->frequency.i_min = p_frontend->info.frequency_min;
  382.     p_scan->frequency.i_max = p_frontend->info.frequency_max;
  383.     p_scan->frequency.i_step = p_frontend->info.frequency_stepsize
  384.         ? p_frontend->info.frequency_stepsize : 166667;
  385.     p_scan->frequency.i_count = (p_scan->frequency.i_max-p_scan->frequency.i_min)/p_scan->frequency.i_step;
  386.     /* */
  387.     p_scan->bandwidth.i_min  = 6;
  388.     p_scan->bandwidth.i_max  = 8;
  389.     p_scan->bandwidth.i_step = 1;
  390.     p_scan->bandwidth.i_count = 3;
  391.     return VLC_SUCCESS;
  392. }
  393. int  FrontendGetScanParameter( access_t *p_access, scan_parameter_t *p_scan )
  394. {
  395.     access_sys_t *p_sys = p_access->p_sys;
  396.     const frontend_t *p_frontend = p_sys->p_frontend;
  397.     if( p_frontend->info.type == FE_OFDM )  // DVB-T
  398.         return ScanParametersDvbT( p_access, p_scan );
  399.     else if( p_frontend->info.type == FE_QAM )  // DVB-C
  400.         return ScanParametersDvbC( p_access, p_scan );
  401.     msg_Err( p_access, "Frontend type not supported for scanning" );
  402.     return VLC_EGENERIC;
  403. }
  404. #ifdef ENABLE_HTTPD
  405. /*****************************************************************************
  406.  * FrontendStatus : Read frontend status
  407.  *****************************************************************************/
  408. void FrontendStatus( access_t *p_access )
  409. {
  410.     access_sys_t *p_sys = p_access->p_sys;
  411.     frontend_t *p_frontend = p_sys->p_frontend;
  412.     char *p = p_sys->psz_frontend_info = malloc( 10000 );
  413.     fe_status_t i_status;
  414.     int i_ret;
  415.     /* Determine type of frontend */
  416.     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_GET_INFO,
  417.                         &p_frontend->info )) < 0 )
  418.     {
  419.         char buf[1000];
  420.         strerror_r( errno, buf, sizeof( buf ) );
  421.         p += sprintf( p, "ioctl FE_GET_INFO failed (%d) %sn", i_ret, buf );
  422.         goto out;
  423.     }
  424.     /* Print out frontend capabilities. */
  425.     p += sprintf( p, "<table border=1><tr><th>name</th><td>%s</td></tr>n",
  426.                   p_frontend->info.name );
  427.     switch( p_frontend->info.type )
  428.     {
  429.         case FE_QPSK:
  430.             p += sprintf( p, "<tr><th>type</th><td>QPSK (DVB-S)</td></tr>n" );
  431.             break;
  432.         case FE_QAM:
  433.             p += sprintf( p, "<tr><th>type</th><td>QAM (DVB-C)</td></tr>n" );
  434.             break;
  435.         case FE_OFDM:
  436.             p += sprintf( p, "<tr><th>type</th><td>OFDM (DVB-T)</td></tr>n" );
  437.             break;
  438. #if 0 /* DVB_API_VERSION == 3 */
  439.         case FE_MEMORY:
  440.             p += sprintf( p, "<tr><th>type</th><td>MEMORY</td></tr>n" );
  441.             break;
  442.         case FE_NET:
  443.             p += sprintf( p, "<tr><th>type</th><td>NETWORK</td></tr>n" );
  444.             break;
  445. #endif
  446.         default:
  447.             p += sprintf( p, "<tr><th>type</th><td>UNKNOWN (%d)</td></tr>n",
  448.                           p_frontend->info.type );
  449.             goto out;
  450.     }
  451. #define CHECK_INFO( x )                                                     
  452.     p += sprintf( p,                                                        
  453.                   "<tr><th>" STRINGIFY(x) "</th><td>%u</td></tr>n",        
  454.                   p_frontend->info.x );
  455.     CHECK_INFO( frequency_min );
  456.     CHECK_INFO( frequency_max );
  457.     CHECK_INFO( frequency_stepsize );
  458.     CHECK_INFO( frequency_tolerance );
  459.     CHECK_INFO( symbol_rate_min );
  460.     CHECK_INFO( symbol_rate_max );
  461.     CHECK_INFO( symbol_rate_tolerance );
  462.     CHECK_INFO( notifier_delay );
  463. #undef CHECK_INFO
  464.     p += sprintf( p, "</table><p>Frontend capability list:n<table border=1>" );
  465. #define CHECK_CAPS( x )                                                     
  466.     if ( p_frontend->info.caps & (FE_##x) )                                 
  467.         p += sprintf( p, "<tr><td>" STRINGIFY(x) "</td></tr>n" );
  468.     CHECK_CAPS( IS_STUPID );
  469.     CHECK_CAPS( CAN_INVERSION_AUTO );
  470.     CHECK_CAPS( CAN_FEC_1_2 );
  471.     CHECK_CAPS( CAN_FEC_2_3 );
  472.     CHECK_CAPS( CAN_FEC_3_4 );
  473.     CHECK_CAPS( CAN_FEC_4_5 );
  474.     CHECK_CAPS( CAN_FEC_5_6 );
  475.     CHECK_CAPS( CAN_FEC_6_7 );
  476.     CHECK_CAPS( CAN_FEC_7_8 );
  477.     CHECK_CAPS( CAN_FEC_8_9 );
  478.     CHECK_CAPS( CAN_FEC_AUTO );
  479.     CHECK_CAPS( CAN_QPSK );
  480.     CHECK_CAPS( CAN_QAM_16 );
  481.     CHECK_CAPS( CAN_QAM_32 );
  482.     CHECK_CAPS( CAN_QAM_64 );
  483.     CHECK_CAPS( CAN_QAM_128 );
  484.     CHECK_CAPS( CAN_QAM_256 );
  485.     CHECK_CAPS( CAN_QAM_AUTO );
  486.     CHECK_CAPS( CAN_TRANSMISSION_MODE_AUTO );
  487.     CHECK_CAPS( CAN_BANDWIDTH_AUTO );
  488.     CHECK_CAPS( CAN_GUARD_INTERVAL_AUTO );
  489.     CHECK_CAPS( CAN_HIERARCHY_AUTO );
  490.     CHECK_CAPS( CAN_MUTE_TS );
  491.     CHECK_CAPS( CAN_RECOVER );
  492. #if 0 /* Disabled because of older distributions */
  493.     CHECK_CAPS( CAN_CLEAN_SETUP );
  494. #endif
  495. #undef CHECK_CAPS
  496.     p += sprintf( p, "</table><p>Current frontend status:n<table border=1>" );
  497.     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_READ_STATUS, &i_status ))
  498.            < 0 )
  499.     {
  500.         char buf[1000];
  501.         strerror_r( errno, buf, sizeof( buf ) );
  502.         p += sprintf( p, "</table>ioctl FE_READ_STATUS failed (%d) %sn",
  503.                       i_ret, buf );
  504.         goto out;
  505.     }
  506. #define CHECK_STATUS( x )                                                   
  507.     if ( i_status & (FE_##x) )                                              
  508.         p += sprintf( p, "<tr><td>" STRINGIFY(x) "</td></tr>n" );
  509.     CHECK_STATUS( HAS_SIGNAL );
  510.     CHECK_STATUS( HAS_CARRIER );
  511.     CHECK_STATUS( HAS_VITERBI );
  512.     CHECK_STATUS( HAS_SYNC );
  513.     CHECK_STATUS( HAS_LOCK );
  514.     CHECK_STATUS( REINIT );
  515.     if( i_status == 0 )
  516.         p += sprintf( p, "<tr><td>Tuning failed</td></tr>n" );
  517. #undef CHECK_STATUS
  518.     if ( i_status & FE_HAS_LOCK )
  519.     {
  520.         int32_t i_value;
  521.         p += sprintf( p, "</table><p>Signal status:n<table border=1>" );
  522.         if( ioctl( p_sys->i_frontend_handle, FE_READ_BER, &i_value ) >= 0 )
  523.             p += sprintf( p, "<tr><th>Bit error rate</th><td>%d</td></tr>n",
  524.                           i_value );
  525.         if( ioctl( p_sys->i_frontend_handle, FE_READ_SIGNAL_STRENGTH,
  526.                    &i_value ) >= 0 )
  527.             p += sprintf( p, "<tr><th>Signal strength</th><td>%d</td></tr>n",
  528.                           i_value );
  529.         if( ioctl( p_sys->i_frontend_handle, FE_READ_SNR, &i_value ) >= 0 )
  530.             p += sprintf( p, "<tr><th>SNR</th><td>%d</td></tr>n",
  531.                           i_value );
  532.     }
  533.     p += sprintf( p, "</table>" );
  534. out:
  535.     vlc_mutex_lock( &p_sys->httpd_mutex );
  536.     p_sys->b_request_frontend_info = false;
  537.     vlc_cond_signal( &p_sys->httpd_cond );
  538.     vlc_mutex_unlock( &p_sys->httpd_mutex );
  539. }
  540. #endif
  541. /*****************************************************************************
  542.  * FrontendInfo : Return information about given frontend
  543.  *****************************************************************************/
  544. static int FrontendInfo( access_t *p_access )
  545. {
  546.     access_sys_t *p_sys = p_access->p_sys;
  547.     frontend_t *p_frontend = p_sys->p_frontend;
  548.     int i_ret;
  549.     /* Determine type of frontend */
  550.     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_GET_INFO,
  551.                         &p_frontend->info )) < 0 )
  552.     {
  553.         msg_Err( p_access, "ioctl FE_GET_INFO failed (%d): %m", i_ret );
  554.         return VLC_EGENERIC;
  555.     }
  556.     /* Print out frontend capabilities. */
  557.     msg_Dbg(p_access, "Frontend Info:" );
  558.     msg_Dbg(p_access, "  name = %s", p_frontend->info.name );
  559.     switch( p_frontend->info.type )
  560.     {
  561.         case FE_QPSK:
  562.             msg_Dbg( p_access, "  type = QPSK (DVB-S)" );
  563.             break;
  564.         case FE_QAM:
  565.             msg_Dbg( p_access, "  type = QAM (DVB-C)" );
  566.             break;
  567.         case FE_OFDM:
  568.             msg_Dbg( p_access, "  type = OFDM (DVB-T)" );
  569.             break;
  570.         case FE_ATSC:
  571.             msg_Dbg( p_access, "  type = ATSC (USA)" );
  572.             break;
  573. #if 0 /* DVB_API_VERSION == 3 */
  574.         case FE_MEMORY:
  575.             msg_Dbg(p_access, "  type = MEMORY" );
  576.             break;
  577.         case FE_NET:
  578.             msg_Dbg(p_access, "  type = NETWORK" );
  579.             break;
  580. #endif
  581.         default:
  582.             msg_Err( p_access, "  unknown frontend type (%d)",
  583.                      p_frontend->info.type );
  584.             return VLC_EGENERIC;
  585.     }
  586.     msg_Dbg(p_access, "  frequency_min = %u (kHz)",
  587.             p_frontend->info.frequency_min);
  588.     msg_Dbg(p_access, "  frequency_max = %u (kHz)",
  589.             p_frontend->info.frequency_max);
  590.     msg_Dbg(p_access, "  frequency_stepsize = %u",
  591.             p_frontend->info.frequency_stepsize);
  592.     msg_Dbg(p_access, "  frequency_tolerance = %u",
  593.             p_frontend->info.frequency_tolerance);
  594.     msg_Dbg(p_access, "  symbol_rate_min = %u (kHz)",
  595.             p_frontend->info.symbol_rate_min);
  596.     msg_Dbg(p_access, "  symbol_rate_max = %u (kHz)",
  597.             p_frontend->info.symbol_rate_max);
  598.     msg_Dbg(p_access, "  symbol_rate_tolerance (ppm) = %u",
  599.             p_frontend->info.symbol_rate_tolerance);
  600.     msg_Dbg(p_access, "  notifier_delay (ms) = %u",
  601.             p_frontend->info.notifier_delay );
  602.     msg_Dbg(p_access, "Frontend Info capability list:");
  603.     if( p_frontend->info.caps & FE_IS_STUPID)
  604.         msg_Dbg(p_access, "  no capabilities - frontend is stupid!");
  605.     if( p_frontend->info.caps & FE_CAN_INVERSION_AUTO)
  606.         msg_Dbg(p_access, "  inversion auto");
  607.     if( p_frontend->info.caps & FE_CAN_FEC_1_2)
  608.         msg_Dbg(p_access, "  forward error correction 1/2");
  609.     if( p_frontend->info.caps & FE_CAN_FEC_2_3)
  610.         msg_Dbg(p_access, "  forward error correction 2/3");
  611.     if( p_frontend->info.caps & FE_CAN_FEC_3_4)
  612.         msg_Dbg(p_access, "  forward error correction 3/4");
  613.     if( p_frontend->info.caps & FE_CAN_FEC_4_5)
  614.         msg_Dbg(p_access, "  forward error correction 4/5");
  615.     if( p_frontend->info.caps & FE_CAN_FEC_5_6)
  616.         msg_Dbg(p_access, "  forward error correction 5/6");
  617.     if( p_frontend->info.caps & FE_CAN_FEC_6_7)
  618.         msg_Dbg(p_access, "  forward error correction 6/7");
  619.     if( p_frontend->info.caps & FE_CAN_FEC_7_8)
  620.         msg_Dbg(p_access, "  forward error correction 7/8");
  621.     if( p_frontend->info.caps & FE_CAN_FEC_8_9)
  622.         msg_Dbg(p_access, "  forward error correction 8/9");
  623.     if( p_frontend->info.caps & FE_CAN_FEC_AUTO)
  624.         msg_Dbg(p_access, "  forward error correction auto");
  625.     if( p_frontend->info.caps & FE_CAN_QPSK)
  626.         msg_Dbg(p_access, "  card can do QPSK");
  627.     if( p_frontend->info.caps & FE_CAN_QAM_16)
  628.         msg_Dbg(p_access, "  card can do QAM 16");
  629.     if( p_frontend->info.caps & FE_CAN_QAM_32)
  630.         msg_Dbg(p_access, "  card can do QAM 32");
  631.     if( p_frontend->info.caps & FE_CAN_QAM_64)
  632.         msg_Dbg(p_access, "  card can do QAM 64");
  633.     if( p_frontend->info.caps & FE_CAN_QAM_128)
  634.         msg_Dbg(p_access, "  card can do QAM 128");
  635.     if( p_frontend->info.caps & FE_CAN_QAM_256)
  636.         msg_Dbg(p_access, "  card can do QAM 256");
  637.     if( p_frontend->info.caps & FE_CAN_QAM_AUTO)
  638.         msg_Dbg(p_access, "  card can do QAM auto");
  639.     if( p_frontend->info.caps & FE_CAN_TRANSMISSION_MODE_AUTO)
  640.         msg_Dbg(p_access, "  transmission mode auto");
  641.     if( p_frontend->info.caps & FE_CAN_BANDWIDTH_AUTO)
  642.         msg_Dbg(p_access, "  bandwidth mode auto");
  643.     if( p_frontend->info.caps & FE_CAN_GUARD_INTERVAL_AUTO)
  644.         msg_Dbg(p_access, "  guard interval mode auto");
  645.     if( p_frontend->info.caps & FE_CAN_HIERARCHY_AUTO)
  646.         msg_Dbg(p_access, "  hierarchy mode auto");
  647.     if( p_frontend->info.caps & FE_CAN_MUTE_TS)
  648.         msg_Dbg(p_access, "  card can mute TS");
  649.     if( p_frontend->info.caps & FE_CAN_RECOVER)
  650.         msg_Dbg(p_access, "  card can recover from a cable unplug");
  651.     if( p_frontend->info.caps & FE_CAN_8VSB)
  652.         msg_Dbg(p_access, "  card can do 8vsb");
  653.     if( p_frontend->info.caps & FE_CAN_16VSB)
  654.         msg_Dbg(p_access, "  card can do 16vsb");
  655.     msg_Dbg(p_access, "End of capability list");
  656.     return VLC_SUCCESS;
  657. }
  658. /*****************************************************************************
  659.  * Decoding the DVB parameters (common)
  660.  *****************************************************************************/
  661. static fe_spectral_inversion_t DecodeInversion( access_t *p_access )
  662. {
  663.     vlc_value_t         val;
  664.     fe_spectral_inversion_t fe_inversion = 0;
  665.     var_Get( p_access, "dvb-inversion", &val );
  666.     msg_Dbg( p_access, "using inversion=%d", val.i_int );
  667.     switch( val.i_int )
  668.     {
  669.         case 0: fe_inversion = INVERSION_OFF; break;
  670.         case 1: fe_inversion = INVERSION_ON; break;
  671.         case 2: fe_inversion = INVERSION_AUTO; break;
  672.         default:
  673.             msg_Dbg( p_access, "dvb has inversion not set, using auto");
  674.             fe_inversion = INVERSION_AUTO;
  675.             break;
  676.     }
  677.     return fe_inversion;
  678. }
  679. static fe_code_rate_t DecodeFEC( access_t *p_access, int i_val )
  680. {
  681.     fe_code_rate_t      fe_fec = FEC_NONE;
  682.     msg_Dbg( p_access, "using fec=%d", i_val );
  683.     switch( i_val )
  684.     {
  685.         case 0: fe_fec = FEC_NONE; break;
  686.         case 1: fe_fec = FEC_1_2; break;
  687.         case 2: fe_fec = FEC_2_3; break;
  688.         case 3: fe_fec = FEC_3_4; break;
  689.         case 4: fe_fec = FEC_4_5; break;
  690.         case 5: fe_fec = FEC_5_6; break;
  691.         case 6: fe_fec = FEC_6_7; break;
  692.         case 7: fe_fec = FEC_7_8; break;
  693.         case 8: fe_fec = FEC_8_9; break;
  694.         case 9: fe_fec = FEC_AUTO; break;
  695.         default:
  696.             /* cannot happen */
  697.             fe_fec = FEC_NONE;
  698.             msg_Err( p_access, "argument has invalid FEC (%d)", i_val);
  699.             break;
  700.     }
  701.     return fe_fec;
  702. }
  703. static fe_modulation_t DecodeModulationQAM( access_t *p_access )
  704. {
  705.     switch( var_GetInteger( p_access, "dvb-modulation" ) )
  706.     {
  707.         case 0:     return QAM_AUTO;
  708.         case 16:    return QAM_16;
  709.         case 32:    return QAM_32;
  710.         case 64:    return QAM_64;
  711.         case 128:   return QAM_128;
  712.         case 256:   return QAM_256;
  713.         default:
  714.             msg_Dbg( p_access, "QAM modulation not set, using auto");
  715.             return QAM_AUTO;
  716.     }
  717. }
  718. static fe_modulation_t DecodeModulationOFDM( access_t *p_access )
  719. {
  720.     switch( var_GetInteger( p_access, "dvb-modulation" ) )
  721.     {
  722.         case -1:    return QPSK;
  723.         case 0:     return QAM_AUTO;
  724.         case 16:    return QAM_16;
  725.         case 32:    return QAM_32;
  726.         case 64:    return QAM_64;
  727.         case 128:   return QAM_128;
  728.         case 256:   return QAM_256;
  729.         default:
  730.             msg_Dbg( p_access, "OFDM modulation not set, using QAM auto");
  731.             return QAM_AUTO;
  732.     }
  733. }
  734. static fe_modulation_t DecodeModulationATSC( access_t *p_access )
  735. {
  736.     switch( var_GetInteger( p_access, "dvb-modulation" ) )
  737.     {
  738.         case 0:     return QAM_AUTO;
  739.         case 8:     return VSB_8;
  740.         case 16:    return VSB_16;
  741.         case 32:    return QAM_32;
  742.         case 64:    return QAM_64;
  743.         case 128:   return QAM_128;
  744.         case 256:   return QAM_256;
  745.         default:
  746.             msg_Dbg( p_access, "ATSC modulation not set, using VSB 8");
  747.             return VSB_8;
  748.     }
  749. }
  750. /*****************************************************************************
  751.  * FrontendSetQPSK : controls the FE device
  752.  *****************************************************************************/
  753. static fe_sec_voltage_t DecodeVoltage( access_t *p_access )
  754. {
  755.     vlc_value_t         val;
  756.     fe_sec_voltage_t    fe_voltage;
  757.     var_Get( p_access, "dvb-voltage", &val );
  758.     msg_Dbg( p_access, "using voltage=%d", val.i_int );
  759.     switch( val.i_int )
  760.     {
  761.         case 0: fe_voltage = SEC_VOLTAGE_OFF; break;
  762.         case 13: fe_voltage = SEC_VOLTAGE_13; break;
  763.         case 18: fe_voltage = SEC_VOLTAGE_18; break;
  764.         default:
  765.             fe_voltage = SEC_VOLTAGE_OFF;
  766.             msg_Err( p_access, "argument has invalid voltage (%d)", val.i_int );
  767.             break;
  768.     }
  769.     return fe_voltage;
  770. }
  771. static fe_sec_tone_mode_t DecodeTone( access_t *p_access )
  772. {
  773.     vlc_value_t         val;
  774.     fe_sec_tone_mode_t  fe_tone;
  775.     var_Get( p_access, "dvb-tone", &val );
  776.     msg_Dbg( p_access, "using tone=%d", val.i_int );
  777.     switch( val.i_int )
  778.     {
  779.         case 0: fe_tone = SEC_TONE_OFF; break;
  780.         case 1: fe_tone = SEC_TONE_ON; break;
  781.         default:
  782.             fe_tone = SEC_TONE_OFF;
  783.             msg_Err( p_access, "argument has invalid tone mode (%d)", val.i_int);
  784.             break;
  785.     }
  786.     return fe_tone;
  787. }
  788. struct diseqc_cmd_t
  789. {
  790.     struct dvb_diseqc_master_cmd cmd;
  791.     uint32_t wait;
  792. };
  793. static int DoDiseqc( access_t *p_access )
  794. {
  795.     access_sys_t *p_sys = p_access->p_sys;
  796.     vlc_value_t val;
  797.     int i_frequency, i_lnb_slof;
  798.     fe_sec_voltage_t fe_voltage;
  799.     fe_sec_tone_mode_t fe_tone;
  800.     int i_err;
  801.     var_Get( p_access, "dvb-frequency", &val );
  802.     i_frequency = val.i_int;
  803.     var_Get( p_access, "dvb-lnb-slof", &val );
  804.     i_lnb_slof = val.i_int;
  805.     var_Get( p_access, "dvb-tone", &val );
  806.     if( val.i_int == -1 /* auto */ )
  807.     {
  808.         if( i_frequency >= i_lnb_slof )
  809.             val.i_int = 1;
  810.         else
  811.             val.i_int = 0;
  812.         var_Set( p_access, "dvb-tone", val );
  813.     }
  814.     fe_voltage = DecodeVoltage( p_access );
  815.     fe_tone = DecodeTone( p_access );
  816.     /* Switch off continuous tone. */
  817.     if( (i_err = ioctl( p_sys->i_frontend_handle, FE_SET_TONE, SEC_TONE_OFF )) < 0 )
  818.     {
  819.         msg_Err( p_access, "ioctl FE_SET_TONE failed, tone=%s (%d) %m",
  820.                  fe_tone == SEC_TONE_ON ? "on" : "off", i_err );
  821.         return i_err;
  822.     }
  823.     /* Configure LNB voltage. */
  824.     if( (i_err = ioctl( p_sys->i_frontend_handle, FE_SET_VOLTAGE, fe_voltage )) < 0 )
  825.     {
  826.         msg_Err( p_access, "ioctl FE_SET_VOLTAGE failed, voltage=%d (%d) %m",
  827.                  fe_voltage, i_err );
  828.         return i_err;
  829.     }
  830.     var_Get( p_access, "dvb-high-voltage", &val );
  831.     if( (i_err = ioctl( p_sys->i_frontend_handle, FE_ENABLE_HIGH_LNB_VOLTAGE,
  832.                         val.b_bool )) < 0 && val.b_bool )
  833.     {
  834.         msg_Err( p_access,
  835.                  "ioctl FE_ENABLE_HIGH_LNB_VOLTAGE failed, val=%d (%d) %m",
  836.                  val.b_bool, i_err );
  837.     }
  838.     /* Wait for at least 15 ms. */
  839.     msleep(15000);
  840.     var_Get( p_access, "dvb-satno", &val );
  841.     if( val.i_int > 0 && val.i_int < 5 )
  842.     {
  843.         /* digital satellite equipment control,
  844.          * specification is available from http://www.eutelsat.com/
  845.          */
  846.         /* 1.x compatible equipment */
  847.         struct diseqc_cmd_t cmd =  { {{0xe0, 0x10, 0x38, 0xf0, 0x00, 0x00}, 4}, 0 };
  848.         /* param: high nibble: reset bits, low nibble set bits,
  849.          * bits are: option, position, polarization, band
  850.          */
  851.         cmd.cmd.msg[3] = 0xf0 /* reset bits */
  852.                           | (((val.i_int - 1) * 4) & 0xc)
  853.                           | (fe_voltage == SEC_VOLTAGE_13 ? 0 : 2)
  854.                           | (fe_tone == SEC_TONE_ON ? 1 : 0);
  855.         if( (i_err = ioctl( p_sys->i_frontend_handle, FE_DISEQC_SEND_MASTER_CMD,
  856.                            &cmd.cmd )) < 0 )
  857.         {
  858.             msg_Err( p_access, "ioctl FE_SEND_MASTER_CMD failed (%d) %m",
  859.                      i_err );
  860.             return i_err;
  861.         }
  862.         msleep(15000 + cmd.wait * 1000);
  863.         /* A or B simple diseqc ("diseqc-compatible") */
  864.         if( (i_err = ioctl( p_sys->i_frontend_handle, FE_DISEQC_SEND_BURST,
  865.                       ((val.i_int - 1) % 2) ? SEC_MINI_B : SEC_MINI_A )) < 0 )
  866.         {
  867.             msg_Err( p_access, "ioctl FE_SEND_BURST failed (%d) %m",
  868.                      i_err );
  869.             return i_err;
  870.         }
  871.         msleep(15000);
  872.     }
  873.     if( (i_err = ioctl( p_sys->i_frontend_handle, FE_SET_TONE, fe_tone )) < 0 )
  874.     {
  875.         msg_Err( p_access, "ioctl FE_SET_TONE failed, tone=%s (%d) %m",
  876.                  fe_tone == SEC_TONE_ON ? "on" : "off", i_err );
  877.         return i_err;
  878.     }
  879.     msleep(50000);
  880.     return 0;
  881. }
  882. static int FrontendSetQPSK( access_t *p_access )
  883. {
  884.     access_sys_t *p_sys = p_access->p_sys;
  885.     struct dvb_frontend_parameters fep;
  886.     int i_ret;
  887.     vlc_value_t val;
  888.     int i_frequency, i_lnb_slof = 0, i_lnb_lof1, i_lnb_lof2 = 0;
  889.     /* Prepare the fep structure */
  890.     var_Get( p_access, "dvb-frequency", &val );
  891.     i_frequency = val.i_int;
  892.     var_Get( p_access, "dvb-lnb-lof1", &val );
  893.     if ( val.i_int == 0 )
  894.     {
  895.         /* Automatic mode. */
  896.         if ( i_frequency >= 950000 && i_frequency <= 2150000 )
  897.         {
  898.             msg_Dbg( p_access, "frequency %d is in IF-band", i_frequency );
  899.             i_lnb_lof1 = 0;
  900.         }
  901.         else if ( i_frequency >= 2500000 && i_frequency <= 2700000 )
  902.         {
  903.             msg_Dbg( p_access, "frequency %d is in S-band", i_frequency );
  904.             i_lnb_lof1 = 3650000;
  905.         }
  906.         else if ( i_frequency >= 3400000 && i_frequency <= 4200000 )
  907.         {
  908.             msg_Dbg( p_access, "frequency %d is in C-band (lower)",
  909.                      i_frequency );
  910.             i_lnb_lof1 = 5150000;
  911.         }
  912.         else if ( i_frequency >= 4500000 && i_frequency <= 4800000 )
  913.         {
  914.             msg_Dbg( p_access, "frequency %d is in C-band (higher)",
  915.                      i_frequency );
  916.             i_lnb_lof1 = 5950000;
  917.         }
  918.         else if ( i_frequency >= 10700000 && i_frequency <= 13250000 )
  919.         {
  920.             msg_Dbg( p_access, "frequency %d is in Ku-band",
  921.                      i_frequency );
  922.             i_lnb_lof1 = 9750000;
  923.             i_lnb_lof2 = 10600000;
  924.             i_lnb_slof = 11700000;
  925.         }
  926.         else
  927.         {
  928.             msg_Err( p_access, "frequency %d is out of any known band",
  929.                      i_frequency );
  930.             msg_Err( p_access, "specify dvb-lnb-lof1 manually for the local "
  931.                      "oscillator frequency" );
  932.             return VLC_EGENERIC;
  933.         }
  934.         val.i_int = i_lnb_lof1;
  935.         var_Set( p_access, "dvb-lnb-lof1", val );
  936.         val.i_int = i_lnb_lof2;
  937.         var_Set( p_access, "dvb-lnb-lof2", val );
  938.         val.i_int = i_lnb_slof;
  939.         var_Set( p_access, "dvb-lnb-slof", val );
  940.     }
  941.     else
  942.     {
  943.         i_lnb_lof1 = val.i_int;
  944.         var_Get( p_access, "dvb-lnb-lof2", &val );
  945.         i_lnb_lof2 = val.i_int;
  946.         var_Get( p_access, "dvb-lnb-slof", &val );
  947.         i_lnb_slof = val.i_int;
  948.     }
  949.     if( i_lnb_slof && i_frequency >= i_lnb_slof )
  950.     {
  951.         i_frequency -= i_lnb_lof2;
  952.     }
  953.     else
  954.     {
  955.         i_frequency -= i_lnb_lof1;
  956.     }
  957.     fep.frequency = i_frequency >= 0 ? i_frequency : -i_frequency;
  958.     fep.inversion = DecodeInversion( p_access );
  959.     var_Get( p_access, "dvb-srate", &val );
  960.     fep.u.qpsk.symbol_rate = val.i_int;
  961.     var_Get( p_access, "dvb-fec", &val );
  962.     fep.u.qpsk.fec_inner = DecodeFEC( p_access, val.i_int );
  963.     if( DoDiseqc( p_access ) < 0 )
  964.     {
  965.         return VLC_EGENERIC;
  966.     }
  967.     /* Empty the event queue */
  968.     for( ; ; )
  969.     {
  970.         struct dvb_frontend_event event;
  971.         if ( ioctl( p_sys->i_frontend_handle, FE_GET_EVENT, &event ) < 0
  972.               && errno == EWOULDBLOCK )
  973.             break;
  974.     }
  975.     /* Now send it all to the frontend device */
  976.     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_SET_FRONTEND, &fep )) < 0 )
  977.     {
  978.         msg_Err( p_access, "DVB-S: setting frontend failed (%d) %m", i_ret );
  979.         return VLC_EGENERIC;
  980.     }
  981.     return VLC_SUCCESS;
  982. }
  983. /*****************************************************************************
  984.  * FrontendSetQAM : controls the FE device
  985.  *****************************************************************************/
  986. static int FrontendSetQAM( access_t *p_access )
  987. {
  988.     access_sys_t *p_sys = p_access->p_sys;
  989.     struct dvb_frontend_parameters fep;
  990.     vlc_value_t val;
  991.     int i_ret;
  992.     /* Prepare the fep structure */
  993.     var_Get( p_access, "dvb-frequency", &val );
  994.     fep.frequency = val.i_int;
  995.     fep.inversion = DecodeInversion( p_access );
  996.     var_Get( p_access, "dvb-srate", &val );
  997.     fep.u.qam.symbol_rate = val.i_int;
  998.     var_Get( p_access, "dvb-fec", &val );
  999.     fep.u.qam.fec_inner = DecodeFEC( p_access, val.i_int );
  1000.     fep.u.qam.modulation = DecodeModulationQAM( p_access );
  1001.     /* Empty the event queue */
  1002.     for( ; ; )
  1003.     {
  1004.         struct dvb_frontend_event event;
  1005.         if ( ioctl( p_sys->i_frontend_handle, FE_GET_EVENT, &event ) < 0
  1006.               && errno == EWOULDBLOCK )
  1007.             break;
  1008.     }
  1009.     /* Now send it all to the frontend device */
  1010.     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_SET_FRONTEND, &fep )) < 0 )
  1011.     {
  1012.         msg_Err( p_access, "DVB-C: setting frontend failed (%d): %m", i_ret );
  1013.         return VLC_EGENERIC;
  1014.     }
  1015.     return VLC_SUCCESS;
  1016. }
  1017. /*****************************************************************************
  1018.  * FrontendSetOFDM : controls the FE device
  1019.  *****************************************************************************/
  1020. static fe_bandwidth_t DecodeBandwidth( access_t *p_access )
  1021. {
  1022.     vlc_value_t         val;
  1023.     fe_bandwidth_t      fe_bandwidth = 0;
  1024.     var_Get( p_access, "dvb-bandwidth", &val );
  1025.     msg_Dbg( p_access, "using bandwidth=%d", val.i_int );
  1026.     switch( val.i_int )
  1027.     {
  1028.         case 0: fe_bandwidth = BANDWIDTH_AUTO; break;
  1029.         case 6: fe_bandwidth = BANDWIDTH_6_MHZ; break;
  1030.         case 7: fe_bandwidth = BANDWIDTH_7_MHZ; break;
  1031.         case 8: fe_bandwidth = BANDWIDTH_8_MHZ; break;
  1032.         default:
  1033.             msg_Dbg( p_access, "terrestrial dvb has bandwidth not set, using auto" );
  1034.             fe_bandwidth = BANDWIDTH_AUTO;
  1035.             break;
  1036.     }
  1037.     return fe_bandwidth;
  1038. }
  1039. static fe_transmit_mode_t DecodeTransmission( access_t *p_access )
  1040. {
  1041.     vlc_value_t         val;
  1042.     fe_transmit_mode_t  fe_transmission = 0;
  1043.     var_Get( p_access, "dvb-transmission", &val );
  1044.     msg_Dbg( p_access, "using transmission=%d", val.i_int );
  1045.     switch( val.i_int )
  1046.     {
  1047.         case 0: fe_transmission = TRANSMISSION_MODE_AUTO; break;
  1048.         case 2: fe_transmission = TRANSMISSION_MODE_2K; break;
  1049.         case 8: fe_transmission = TRANSMISSION_MODE_8K; break;
  1050.         default:
  1051.             msg_Dbg( p_access, "terrestrial dvb has transmission mode not set, using auto");
  1052.             fe_transmission = TRANSMISSION_MODE_AUTO;
  1053.             break;
  1054.     }
  1055.     return fe_transmission;
  1056. }
  1057. static fe_guard_interval_t DecodeGuardInterval( access_t *p_access )
  1058. {
  1059.     vlc_value_t         val;
  1060.     fe_guard_interval_t fe_guard = 0;
  1061.     var_Get( p_access, "dvb-guard", &val );
  1062.     msg_Dbg( p_access, "using guard=%d", val.i_int );
  1063.     switch( val.i_int )
  1064.     {
  1065.         case 0: fe_guard = GUARD_INTERVAL_AUTO; break;
  1066.         case 4: fe_guard = GUARD_INTERVAL_1_4; break;
  1067.         case 8: fe_guard = GUARD_INTERVAL_1_8; break;
  1068.         case 16: fe_guard = GUARD_INTERVAL_1_16; break;
  1069.         case 32: fe_guard = GUARD_INTERVAL_1_32; break;
  1070.         default:
  1071.             msg_Dbg( p_access, "terrestrial dvb has guard interval not set, using auto");
  1072.             fe_guard = GUARD_INTERVAL_AUTO;
  1073.             break;
  1074.     }
  1075.     return fe_guard;
  1076. }
  1077. static fe_hierarchy_t DecodeHierarchy( access_t *p_access )
  1078. {
  1079.     vlc_value_t         val;
  1080.     fe_hierarchy_t      fe_hierarchy = 0;
  1081.     var_Get( p_access, "dvb-hierarchy", &val );
  1082.     msg_Dbg( p_access, "using hierarchy=%d", val.i_int );
  1083.     switch( val.i_int )
  1084.     {
  1085.         case -1: fe_hierarchy = HIERARCHY_NONE; break;
  1086.         case 0: fe_hierarchy = HIERARCHY_AUTO; break;
  1087.         case 1: fe_hierarchy = HIERARCHY_1; break;
  1088.         case 2: fe_hierarchy = HIERARCHY_2; break;
  1089.         case 4: fe_hierarchy = HIERARCHY_4; break;
  1090.         default:
  1091.             msg_Dbg( p_access, "terrestrial dvb has hierarchy not set, using auto");
  1092.             fe_hierarchy = HIERARCHY_AUTO;
  1093.             break;
  1094.     }
  1095.     return fe_hierarchy;
  1096. }
  1097. static int FrontendSetOFDM( access_t * p_access )
  1098. {
  1099.     access_sys_t *p_sys = p_access->p_sys;
  1100.     struct dvb_frontend_parameters fep;
  1101.     vlc_value_t val;
  1102.     int ret;
  1103.     /* Prepare the fep structure */
  1104.     var_Get( p_access, "dvb-frequency", &val );
  1105.     fep.frequency = val.i_int;
  1106.     fep.inversion = DecodeInversion( p_access );
  1107.     fep.u.ofdm.bandwidth = DecodeBandwidth( p_access );
  1108.     var_Get( p_access, "dvb-code-rate-hp", &val );
  1109.     fep.u.ofdm.code_rate_HP = DecodeFEC( p_access, val.i_int );
  1110.     var_Get( p_access, "dvb-code-rate-lp", &val );
  1111.     fep.u.ofdm.code_rate_LP = DecodeFEC( p_access, val.i_int );
  1112.     fep.u.ofdm.constellation = DecodeModulationOFDM( p_access );
  1113.     fep.u.ofdm.transmission_mode = DecodeTransmission( p_access );
  1114.     fep.u.ofdm.guard_interval = DecodeGuardInterval( p_access );
  1115.     fep.u.ofdm.hierarchy_information = DecodeHierarchy( p_access );
  1116.     /* Empty the event queue */
  1117.     for( ; ; )
  1118.     {
  1119.         struct dvb_frontend_event event;
  1120.         if ( ioctl( p_sys->i_frontend_handle, FE_GET_EVENT, &event ) < 0
  1121.               && errno == EWOULDBLOCK )
  1122.             break;
  1123.     }
  1124.     /* Now send it all to the frontend device */
  1125.     if( (ret = ioctl( p_sys->i_frontend_handle, FE_SET_FRONTEND, &fep )) < 0 )
  1126.     {
  1127.         msg_Err( p_access, "DVB-T: setting frontend failed (%d): %m", ret );
  1128.         return -1;
  1129.     }
  1130.     return VLC_SUCCESS;
  1131. }
  1132. /*****************************************************************************
  1133.  * FrontendSetATSC : controls the FE device
  1134.  *****************************************************************************/
  1135. static int FrontendSetATSC( access_t *p_access )
  1136. {
  1137.     access_sys_t *p_sys = p_access->p_sys;
  1138.     struct dvb_frontend_parameters fep;
  1139.     vlc_value_t val;
  1140.     int i_ret;
  1141.     /* Prepare the fep structure */
  1142.     var_Get( p_access, "dvb-frequency", &val );
  1143.     fep.frequency = val.i_int;
  1144.     fep.u.vsb.modulation = DecodeModulationATSC( p_access );
  1145.     /* Empty the event queue */
  1146.     for( ; ; )
  1147.     {
  1148.         struct dvb_frontend_event event;
  1149.         if ( ioctl( p_sys->i_frontend_handle, FE_GET_EVENT, &event ) < 0
  1150.               && errno == EWOULDBLOCK )
  1151.             break;
  1152.     }
  1153.     /* Now send it all to the frontend device */
  1154.     if( (i_ret = ioctl( p_sys->i_frontend_handle, FE_SET_FRONTEND, &fep )) < 0 )
  1155.     {
  1156.         msg_Err( p_access, "ATSC: setting frontend failed (%d): %m", i_ret );
  1157.         return VLC_EGENERIC;
  1158.     }
  1159.     return VLC_SUCCESS;
  1160. }
  1161. /*
  1162.  * Demux
  1163.  */
  1164. /*****************************************************************************
  1165.  * DMXSetFilter : controls the demux to add a filter
  1166.  *****************************************************************************/
  1167. int DMXSetFilter( access_t * p_access, int i_pid, int * pi_fd, int i_type )
  1168. {
  1169.     struct dmx_pes_filter_params s_filter_params;
  1170.     int i_ret;
  1171.     unsigned int i_adapter, i_device;
  1172.     char dmx[128];
  1173.     vlc_value_t val;
  1174.     var_Get( p_access, "dvb-adapter", &val );
  1175.     i_adapter = val.i_int;
  1176.     var_Get( p_access, "dvb-device", &val );
  1177.     i_device = val.i_int;
  1178.     if( snprintf( dmx, sizeof(dmx), DMX, i_adapter, i_device )
  1179.             >= (int)sizeof(dmx) )
  1180.     {
  1181.         msg_Err( p_access, "snprintf() truncated string for DMX" );
  1182.         dmx[sizeof(dmx) - 1] = '';
  1183.     }
  1184.     msg_Dbg( p_access, "Opening device %s", dmx );
  1185.     if( (*pi_fd = open(dmx, O_RDWR)) < 0 )
  1186.     {
  1187.         msg_Err( p_access, "DMXSetFilter: opening device failed (%m)" );
  1188.         return VLC_EGENERIC;
  1189.     }
  1190.     /* We fill the DEMUX structure : */
  1191.     s_filter_params.pid     =   i_pid;
  1192.     s_filter_params.input   =   DMX_IN_FRONTEND;
  1193.     s_filter_params.output  =   DMX_OUT_TS_TAP;
  1194.     s_filter_params.flags   =   DMX_IMMEDIATE_START;
  1195.     switch ( i_type )
  1196.     {   /* First device */
  1197.         case 1:
  1198.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_VIDEO0 for PID %d", i_pid);
  1199.             s_filter_params.pes_type = DMX_PES_VIDEO0;
  1200.             break;
  1201.         case 2:
  1202.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_AUDIO0 for PID %d", i_pid);
  1203.             s_filter_params.pes_type = DMX_PES_AUDIO0;
  1204.             break;
  1205.         case 3:
  1206.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_TELETEXT0 for PID %d", i_pid);
  1207.             s_filter_params.pes_type = DMX_PES_TELETEXT0;
  1208.             break;
  1209.         case 4:
  1210.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_SUBTITLE0 for PID %d", i_pid);
  1211.             s_filter_params.pes_type = DMX_PES_SUBTITLE0;
  1212.             break;
  1213.         case 5:
  1214.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_PCR0 for PID %d", i_pid);
  1215.             s_filter_params.pes_type = DMX_PES_PCR0;
  1216.             break;
  1217.         /* Second device */
  1218.         case 6:
  1219.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_VIDEO1 for PID %d", i_pid);
  1220.             s_filter_params.pes_type = DMX_PES_VIDEO1;
  1221.             break;
  1222.         case 7:
  1223.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_AUDIO1 for PID %d", i_pid);
  1224.             s_filter_params.pes_type = DMX_PES_AUDIO1;
  1225.             break;
  1226.         case 8:
  1227.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_TELETEXT1 for PID %d", i_pid);
  1228.             s_filter_params.pes_type = DMX_PES_TELETEXT1;
  1229.             break;
  1230.         case 9:
  1231.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_SUBTITLE1 for PID %d", i_pid);
  1232.             s_filter_params.pes_type = DMX_PES_SUBTITLE1;
  1233.             break;
  1234.         case 10:
  1235.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_PCR1 for PID %d", i_pid);
  1236.             s_filter_params.pes_type = DMX_PES_PCR1;
  1237.             break;
  1238.         /* Third device */
  1239.         case 11:
  1240.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_VIDEO2 for PID %d", i_pid);
  1241.             s_filter_params.pes_type = DMX_PES_VIDEO2;
  1242.             break;
  1243.         case 12:
  1244.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_AUDIO2 for PID %d", i_pid);
  1245.             s_filter_params.pes_type = DMX_PES_AUDIO2;
  1246.             break;
  1247.         case 13:
  1248.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_TELETEXT2 for PID %d", i_pid);
  1249.             s_filter_params.pes_type = DMX_PES_TELETEXT2;
  1250.             break;
  1251.         case 14:
  1252.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_SUBTITLE2 for PID %d", i_pid);
  1253.             s_filter_params.pes_type = DMX_PES_SUBTITLE2;
  1254.             break;
  1255.         case 15:
  1256.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_PCR2 for PID %d", i_pid);
  1257.             s_filter_params.pes_type = DMX_PES_PCR2;
  1258.             break;
  1259.         /* Forth device */
  1260.         case 16:
  1261.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_VIDEO3 for PID %d", i_pid);
  1262.             s_filter_params.pes_type = DMX_PES_VIDEO3;
  1263.             break;
  1264.         case 17:
  1265.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_AUDIO3 for PID %d", i_pid);
  1266.             s_filter_params.pes_type = DMX_PES_AUDIO3;
  1267.             break;
  1268.         case 18:
  1269.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_TELETEXT3 for PID %d", i_pid);
  1270.             s_filter_params.pes_type = DMX_PES_TELETEXT3;
  1271.             break;
  1272.         case 19:
  1273.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_SUBTITLE3 for PID %d", i_pid);
  1274.             s_filter_params.pes_type = DMX_PES_SUBTITLE3;
  1275.             break;
  1276.         case 20:
  1277.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_PCR3 for PID %d", i_pid);
  1278.             s_filter_params.pes_type = DMX_PES_PCR3;
  1279.             break;
  1280.         /* Usually used by Nova cards */
  1281.         case 21:
  1282.         default:
  1283.             msg_Dbg(p_access, "DMXSetFilter: DMX_PES_OTHER for PID %d", i_pid);
  1284.             s_filter_params.pes_type = DMX_PES_OTHER;
  1285.             break;
  1286.     }
  1287.     /* We then give the order to the device : */
  1288.     if( (i_ret = ioctl( *pi_fd, DMX_SET_PES_FILTER, &s_filter_params )) < 0 )
  1289.     {
  1290.         msg_Err( p_access, "DMXSetFilter: failed with %d (%m)", i_ret );
  1291.         return VLC_EGENERIC;
  1292.     }
  1293.     return VLC_SUCCESS;
  1294. }
  1295. /*****************************************************************************
  1296.  * DMXUnsetFilter : removes a filter
  1297.  *****************************************************************************/
  1298. int DMXUnsetFilter( access_t * p_access, int i_fd )
  1299. {
  1300.     int i_ret;
  1301.     if( (i_ret = ioctl( i_fd, DMX_STOP )) < 0 )
  1302.     {
  1303.         msg_Err( p_access, "DMX_STOP failed for demux (%d): %m", i_ret );
  1304.         return i_ret;
  1305.     }
  1306.     msg_Dbg( p_access, "DMXUnsetFilter: closing demux %d", i_fd );
  1307.     close( i_fd );
  1308.     return VLC_SUCCESS;
  1309. }
  1310. /*
  1311.  * DVR device
  1312.  */
  1313. /*****************************************************************************
  1314.  * DVROpen :
  1315.  *****************************************************************************/
  1316. int DVROpen( access_t * p_access )
  1317. {
  1318.     access_sys_t *p_sys = p_access->p_sys;
  1319.     unsigned int i_adapter, i_device;
  1320.     char dvr[128];
  1321.     vlc_value_t val;
  1322.     var_Get( p_access, "dvb-adapter", &val );
  1323.     i_adapter = val.i_int;
  1324.     var_Get( p_access, "dvb-device", &val );
  1325.     i_device = val.i_int;
  1326.     if( snprintf( dvr, sizeof(dvr), DVR, i_adapter, i_device )
  1327.             >= (int)sizeof(dvr) )
  1328.     {
  1329.         msg_Err( p_access, "snprintf() truncated string for DVR" );
  1330.         dvr[sizeof(dvr) - 1] = '';
  1331.     }
  1332.     msg_Dbg( p_access, "Opening device %s", dvr );
  1333.     if( (p_sys->i_handle = open(dvr, O_RDONLY)) < 0 )
  1334.     {
  1335.         msg_Err( p_access, "DVROpen: opening device failed (%m)" );
  1336.         return VLC_EGENERIC;
  1337.     }
  1338.     if( fcntl( p_sys->i_handle, F_SETFL, O_NONBLOCK ) == -1 )
  1339.     {
  1340.         msg_Warn( p_access, "DVROpen: couldn't set non-blocking mode (%m)" );
  1341.     }
  1342.     return VLC_SUCCESS;
  1343. }
  1344. /*****************************************************************************
  1345.  * DVRClose :
  1346.  *****************************************************************************/
  1347. void DVRClose( access_t * p_access )
  1348. {
  1349.     access_sys_t *p_sys = p_access->p_sys;
  1350.     close( p_sys->i_handle );
  1351. }
  1352. /*
  1353.  * CAM device
  1354.  */
  1355. /*****************************************************************************
  1356.  * CAMOpen :
  1357.  *****************************************************************************/
  1358. int CAMOpen( access_t *p_access )
  1359. {
  1360.     access_sys_t *p_sys = p_access->p_sys;
  1361.     char ca[128];
  1362.     int i_adapter, i_device;
  1363.     ca_caps_t caps;
  1364.     i_adapter = var_GetInteger( p_access, "dvb-adapter" );
  1365.     i_device = var_GetInteger( p_access, "dvb-device" );
  1366.     if( snprintf( ca, sizeof(ca), CA, i_adapter, i_device ) >= (int)sizeof(ca) )
  1367.     {
  1368.         msg_Err( p_access, "snprintf() truncated string for CA" );
  1369.         ca[sizeof(ca) - 1] = '';
  1370.     }
  1371.     memset( &caps, 0, sizeof( ca_caps_t ));
  1372.     msg_Dbg( p_access, "Opening device %s", ca );
  1373.     if( (p_sys->i_ca_handle = open(ca, O_RDWR | O_NONBLOCK)) < 0 )
  1374.     {
  1375.         msg_Warn( p_access, "CAMInit: opening CAM device failed (%m)" );
  1376.         p_sys->i_ca_handle = 0;
  1377.         return VLC_EGENERIC;
  1378.     }
  1379.     if ( ioctl( p_sys->i_ca_handle, CA_GET_CAP, &caps ) != 0 )
  1380.     {
  1381.         msg_Err( p_access, "CAMInit: ioctl() error getting CAM capabilities" );
  1382.         close( p_sys->i_ca_handle );
  1383.         p_sys->i_ca_handle = 0;
  1384.         return VLC_EGENERIC;
  1385.     }
  1386.     /* Output CA capabilities */
  1387.     msg_Dbg( p_access, "CAMInit: CA interface with %d %s", caps.slot_num,
  1388.         caps.slot_num == 1 ? "slot" : "slots" );
  1389.     if ( caps.slot_type & CA_CI )
  1390.         msg_Dbg( p_access, "CAMInit: CI high level interface type" );
  1391.     if ( caps.slot_type & CA_CI_LINK )
  1392.         msg_Dbg( p_access, "CAMInit: CI link layer level interface type" );
  1393.     if ( caps.slot_type & CA_CI_PHYS )
  1394.         msg_Dbg( p_access, "CAMInit: CI physical layer level interface type (not supported) " );
  1395.     if ( caps.slot_type & CA_DESCR )
  1396.         msg_Dbg( p_access, "CAMInit: built-in descrambler detected" );
  1397.     if ( caps.slot_type & CA_SC )
  1398.         msg_Dbg( p_access, "CAMInit: simple smart card interface" );
  1399.     msg_Dbg( p_access, "CAMInit: %d available %s", caps.descr_num,
  1400.         caps.descr_num == 1 ? "descrambler (key)" : "descramblers (keys)" );
  1401.     if ( caps.descr_type & CA_ECD )
  1402.         msg_Dbg( p_access, "CAMInit: ECD scrambling system supported" );
  1403.     if ( caps.descr_type & CA_NDS )
  1404.         msg_Dbg( p_access, "CAMInit: NDS scrambling system supported" );
  1405.     if ( caps.descr_type & CA_DSS )
  1406.         msg_Dbg( p_access, "CAMInit: DSS scrambling system supported" );
  1407.  
  1408.     if ( caps.slot_num == 0 )
  1409.     {
  1410.         msg_Err( p_access, "CAMInit: CAM module with no slots" );
  1411.         close( p_sys->i_ca_handle );
  1412.         p_sys->i_ca_handle = 0;
  1413.         return VLC_EGENERIC;
  1414.     }
  1415.     if( caps.slot_type & CA_CI_LINK )
  1416.     {
  1417.         p_sys->i_ca_type = CA_CI_LINK;
  1418.     }
  1419.     else if( caps.slot_type & CA_CI )
  1420.     {
  1421.         p_sys->i_ca_type = CA_CI;
  1422.     }
  1423.     else
  1424.     {
  1425.         p_sys->i_ca_type = -1;
  1426.         msg_Err( p_access, "CAMInit: incompatible CAM interface" );
  1427.         close( p_sys->i_ca_handle );
  1428.         p_sys->i_ca_handle = 0;
  1429.         return VLC_EGENERIC;
  1430.     }
  1431.     p_sys->i_nb_slots = caps.slot_num;
  1432.     memset( p_sys->pb_active_slot, 0, sizeof(bool) * MAX_CI_SLOTS );
  1433.     memset( p_sys->pb_slot_mmi_expected, 0, sizeof(bool) * MAX_CI_SLOTS );
  1434.     memset( p_sys->pb_slot_mmi_undisplayed, 0,
  1435.             sizeof(bool) * MAX_CI_SLOTS );
  1436.     return en50221_Init( p_access );
  1437. }
  1438. /*****************************************************************************
  1439.  * CAMPoll :
  1440.  *****************************************************************************/
  1441. int CAMPoll( access_t * p_access )
  1442. {
  1443.     access_sys_t *p_sys = p_access->p_sys;
  1444.     int i_ret = VLC_EGENERIC;
  1445.     if ( p_sys->i_ca_handle == 0 )
  1446.     {
  1447.         return VLC_EGENERIC;
  1448.     }
  1449.     switch( p_sys->i_ca_type )
  1450.     {
  1451.     case CA_CI_LINK:
  1452.         i_ret = en50221_Poll( p_access );
  1453.         break;
  1454.     case CA_CI:
  1455.         i_ret = VLC_SUCCESS;
  1456.         break;
  1457.     default:
  1458.         msg_Err( p_access, "CAMPoll: This should not happen" );
  1459.         break;
  1460.     }
  1461.     return i_ret;
  1462. }
  1463. #ifdef ENABLE_HTTPD
  1464. /*****************************************************************************
  1465.  * CAMStatus :
  1466.  *****************************************************************************/
  1467. void CAMStatus( access_t * p_access )
  1468. {
  1469.     access_sys_t *p_sys = p_access->p_sys;
  1470.     char *p;
  1471.     ca_caps_t caps;
  1472.     int i_slot, i;
  1473.     if ( p_sys->psz_request != NULL && *p_sys->psz_request )
  1474.     {
  1475.         /* Check if we have an undisplayed MMI message : in that case we ignore
  1476.          * the user input to avoid confusing the CAM. */
  1477.         for ( i_slot = 0; i_slot < p_sys->i_nb_slots; i_slot++ )
  1478.         {
  1479.             if ( p_sys->pb_slot_mmi_undisplayed[i_slot] == true )
  1480.             {
  1481.                 p_sys->psz_request = NULL;
  1482.                 msg_Dbg( p_access,
  1483.                          "ignoring user request because of a new MMI object" );
  1484.                 break;
  1485.             }
  1486.         }
  1487.     }
  1488.     if ( p_sys->psz_request != NULL && *p_sys->psz_request )
  1489.     {
  1490.         /* We have a mission to accomplish. */
  1491.         en50221_mmi_object_t mmi_object;
  1492.         char *psz_request = p_sys->psz_request;
  1493.         char psz_value[255];
  1494.         int i_slot;
  1495.         bool b_ok = false;
  1496.         p_sys->psz_request = NULL;
  1497.         if ( HTTPExtractValue( psz_request, "slot", psz_value,
  1498.                                    sizeof(psz_value) ) == NULL )
  1499.         {
  1500.             p_sys->psz_mmi_info = strdup( "invalid request parametern" );
  1501.             goto out;
  1502.         }
  1503.         i_slot = atoi(psz_value);
  1504.         if ( HTTPExtractValue( psz_request, "open", psz_value,
  1505.                                    sizeof(psz_value) ) != NULL )
  1506.         {
  1507.             en50221_OpenMMI( p_access, i_slot );
  1508.             return;
  1509.         }
  1510.         if ( HTTPExtractValue( psz_request, "close", psz_value,
  1511.                                    sizeof(psz_value) ) != NULL )
  1512.         {
  1513.             en50221_CloseMMI( p_access, i_slot );
  1514.             return;
  1515.         }
  1516.         if ( HTTPExtractValue( psz_request, "cancel", psz_value,
  1517.                                    sizeof(psz_value) ) == NULL )
  1518.         {
  1519.             b_ok = true;
  1520.         }
  1521.         if ( HTTPExtractValue( psz_request, "type", psz_value,
  1522.                                    sizeof(psz_value) ) == NULL )
  1523.         {
  1524.             p_sys->psz_mmi_info = strdup( "invalid request parametern" );
  1525.             goto out;
  1526.         }
  1527.         if ( !strcmp( psz_value, "enq" ) )
  1528.         {
  1529.             mmi_object.i_object_type = EN50221_MMI_ANSW;
  1530.             mmi_object.u.answ.b_ok = b_ok;
  1531.             if ( b_ok == false )
  1532.             {
  1533.                 mmi_object.u.answ.psz_answ = strdup("");
  1534.             }
  1535.             else
  1536.             {
  1537.                 if ( HTTPExtractValue( psz_request, "answ", psz_value,
  1538.                                            sizeof(psz_value) ) == NULL )
  1539.                 {
  1540.                     p_sys->psz_mmi_info = strdup( "invalid request parametern" );
  1541.                     goto out;
  1542.                 }
  1543.                 mmi_object.u.answ.psz_answ = strdup(psz_value);
  1544.             }
  1545.         }
  1546.         else
  1547.         {
  1548.             mmi_object.i_object_type = EN50221_MMI_MENU_ANSW;
  1549.             if ( b_ok == false )
  1550.             {
  1551.                 mmi_object.u.menu_answ.i_choice = 0;
  1552.             }
  1553.             else
  1554.             {
  1555.                 if ( HTTPExtractValue( psz_request, "choice", psz_value,
  1556.                                            sizeof(psz_value) ) == NULL )
  1557.                     mmi_object.u.menu_answ.i_choice = 0;
  1558.                 else
  1559.                     mmi_object.u.menu_answ.i_choice = atoi(psz_value);
  1560.             }
  1561.         }
  1562.         en50221_SendMMIObject( p_access, i_slot, &mmi_object );
  1563.         return;
  1564.     }
  1565.     /* Check that we have all necessary MMI information. */
  1566.     for ( i_slot = 0; i_slot < p_sys->i_nb_slots; i_slot++ )
  1567.     {
  1568.         if ( p_sys->pb_slot_mmi_expected[i_slot] == true )
  1569.             return;
  1570.     }
  1571.     p = p_sys->psz_mmi_info = malloc( 10000 );
  1572.     if ( ioctl( p_sys->i_ca_handle, CA_GET_CAP, &caps ) != 0 )
  1573.     {
  1574.         char buf[1000];
  1575.         strerror_r( errno, buf, sizeof( buf ) );
  1576.         p += sprintf( p, "ioctl CA_GET_CAP failed (%s)n", buf );
  1577.         goto out;
  1578.     }
  1579.     /* Output CA capabilities */
  1580.     p += sprintf( p, "CA interface with %d %s, type:n<table>", caps.slot_num,
  1581.                   caps.slot_num == 1 ? "slot" : "slots" );
  1582. #define CHECK_CAPS( x, s )                                                  
  1583.     if ( caps.slot_type & (CA_##x) )                                        
  1584.         p += sprintf( p, "<tr><td>" s "</td></tr>n" );
  1585.     CHECK_CAPS( CI, "CI high level interface" );
  1586.     CHECK_CAPS( CI_LINK, "CI link layer level interface" );
  1587.     CHECK_CAPS( CI_PHYS, "CI physical layer level interface (not supported)" );
  1588.     CHECK_CAPS( DESCR, "built-in descrambler" );
  1589.     CHECK_CAPS( SC, "simple smartcard interface" );
  1590. #undef CHECK_CAPS
  1591.     p += sprintf( p, "</table>%d available %sn<table>", caps.descr_num,
  1592.         caps.descr_num == 1 ? "descrambler (key)" : "descramblers (keys)" );
  1593. #define CHECK_DESC( x )                                                     
  1594.     if ( caps.descr_type & (CA_##x) )                                       
  1595.         p += sprintf( p, "<tr><td>" STRINGIFY(x) "</td></tr>n" );
  1596.     CHECK_DESC( ECD );
  1597.     CHECK_DESC( NDS );
  1598.     CHECK_DESC( DSS );
  1599. #undef CHECK_DESC
  1600.     p += sprintf( p, "</table>" );
  1601.     for ( i_slot = 0; i_slot < p_sys->i_nb_slots; i_slot++ )
  1602.     {
  1603.         ca_slot_info_t sinfo;
  1604.         p_sys->pb_slot_mmi_undisplayed[i_slot] = false;
  1605.         p += sprintf( p, "<p>CA slot #%d: ", i_slot );
  1606.         sinfo.num = i_slot;
  1607.         if ( ioctl( p_sys->i_ca_handle, CA_GET_SLOT_INFO, &sinfo ) != 0 )
  1608.         {
  1609.             char buf[1000];
  1610.             strerror_r( errno, buf, sizeof( buf ) );
  1611.             p += sprintf( p, "ioctl CA_GET_SLOT_INFO failed (%s)<br>n", buf );
  1612.             continue;
  1613.         }
  1614. #define CHECK_TYPE( x, s )                                                  
  1615.         if ( sinfo.type & (CA_##x) )                                        
  1616.             p += sprintf( p, "%s", s );
  1617.         CHECK_TYPE( CI, "high level, " );
  1618.         CHECK_TYPE( CI_LINK, "link layer level, " );
  1619.         CHECK_TYPE( CI_PHYS, "physical layer level, " );
  1620. #undef CHECK_TYPE
  1621.         if ( sinfo.flags & CA_CI_MODULE_READY )
  1622.         {
  1623.             en50221_mmi_object_t *p_object = en50221_GetMMIObject( p_access,
  1624.                                                                        i_slot );
  1625.             p += sprintf( p, "module present and ready<p>n" );
  1626.             p += sprintf( p, "<form action=index.html method=get>n" );
  1627.             p += sprintf( p, "<input type=hidden name=slot value="%d">n",
  1628.                           i_slot );
  1629.             if ( p_object == NULL )
  1630.             {
  1631.                 p += sprintf( p, "<input type=submit name=open value="Open session">n" );
  1632.             }
  1633.             else
  1634.             {
  1635.                 switch ( p_object->i_object_type )
  1636.                 {
  1637.                 case EN50221_MMI_ENQ:
  1638.                     p += sprintf( p, "<input type=hidden name=type value=enq>n" );
  1639.                     p += sprintf( p, "<table border=1><tr><th>%s</th></tr>n",
  1640.                                   p_object->u.enq.psz_text );
  1641.                     if ( p_object->u.enq.b_blind == false )
  1642.                         p += sprintf( p, "<tr><td><input type=text name=answ></td></tr>n" );
  1643.                     else
  1644.                         p += sprintf( p, "<tr><td><input type=password name=answ></td></tr>n" );
  1645.                     break;
  1646.                 case EN50221_MMI_MENU:
  1647.                     p += sprintf( p, "<input type=hidden name=type value=menu>n" );
  1648.                     p += sprintf( p, "<table border=1><tr><th>%s</th></tr>n",
  1649.                                   p_object->u.menu.psz_title );
  1650.                     p += sprintf( p, "<tr><td>%s</td></tr><tr><td>n",
  1651.                                   p_object->u.menu.psz_subtitle );
  1652.                     for ( i = 0; i < p_object->u.menu.i_choices; i++ )
  1653.                         p += sprintf( p, "<input type=radio name=choice value="%d">%s<br>n", i + 1, p_object->u.menu.ppsz_choices[i] );
  1654.                     p += sprintf( p, "</td></tr><tr><td>%s</td></tr>n",
  1655.                                   p_object->u.menu.psz_bottom );
  1656.                     break;
  1657.                 case EN50221_MMI_LIST:
  1658.                     p += sprintf( p, "<input type=hidden name=type value=menu>n" );
  1659.                     p += sprintf( p, "<input type=hidden name=choice value=0>n" );
  1660.                     p += sprintf( p, "<table border=1><tr><th>%s</th></tr>n",
  1661.                                   p_object->u.menu.psz_title );
  1662.                     p += sprintf( p, "<tr><td>%s</td></tr><tr><td>n",
  1663.                                   p_object->u.menu.psz_subtitle );
  1664.                     for ( i = 0; i < p_object->u.menu.i_choices; i++ )
  1665.                         p += sprintf( p, "%s<br>n",
  1666.                                       p_object->u.menu.ppsz_choices[i] );
  1667.                     p += sprintf( p, "</td></tr><tr><td>%s</td></tr>n",
  1668.                                   p_object->u.menu.psz_bottom );
  1669.                     break;
  1670.                 default:
  1671.                     p += sprintf( p, "<table><tr><th>Unknown MMI object type</th></tr>n" );
  1672.                 }
  1673.                 p += sprintf( p, "</table><p><input type=submit name=ok value="OK">n" );
  1674.                 p += sprintf( p, "<input type=submit name=cancel value="Cancel">n" );
  1675.                 p += sprintf( p, "<input type=submit name=close value="Close Session">n" );
  1676.             }
  1677.             p += sprintf( p, "</form>n" );
  1678.         }
  1679.         else if ( sinfo.flags & CA_CI_MODULE_PRESENT )
  1680.             p += sprintf( p, "module present, not ready<br>n" );
  1681.         else
  1682.             p += sprintf( p, "module not present<br>n" );
  1683.     }
  1684. out:
  1685.     vlc_mutex_lock( &p_sys->httpd_mutex );
  1686.     p_sys->b_request_mmi_info = false;
  1687.     vlc_cond_signal( &p_sys->httpd_cond );
  1688.     vlc_mutex_unlock( &p_sys->httpd_mutex );
  1689. }
  1690. #endif
  1691. /*****************************************************************************
  1692.  * CAMSet :
  1693.  *****************************************************************************/
  1694. int CAMSet( access_t * p_access, dvbpsi_pmt_t *p_pmt )
  1695. {
  1696.     access_sys_t *p_sys = p_access->p_sys;
  1697.     if( p_sys->i_ca_handle == 0 )
  1698.     {
  1699.         dvbpsi_DeletePMT( p_pmt );
  1700.         return VLC_EGENERIC;
  1701.     }
  1702.     en50221_SetCAPMT( p_access, p_pmt );
  1703.     return VLC_SUCCESS;
  1704. }
  1705. /*****************************************************************************
  1706.  * CAMClose :
  1707.  *****************************************************************************/
  1708. void CAMClose( access_t * p_access )
  1709. {
  1710.     access_sys_t *p_sys = p_access->p_sys;
  1711.     en50221_End( p_access );
  1712.     if ( p_sys->i_ca_handle )
  1713.     {
  1714.         close( p_sys->i_ca_handle );
  1715.     }
  1716. }