| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/ioctl.h>
- #include <unistd.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <string.h>
- #include <stdio.h>
- #include <fcntl.h>
- #include <ctype.h>
- #include <errno.h>
- #include <linux/dvb/frontend.h>
- #include <linux/dvb/dmx.h>
- #include "util.h"
- static char FRONTEND_DEV [80];
- static char DEMUX_DEV [80];
- static int exit_after_tuning;
- #define CHANNEL_FILE "channels.conf"
- #define ERROR(x...) \
- do { \
- fprintf(stderr, "ERROR: "); \
- fprintf(stderr, x); \
- fprintf (stderr, "\n"); \
- } while (0)
- #define PERROR(x...) \
- do { \
- fprintf(stderr, "ERROR: "); \
- fprintf(stderr, x); \
- fprintf (stderr, " (%s)\n", strerror(errno)); \
- } while (0)
- typedef struct {
- char *name;
- int value;
- } Param;
- static const Param inversion_list[] = {
- { "INVERSION_OFF", INVERSION_OFF },
- { "INVERSION_ON", INVERSION_ON },
- { "INVERSION_AUTO", INVERSION_AUTO }
- };
- static const Param fec_list[] = {
- { "FEC_1_2", FEC_1_2 },
- { "FEC_2_3", FEC_2_3 },
- { "FEC_3_4", FEC_3_4 },
- { "FEC_4_5", FEC_4_5 },
- { "FEC_5_6", FEC_5_6 },
- { "FEC_6_7", FEC_6_7 },
- { "FEC_7_8", FEC_7_8 },
- { "FEC_8_9", FEC_8_9 },
- { "FEC_AUTO", FEC_AUTO },
- { "FEC_NONE", FEC_NONE }
- };
- static const Param modulation_list[] = {
- { "QAM_16", QAM_16 },
- { "QAM_32", QAM_32 },
- { "QAM_64", QAM_64 },
- { "QAM_128", QAM_128 },
- { "QAM_256", QAM_256 },
- { "QAM_AUTO", QAM_AUTO }
- };
- #define LIST_SIZE(x) sizeof(x)/sizeof(Param)
- static
- int parse_param(const char *val, const Param * plist, int list_size, int *ok)
- {
- int i;
- for (i = 0; i < list_size; i++) {
- if (strcasecmp(plist[i].name, val) == 0) {
- *ok = 1;
- return plist[i].value;
- }
- }
- *ok = 0;
- return -1;
- }
- static char line_buf[256];
- static
- char *find_channel(FILE *f, int list_channels, int *chan_no, const char *channel)
- {
- size_t l;
- int lno = 0;
- l = channel ? strlen(channel) : 0;
- while (!feof(f)) {
- if (!fgets(line_buf, sizeof(line_buf), f))
- return NULL;
- lno++;
- if (list_channels) {
- printf("%3d %s", lno, line_buf);
- }
- else if (*chan_no) {
- if (*chan_no == lno)
- return line_buf;
- }
- else if ((strncasecmp(channel, line_buf, l) == 0)
- && (line_buf[l] == ':')) {
- *chan_no = lno;
- return line_buf;
- }
- };
- return NULL;
- }
- int parse(const char *fname, int list_channels, int chan_no, const char *channel,
- struct dvb_frontend_parameters *frontend, int *vpid, int *apid, int *sid)
- {
- FILE *f;
- char *chan;
- char *name, *inv, *fec, *mod;
- int ok;
- if ((f = fopen(fname, "r")) == NULL) {
- PERROR("could not open file '%s'", fname);
- return -1;
- }
- chan = find_channel(f, list_channels, &chan_no, channel);
- fclose(f);
- if (list_channels)
- return 0;
- if (!chan) {
- ERROR("could not find channel '%s' in channel list",
- channel);
- return -2;
- }
- printf("%3d %s", chan_no, chan);
- if ((sscanf(chan, "%m[^:]:%d:%m[^:]:%d:%m[^:]:%m[^:]:%d:%d:%d\n",
- &name, &frontend->frequency,
- &inv, &frontend->u.qam.symbol_rate,
- &fec, &mod, vpid, apid, sid) != 9)
- || !name || !inv || !fec | !mod) {
- ERROR("cannot parse service data");
- return -3;
- }
- frontend->inversion = parse_param(inv, inversion_list, LIST_SIZE(inversion_list), &ok);
- if (!ok) {
- ERROR("inversion field syntax '%s'", inv);
- return -4;
- }
- frontend->u.qam.fec_inner = parse_param(fec, fec_list, LIST_SIZE(fec_list), &ok);
- if (!ok) {
- ERROR("FEC field syntax '%s'", fec);
- return -5;
- }
- frontend->u.qam.modulation = parse_param(mod, modulation_list,
- LIST_SIZE(modulation_list), &ok);
- if (!ok) {
- ERROR("modulation field syntax '%s'", mod);
- return -6;
- }
- printf("%3d %s: f %d, s %d, i %d, fec %d, qam %d, v %#x, a %#x, s %#x \n",
- chan_no, name, frontend->frequency, frontend->u.qam.symbol_rate,
- frontend->inversion, frontend->u.qam.fec_inner,
- frontend->u.qam.modulation, *vpid, *apid, *sid);
- free(name);
- free(inv);
- free(fec);
- free(mod);
- return 0;
- }
- static int setup_frontend(int fe_fd, struct dvb_frontend_parameters *frontend)
- {
- int ret;
- uint32_t mstd;
- if (check_frontend(fe_fd, FE_QAM, &mstd) < 0) {
- close(fe_fd);
- return -1;
- }
- ret = dvbfe_set_delsys(fe_fd, SYS_DVBC_ANNEX_A);
- if (ret) {
- PERROR("SET Delsys failed");
- return -1;
- }
- if (ioctl(fe_fd, FE_SET_FRONTEND, frontend) < 0) {
- PERROR ("ioctl FE_SET_FRONTEND failed");
- return -1;
- }
- return 0;
- }
- static
- int monitor_frontend (int fe_fd, int human_readable)
- {
- fe_status_t status;
- uint16_t snr, signal;
- uint32_t ber, uncorrected_blocks;
- do {
- ioctl(fe_fd, FE_READ_STATUS, &status);
- ioctl(fe_fd, FE_READ_SIGNAL_STRENGTH, &signal);
- ioctl(fe_fd, FE_READ_SNR, &snr);
- ioctl(fe_fd, FE_READ_BER, &ber);
- ioctl(fe_fd, FE_READ_UNCORRECTED_BLOCKS, &uncorrected_blocks);
- if (human_readable) {
- printf ("status %02x | signal %3u%% | snr %3u%% | ber %d | unc %d | ",
- status, (signal * 100) / 0xffff, (snr * 100) / 0xffff, ber, uncorrected_blocks);
- } else {
- printf ("status %02x | signal %04x | snr %04x | ber %08x | unc %08x | ",
- status, signal, snr, ber, uncorrected_blocks);
- }
- if (status & FE_HAS_LOCK)
- printf("FE_HAS_LOCK");
- usleep(1000000);
- printf("\n");
- if (exit_after_tuning && (status & FE_HAS_LOCK))
- break;
- } while (1);
- return 0;
- }
- static const char *usage =
- "\nusage: %s [options] -l\n"
- " list known channels\n"
- " %s [options] {-n channel-number|channel_name}\n"
- " zap to channel via number or full name (case insensitive)\n"
- " -a number : use given adapter (default 0)\n"
- " -f number : use given frontend (default 0)\n"
- " -d number : use given demux (default 0)\n"
- " -c file : read channels list from 'file'\n"
- " -x : exit after tuning\n"
- " -H : human readable output\n"
- " -r : set up /dev/dvb/adapterX/dvr0 for TS recording\n"
- " -p : add pat and pmt to TS recording (implies -r)\n";
- int main(int argc, char **argv)
- {
- struct dvb_frontend_parameters frontend_param;
- char *homedir = getenv("HOME");
- char *confname = NULL;
- char *channel = NULL;
- int adapter = 0, frontend = 0, demux = 0, dvr = 0;
- int vpid, apid, sid, pmtpid = 0;
- int frontend_fd, video_fd, audio_fd, pat_fd, pmt_fd;
- int opt, list_channels = 0, chan_no = 0;
- int human_readable = 0, rec_psi = 0;
- while ((opt = getopt(argc, argv, "Hln:hrn:a:f:d:c:x:p")) != -1) {
- switch (opt) {
- case 'a':
- adapter = strtoul(optarg, NULL, 0);
- break;
- case 'f':
- frontend = strtoul(optarg, NULL, 0);
- break;
- case 'd':
- demux = strtoul(optarg, NULL, 0);
- break;
- case 'r':
- dvr = 1;
- break;
- case 'l':
- list_channels = 1;
- break;
- case 'n':
- chan_no = strtoul(optarg, NULL, 0);
- break;
- case 'p':
- rec_psi = 1;
- break;
- case 'x':
- exit_after_tuning = 1;
- break;
- case 'H':
- human_readable = 1;
- break;
- case 'c':
- confname = optarg;
- break;
- case '?':
- case 'h':
- default:
- fprintf (stderr, usage, argv[0], argv[0]);
- return -1;
- };
- }
- if (optind < argc)
- channel = argv[optind];
- if (!channel && chan_no <= 0 && !list_channels) {
- fprintf (stderr, usage, argv[0], argv[0]);
- return -1;
- }
- if (!homedir)
- ERROR("$HOME not set");
- snprintf (FRONTEND_DEV, sizeof(FRONTEND_DEV),
- "/dev/dvb/adapter%i/frontend%i", adapter, frontend);
- snprintf (DEMUX_DEV, sizeof(DEMUX_DEV),
- "/dev/dvb/adapter%i/demux%i", adapter, demux);
- printf ("using '%s' and '%s'\n", FRONTEND_DEV, DEMUX_DEV);
- if (!confname)
- {
- int len = strlen(homedir) + strlen(CHANNEL_FILE) + 18;
- if (!homedir)
- ERROR("$HOME not set");
- confname = malloc(len);
- snprintf(confname, len, "%s/.czap/%i/%s",
- homedir, adapter, CHANNEL_FILE);
- if (access(confname, R_OK))
- snprintf(confname, len, "%s/.czap/%s",
- homedir, CHANNEL_FILE);
- }
- printf("reading channels from file '%s'\n", confname);
- memset(&frontend_param, 0, sizeof(struct dvb_frontend_parameters));
- if (parse(confname, list_channels, chan_no, channel, &frontend_param, &vpid, &apid, &sid))
- return -1;
- if (list_channels)
- return 0;
- if ((frontend_fd = open(FRONTEND_DEV, O_RDWR | O_NONBLOCK)) < 0) {
- PERROR("failed opening '%s'", FRONTEND_DEV);
- return -1;
- }
- if (setup_frontend(frontend_fd, &frontend_param) < 0)
- return -1;
- if (rec_psi) {
- pmtpid = get_pmt_pid(DEMUX_DEV, sid);
- if (pmtpid <= 0) {
- fprintf(stderr,"couldn't find pmt-pid for sid %04x\n",sid);
- return -1;
- }
- if ((pat_fd = open(DEMUX_DEV, O_RDWR)) < 0) {
- perror("opening pat demux failed");
- return -1;
- }
- if (set_pesfilter(pat_fd, 0, DMX_PES_OTHER, dvr) < 0)
- return -1;
- if ((pmt_fd = open(DEMUX_DEV, O_RDWR)) < 0) {
- perror("opening pmt demux failed");
- return -1;
- }
- if (set_pesfilter(pmt_fd, pmtpid, DMX_PES_OTHER, dvr) < 0)
- return -1;
- }
- if ((video_fd = open(DEMUX_DEV, O_RDWR)) < 0) {
- PERROR("failed opening '%s'", DEMUX_DEV);
- return -1;
- }
- if (set_pesfilter (video_fd, vpid, DMX_PES_VIDEO, dvr) < 0)
- return -1;
- if ((audio_fd = open(DEMUX_DEV, O_RDWR)) < 0) {
- PERROR("failed opening '%s'", DEMUX_DEV);
- return -1;
- }
- if (set_pesfilter (audio_fd, apid, DMX_PES_AUDIO, dvr) < 0)
- return -1;
- monitor_frontend (frontend_fd, human_readable);
- close (pat_fd);
- close (pmt_fd);
- close (audio_fd);
- close (video_fd);
- close (frontend_fd);
- return 0;
- }
|