summaryrefslogtreecommitdiff
path: root/audio/pulseaudio/patches/patch-aa
blob: 909ad8d15abb45f52abf471da92a03a56f5a9954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
$NetBSD: patch-aa,v 1.1.1.1 2008/12/18 14:42:56 jmcneill Exp $

--- src/utils/padsp.c.orig	2008-10-01 19:05:01.000000000 -0400
+++ src/utils/padsp.c
@@ -114,7 +114,11 @@ static pthread_mutex_t func_mutex = PTHR
 
 static PA_LLIST_HEAD(fd_info, fd_infos) = NULL;
 
+#ifdef __NetBSD__
+static int (*_ioctl)(int, u_long, void *) = NULL;
+#else
 static int (*_ioctl)(int, int, void*) = NULL;
+#endif
 static int (*_close)(int) = NULL;
 static int (*_open)(const char *, int, mode_t) = NULL;
 static FILE* (*_fopen)(const char *path, const char *mode) = NULL;
@@ -140,6 +144,15 @@ static inline fnptr dlsym_fn(void *handl
     return (fnptr) (long) dlsym(handle, symbol);
 }
 
+#ifdef __NetBSD__
+#define LOAD_IOCTL_FUNC() \
+do { \
+    pthread_mutex_lock(&func_mutex); \
+    if (!_ioctl)  \
+        _ioctl = (int (*)(int, u_long, void*)) dlsym_fn(RTLD_NEXT, "ioctl"); \
+    pthread_mutex_unlock(&func_mutex); \
+} while(0)
+#else
 #define LOAD_IOCTL_FUNC() \
 do { \
     pthread_mutex_lock(&func_mutex); \
@@ -147,6 +160,7 @@ do { \
         _ioctl = (int (*)(int, int, void*)) dlsym_fn(RTLD_NEXT, "ioctl"); \
     pthread_mutex_unlock(&func_mutex); \
 } while(0)
+#endif
 
 #define LOAD_OPEN_FUNC() \
 do { \
@@ -1452,7 +1466,8 @@ static int real_open(const char *filenam
         return _open(filename, flags, mode);
     }
 
-    if (filename && dsp_cloak_enable() && (strcmp(filename, "/dev/dsp") == 0 || strcmp(filename, "/dev/adsp") == 0))
+    if (filename && dsp_cloak_enable() && (strcmp(filename, "/dev/dsp") == 0 || strcmp(filename, "/dev/adsp") == 0 ||
+      strcmp(filename, "/dev/sound") == 0 || strcmp(filename, "/dev/audio") == 0))
         r = dsp_open(flags, &_errno);
     else if (filename && mixer_cloak_enable() && strcmp(filename, "/dev/mixer") == 0)
         r = mixer_open(flags, &_errno);
@@ -2313,19 +2328,27 @@ fail:
 
 #ifdef sun
 int ioctl(int fd, int request, ...) {
+#elif defined(__NetBSD__)
+int ioctl(int fd, u_long request, void *_argp) {
 #else
 int ioctl(int fd, unsigned long request, ...) {
 #endif
     fd_info *i;
+#ifndef __NetBSD__
     va_list args;
+#endif
     void *argp;
     int r, _errno = 0;
 
     debug(DEBUG_LEVEL_VERBOSE, __FILE__": ioctl()\n");
 
+#ifdef __NetBSD__
+    argp = _argp;
+#else
     va_start(args, request);
     argp = va_arg(args, void *);
     va_end(args);
+#endif
 
     if (!function_enter()) {
         LOAD_IOCTL_FUNC();
@@ -2383,6 +2406,8 @@ int access(const char *pathname, int mod
 
     if (!pathname ||
         ( strcmp(pathname, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(pathname, "/dev/adsp") != 0 &&
           strcmp(pathname, "/dev/sndstat") != 0 &&
           strcmp(pathname, "/dev/mixer") != 0 )) {
@@ -2412,6 +2437,8 @@ int stat(const char *pathname, struct st
     if (!pathname ||
         !buf ||
         ( strcmp(pathname, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(pathname, "/dev/adsp") != 0 &&
           strcmp(pathname, "/dev/sndstat") != 0 &&
           strcmp(pathname, "/dev/mixer") != 0 )) {
@@ -2469,6 +2496,8 @@ int stat64(const char *pathname, struct 
     if (!pathname ||
         !buf ||
         ( strcmp(pathname, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(pathname, "/dev/adsp") != 0 &&
           strcmp(pathname, "/dev/sndstat") != 0 &&
           strcmp(pathname, "/dev/mixer") != 0 )) {
@@ -2514,6 +2543,8 @@ int open64(const char *filename, int fla
 
     if (!filename ||
         ( strcmp(filename, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(filename, "/dev/adsp") != 0 &&
           strcmp(filename, "/dev/sndstat") != 0 &&
           strcmp(filename, "/dev/mixer") != 0 )) {
@@ -2534,6 +2565,8 @@ int __xstat(int ver, const char *pathnam
     if (!pathname ||
         !buf ||
         ( strcmp(pathname, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(pathname, "/dev/adsp") != 0 &&
           strcmp(pathname, "/dev/sndstat") != 0 &&
           strcmp(pathname, "/dev/mixer") != 0 )) {
@@ -2557,6 +2590,8 @@ int __xstat64(int ver, const char *pathn
     if (!pathname ||
         !buf ||
         ( strcmp(pathname, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(pathname, "/dev/adsp") != 0 &&
           strcmp(pathname, "/dev/sndstat") != 0 &&
           strcmp(pathname, "/dev/mixer") != 0 )) {
@@ -2586,6 +2621,8 @@ FILE* fopen(const char *filename, const 
     if (!filename ||
         !mode ||
         ( strcmp(filename, "/dev/dsp") != 0 &&
+	  strcmp(filename, "/dev/sound") != 0 &&
+	  strcmp(filename, "/dev/audio") != 0 &&
           strcmp(filename, "/dev/adsp") != 0 &&
           strcmp(filename, "/dev/sndstat") != 0 &&
           strcmp(filename, "/dev/mixer") != 0 )) {
@@ -2629,6 +2666,8 @@ FILE *fopen64(const char *filename, cons
     if (!filename ||
         !mode ||
         ( strcmp(filename, "/dev/dsp") != 0 &&
+	  strcmp(pathname, "/dev/sound") != 0 &&
+	  strcmp(pathname, "/dev/audio") != 0 &&
           strcmp(filename, "/dev/adsp") != 0 &&
           strcmp(filename, "/dev/sndstat") != 0 &&
           strcmp(filename, "/dev/mixer") != 0 )) {